From 3ffbadbfc98fe16d7902c07f964895c404eac0b1 Mon Sep 17 00:00:00 2001 From: prsh5175 Date: Fri, 14 Jun 2024 16:37:29 -0600 Subject: [PATCH 01/41] Schema update --- .../resources/hpxml_schema/HPXML.xsd | 42 ++++++++++++++++++- 1 file changed, 40 insertions(+), 2 deletions(-) diff --git a/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd b/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd index d99db3ea6c..b5233273ac 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd +++ b/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd @@ -278,6 +278,16 @@ + + + + + + + + + + @@ -352,6 +362,21 @@ + + + + + + + [ft] Width from stem wall outward of horizontal insulation + + + + + + + + @@ -1244,8 +1269,21 @@ - - + + + Vertical slab perimeter insulation along stem wall + + + + + Horizontal insulation extending outward from stem wall + + + + + Horizontal insulation under slab + + From 699ef040eee5fe29dec1fb7b0e6ba960f3fe3bdc Mon Sep 17 00:00:00 2001 From: prsh5175 Date: Mon, 24 Jun 2024 16:44:09 -0600 Subject: [PATCH 02/41] temporary commit --- BuildResidentialHPXML/measure.rb | 27 + HPXMLtoOpenStudio/resources/hpxml.rb | 40 +- .../hpxml_schematron/EPvalidator.xml | 6 + docs/source/workflow_inputs.rst | 45 +- workflow/hpxml_inputs.json | 12 + ...on-slab-exterior-horizontal-insulation.xml | 514 ++++++++++++++++++ 6 files changed, 621 insertions(+), 23 deletions(-) create mode 100644 workflow/sample_files/base-foundation-slab-exterior-horizontal-insulation.xml diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index a89784c917..908f44b221 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -616,6 +616,27 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setDefaultValue(0) args << arg + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('slab_exterior_horizontal_insulation_r', true) + arg.setDisplayName('Slab: Exterior Horizontal Insulation Nominal R-value') + arg.setUnits('h-ft^2-R/Btu') + arg.setDescription('Nominal R-value of the slab perimeter exterior horizontal (wing/skirt) insulation. Applies to slab-on-grade foundations and basement/crawlspace floors.') + arg.setDefaultValue(0) + args << arg + + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('slab_exterior_horizontal_insulation_width', true) + arg.setDisplayName('Slab: Exterior Horizontal Insulation Width') + arg.setUnits('ft') + arg.setDescription('Width of the slab exterior horizontal (wing/skirt) insulation measured from the exterior surface of the vertical slab perimeter insulation. Applies to slab-on-grade foundations and basement/crawlspace floors.') + arg.setDefaultValue(0) + args << arg + + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('slab_exterior_horizontal_insulation_depth_below_grade', true) + arg.setDisplayName('Slab: Exterior Horizontal Insulation Depth Below Grade') + arg.setUnits('ft') + arg.setDescription('Depth of the slab exterior horizontal (wing/skirt) insulation measured from the top surface of the slab exterior horizontal insulation. Applies to slab-on-grade foundations and basement/crawlspace floors.') + arg.setDefaultValue(0) + args << arg + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('slab_under_insulation_r', true) arg.setDisplayName('Slab: Under Slab Insulation Nominal R-value') arg.setUnits('h-ft^2-R/Btu') @@ -5058,6 +5079,9 @@ def self.set_slabs(hpxml_bldg, model, args, sorted_surfaces) thickness: args[:slab_thickness], exposed_perimeter: exposed_perimeter, perimeter_insulation_depth: args[:slab_perimeter_depth], + exterior_horizontal_r_value: args[:slab_exterior_horizontal_insulation_r], + exterior_horizontal_width: args[:slab_exterior_horizontal_insulation_width], + exterior_horizontal_insulation_depth_below_grade: args[:slab_exterior_horizontal_depth_below_grade], under_slab_insulation_width: under_slab_insulation_width, perimeter_insulation_r_value: args[:slab_perimeter_insulation_r], under_slab_insulation_r_value: args[:slab_under_insulation_r], @@ -7176,6 +7200,9 @@ def self.renumber_hpxml_ids(hpxml_bldg) if surf.respond_to? :perimeter_insulation_id surf.perimeter_insulation_id = "#{surf_name}#{indexes[surf_name]}PerimeterInsulation" end + if surf.respond_to? :exterior_horizontal_insulation_id + surf.exterior_horizontal_insulation_id = "#{surf_name}#{indexes[surf_name]}ExteriorHorizontalInsulation" + end if surf.respond_to? :under_slab_insulation_id surf.under_slab_insulation_id = "#{surf_name}#{indexes[surf_name]}UnderSlabInsulation" end diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index 7316544ccf..5524a37710 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -1801,6 +1801,7 @@ def collapse_enclosure_surfaces(surf_types_of_interest = nil) attrs_to_ignore = [:id, :insulation_id, :perimeter_insulation_id, + :exterior_horizontal_insulation_id, :under_slab_insulation_id, :area, :length, @@ -4104,6 +4105,8 @@ class Slab < BaseElement :perimeter_insulation_depth, :under_slab_insulation_width, :under_slab_insulation_spans_entire_slab, :depth_below_grade, :carpet_fraction, :carpet_r_value, :perimeter_insulation_id, :perimeter_insulation_r_value, + :exterior_horizontal_insulation_id, :exterior_horizontal_insulation_material, :exterior_horizontal_insulation_r_value, + :exterior_horizontal_depth_below_grade, :exterior_horizontal_insulation_width, :under_slab_insulation_id, :under_slab_insulation_r_value, :perimeter_insulation_material, :under_slab_insulation_material, :gap_insulation_r_value, :attached_to_space_idref] attr_accessor(*ATTRS) @@ -4192,6 +4195,25 @@ def to_doc(building) end XMLHelper.add_element(layer, 'NominalRValue', @perimeter_insulation_r_value, :float) unless @perimeter_insulation_r_value.nil? XMLHelper.add_element(layer, 'InsulationDepth', @perimeter_insulation_depth, :float) unless @perimeter_insulation_depth.nil? + + insulation = XMLHelper.add_element(slab, 'ExteriorHorizontalInsulation') + sys_id = XMLHelper.add_element(insulation, 'SystemIdentifier') + if not @exterior_horizontal_insulation_id.nil? + XMLHelper.add_attribute(sys_id, 'id', @exterior_horizontal_insulation_id) + else + XMLHelper.add_attribute(sys_id, 'id', @id + 'ExteriorHorizontalInsulation') + end + layer = XMLHelper.add_element(insulation, 'Layer') + if not @exterior_horizontal_insulation_material.nil? + material = XMLHelper.add_element(layer, 'InsulationMaterial') + values = @exterior_horizontal_insulation_material.split('/') + XMLHelper.add_element(material, values[0], values[1], :string) + end + XMLHelper.add_element(layer, 'NominalRValue', @exterior_horizontal_insulation_r_value, :float) unless @exterior_horizontal_insulation_r_value.nil? + XMLHelper.add_element(layer, 'InsulationWidth', @exterior_horizontal_insulation_width, :float) unless @exterior_horizontal_insulation_width.nil? + XMLHelper.add_element(layer, 'InsulationDepthBelowGrade', @exterior_horizontal_insulation_depth_below_grade, :float) unless @exterior_horizontal_insulation_depth_below_grade.nil? + + insulation = XMLHelper.add_element(slab, 'UnderSlabInsulation') sys_id = XMLHelper.add_element(insulation, 'SystemIdentifier') if not @under_slab_insulation_id.nil? @@ -4222,7 +4244,7 @@ def from_doc(slab) @thickness = XMLHelper.get_value(slab, 'Thickness', :float) @exposed_perimeter = XMLHelper.get_value(slab, 'ExposedPerimeter', :float) @depth_below_grade = XMLHelper.get_value(slab, 'DepthBelowGrade', :float) - perimeter_insulation = XMLHelper.get_element(slab, 'PerimeterInsulation') + @perimeter_insulation = XMLHelper.get_element(slab, 'PerimeterInsulation') if not perimeter_insulation.nil? @perimeter_insulation_id = HPXML::get_id(perimeter_insulation) @perimeter_insulation_material = XMLHelper.get_child_name(perimeter_insulation, 'Layer/InsulationMaterial') @@ -4233,7 +4255,21 @@ def from_doc(slab) @perimeter_insulation_r_value = XMLHelper.get_value(perimeter_insulation, 'Layer/NominalRValue', :float) @perimeter_insulation_depth = XMLHelper.get_value(perimeter_insulation, 'Layer/InsulationDepth', :float) end - under_slab_insulation = XMLHelper.get_element(slab, 'UnderSlabInsulation') + + @exterior_horizontal_insulation = XMLHelper.get_element(slab, 'ExteriorHorizontalInsulation') + if not exterior_horizontal_insulation.nil? + @exterior_horizontal_insulation_id = HPXML::get_id(exterior_horizontal_insulation) + @exterior_horizontal_insulation_material = XMLHelper.get_child_name(exterior_horizontal_insulation, 'Layer/InsulationMaterial') + if not @exterior_horizontal_insulation_material.nil? + material_type = XMLHelper.get_value(exterior_horizontal_insulation, "Layer/InsulationMaterial/#{@pexterior_horizontal_insulation_material}", :string) + @exterior_horizontal_insulation_material += "/#{material_type}" unless material_type.nil? + end + @exterior_horizontal_insulation_r_value = XMLHelper.get_value(exterior_horizontal_insulation, 'Layer/NominalRValue', :float) + @exterior_horizontal_insulation_width = XMLHelper.get_value(exterior_horizontal_insulation, 'Layer/InsulationWidth', :float) + @exterior_horizontal_insulation_depth_below_grade = XMLHelper.get_value(exterior_horizontal_insulation, 'Layer/InsulationDepthBelowGrade', :float) + end + + @under_slab_insulation = XMLHelper.get_element(slab, 'UnderSlabInsulation') if not under_slab_insulation.nil? @under_slab_insulation_id = HPXML::get_id(under_slab_insulation) @under_slab_insulation_material = XMLHelper.get_child_name(under_slab_insulation, 'Layer/InsulationMaterial') diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 8b2f2320c6..508bc2ac68 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -766,6 +766,11 @@ Expected 0 or 1 element(s) for xpath: DepthBelowGrade Expected 1 element(s) for xpath: PerimeterInsulation/Layer/NominalRValue Expected 1 element(s) for xpath: PerimeterInsulation/Layer/InsulationDepth + + Expected 1 element(s) for xpath: PerimeterInsulation/Layer/NominalRValue + Expected 1 element(s) for xpath: PerimeterInsulation/Layer/InsulationWidth + Expected 1 element(s) for xpath: PerimeterInsulation/Layer/InsulationDepthBelowGrade + Expected 1 element(s) for xpath: UnderSlabInsulation/Layer/NominalRValue Expected 1 element(s) for xpath: UnderSlabInsulation/Layer/InsulationWidth | UnderSlabInsulation/Layer/InsulationSpansEntireSlab[text()="true"] Expected 0 or 1 element(s) for xpath: extension/GapInsulationRValue @@ -778,6 +783,7 @@ Slab exposed perimeter is more than twice the slab area, this may indicate an input error. Thickness is less than 1 inch; this may indicate incorrect units. Thickness is greater than 12 inches; this may indicate incorrect units. + There is ExteriorHorizontalInsulation but no PerimeterInsulation, this may indicate an input error. diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 992bc4f844..37e3ddbf53 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -1377,27 +1377,30 @@ HPXML Slabs Each space type that borders the ground (i.e., basement, crawlspace, garage, and slab-on-grade foundation) should have a slab entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Slabs/Slab``. - ======================================================= ======== ============ =========== ========= ======== ==================================================== - Element Type Units Constraints Required Default Notes - ======================================================= ======== ============ =========== ========= ======== ==================================================== - ``SystemIdentifier`` id Yes Unique identifier - ``AttachedToSpace`` idref See [#]_ See [#]_ ID of attached space - ``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type - ``Area`` double ft2 > 0 Yes Gross area - ``Thickness`` double in >= 0 No See [#]_ Thickness [#]_ - ``ExposedPerimeter`` double ft >= 0 Yes Perimeter exposed to ambient conditions [#]_ - ``DepthBelowGrade`` double ft >= 0 No See [#]_ Depth from the top of the slab surface to grade - ``PerimeterInsulation/SystemIdentifier`` id Yes Unique identifier - ``PerimeterInsulation/Layer/NominalRValue`` double F-ft2-hr/Btu >= 0 Yes R-value of vertical insulation (see figure below) - ``PerimeterInsulation/Layer/InsulationDepth`` double ft >= 0 Yes Depth from top of slab to bottom of vertical insulation - ``UnderSlabInsulation/SystemIdentifier`` id Yes Unique identifier - ``UnderSlabInsulation/Layer/NominalRValue`` double F-ft2-hr/Btu >= 0 Yes R-value of horizontal insulation (see figure below) - ``UnderSlabInsulation/Layer/InsulationWidth`` double ft >= 0 See [#]_ Width from slab edge inward of horizontal insulation - ``UnderSlabInsulation/Layer/InsulationSpansEntireSlab`` boolean See [#]_ Whether horizontal insulation spans entire slab - ``extension/GapInsulationRValue`` double F-ft2-hr/Btu >= 0 No See [#]_ R-value of gap insulation (see figure below) - ``extension/CarpetFraction`` double frac >= 0, <= 1 No See [#]_ Fraction of slab covered by carpet - ``extension/CarpetRValue`` double F-ft2-hr/Btu >= 0 No See [#]_ Carpet R-value - ======================================================= ======== ============ =========== ========= ======== ==================================================== + ================================================================= ======== ============ =========== ========= ======== =============================================================== + Element Type Units Constraints Required Default Notes + ================================================================= ======== ============ =========== ========= ======== =============================================================== + ``SystemIdentifier`` id Yes Unique identifier + ``AttachedToSpace`` idref See [#]_ See [#]_ ID of attached space + ``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type + ``Area`` double ft2 > 0 Yes Gross area + ``Thickness`` double in >= 0 No See [#]_ Thickness [#]_ + ``ExposedPerimeter`` double ft >= 0 Yes Perimeter exposed to ambient conditions [#]_ + ``DepthBelowGrade`` double ft >= 0 No See [#]_ Depth from the top of the slab surface to grade + ``PerimeterInsulation/SystemIdentifier`` id Yes Unique identifier + ``PerimeterInsulation/Layer/NominalRValue`` double F-ft2-hr/Btu >= 0 Yes R-value of vertical insulation (see figure below) + ``PerimeterInsulation/Layer/InsulationDepth`` double ft >= 0 Yes Depth from top of slab to bottom of vertical insulation + ``ExteriorHorizontalInsulation/SystemIdentifier`` id Yes Unique identifier + ``ExteriorHorizontalInsulation/Layer/NominalRValue`` double F-ft2-hr/Btu >= 0 Yes R-value of exterior horizontal insulation (see figure below) + ``ExteriorHorizontalInsulation/Layer/InsulationDepthBelowGrade`` double ft >= 0 Yes Depth from grade to the top of exterior horizontal insulation + ``UnderSlabInsulation/SystemIdentifier`` id Yes Unique identifier + ``UnderSlabInsulation/Layer/NominalRValue`` double F-ft2-hr/Btu >= 0 Yes R-value of horizontal insulation (see figure below) + ``UnderSlabInsulation/Layer/InsulationWidth`` double ft >= 0 See [#]_ Width from slab edge inward of horizontal insulation + ``UnderSlabInsulation/Layer/InsulationSpansEntireSlab`` boolean See [#]_ Whether horizontal insulation spans entire slab + ``extension/GapInsulationRValue`` double F-ft2-hr/Btu >= 0 No See [#]_ R-value of gap insulation (see figure below) + ``extension/CarpetFraction`` double frac >= 0, <= 1 No See [#]_ Fraction of slab covered by carpet + ``extension/CarpetRValue`` double F-ft2-hr/Btu >= 0 No See [#]_ Carpet R-value + ================================================================= ======== ============ =========== ========= ======== =============================================================== .. [#] If provided, AttachedToSpace must reference a ``Space`` (within a conditioned Zone). .. [#] Only required if zone-level and space-level HVAC design load calculations are desired (see :ref:`zones_spaces`) and the surface is adjacent to conditioned space. diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index 3a2570fe6a..7106305781 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -35,6 +35,9 @@ "rim_joist_assembly_r": 5.01, "slab_perimeter_insulation_r": 0, "slab_perimeter_depth": 0, + "slab_exterior_horizontal_insulation_r": 0, + "slab_exterior_horizontal_width": 0, + "slab_exterior_horizontal_depth_below_grade": 0, "slab_under_insulation_r": 0, "slab_under_width": 0, "slab_thickness": 4, @@ -640,6 +643,9 @@ "rim_joist_assembly_r": 23, "slab_perimeter_insulation_r": 0, "slab_perimeter_depth": 0, + "slab_exterior_horizontal_insulation_r": 0, + "slab__exterior_horizontal_width": 0, + "slab__exterior_horizontal_depth_below_grade": 0, "slab_under_insulation_r": 0, "slab_under_width": 0, "slab_thickness": 4, @@ -1830,6 +1836,12 @@ "ducts_return_location": "under slab", "misc_plug_loads_other_annual_kwh": 1228.5 }, + "sample_files/base-foundation-slab-exterior-horizontal-insulation.xml": { + "parent_hpxml": "sample_files/base.xml", + "slab_exterior_horizontal_insulation_r": 5.4, + "slab_exterior_horizontal_width": 2.5, + "slab_exterior_horizontal_depth_below_grade": 1 + }, "sample_files/base-foundation-multiple.xml": { "parent_hpxml": "sample_files/base-foundation-unconditioned-basement.xml" }, diff --git a/workflow/sample_files/base-foundation-slab-exterior-horizontal-insulation.xml b/workflow/sample_files/base-foundation-slab-exterior-horizontal-insulation.xml new file mode 100644 index 0000000000..d88113971e --- /dev/null +++ b/workflow/sample_files/base-foundation-slab-exterior-horizontal-insulation.xml @@ -0,0 +1,514 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + + + 2.3 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + conditioned space + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + 0.0 + + + + + + 5.0 + true + + + + 0.0 + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + under slab + 150.0 + + + + return + 0.0 + under slab + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file From 5f5353397fe9a6dbd3d96065f83f4ab223ff9b6e Mon Sep 17 00:00:00 2001 From: prsh5175 Date: Mon, 24 Jun 2024 17:08:03 -0600 Subject: [PATCH 03/41] temporary commit --- BuildResidentialHPXML/measure.rb | 6 +++--- workflow/hpxml_inputs.json | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 672b821dac..8b78a686d6 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -5079,9 +5079,9 @@ def self.set_slabs(hpxml_bldg, model, args, sorted_surfaces) thickness: args[:slab_thickness], exposed_perimeter: exposed_perimeter, perimeter_insulation_depth: args[:slab_perimeter_depth], - exterior_horizontal_r_value: args[:slab_exterior_horizontal_insulation_r], - exterior_horizontal_width: args[:slab_exterior_horizontal_insulation_width], - exterior_horizontal_insulation_depth_below_grade: args[:slab_exterior_horizontal_depth_below_grade], + exterior_horizontal_insulation_r: args[:slab_exterior_horizontal_insulation_r], + exterior_horizontal_insulation_width: args[:slab_exterior_horizontal_insulation_width], + exterior_horizontal_insulation_depth_below_grade: args[:slab_exterior_horizontal_insulation_depth_below_grade], under_slab_insulation_width: under_slab_insulation_width, perimeter_insulation_r_value: args[:slab_perimeter_insulation_r], under_slab_insulation_r_value: args[:slab_under_insulation_r], diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index b57bb5b8ef..0d0823715e 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -36,8 +36,8 @@ "slab_perimeter_insulation_r": 0, "slab_perimeter_depth": 0, "slab_exterior_horizontal_insulation_r": 0, - "slab_exterior_horizontal_width": 0, - "slab_exterior_horizontal_depth_below_grade": 0, + "slab_exterior_horizontal_insulation_width": 0, + "slab_exterior_horizontal_insulation_depth_below_grade": 0, "slab_under_insulation_r": 0, "slab_under_width": 0, "slab_thickness": 4, @@ -644,8 +644,8 @@ "slab_perimeter_insulation_r": 0, "slab_perimeter_depth": 0, "slab_exterior_horizontal_insulation_r": 0, - "slab__exterior_horizontal_width": 0, - "slab__exterior_horizontal_depth_below_grade": 0, + "slab__exterior_horizontal_insulation_width": 0, + "slab__exterior_horizontal_insulation_depth_below_grade": 0, "slab_under_insulation_r": 0, "slab_under_width": 0, "slab_thickness": 4, @@ -1839,8 +1839,8 @@ "sample_files/base-foundation-slab-exterior-horizontal-insulation.xml": { "parent_hpxml": "sample_files/base.xml", "slab_exterior_horizontal_insulation_r": 5.4, - "slab_exterior_horizontal_width": 2.5, - "slab_exterior_horizontal_depth_below_grade": 1 + "slab_exterior_horizontal_insulation_width": 2.5, + "slab_exterior_horizontal_insulation_depth_below_grade": 1 }, "sample_files/base-foundation-multiple.xml": { "parent_hpxml": "sample_files/base-foundation-unconditioned-basement.xml" From d79922c8aaf61067b3288a5d356ec70776775d31 Mon Sep 17 00:00:00 2001 From: prsh5175 Date: Mon, 24 Jun 2024 17:29:23 -0600 Subject: [PATCH 04/41] debug commit --- workflow/hpxml_inputs.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index 0d0823715e..7ea7920733 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -644,8 +644,8 @@ "slab_perimeter_insulation_r": 0, "slab_perimeter_depth": 0, "slab_exterior_horizontal_insulation_r": 0, - "slab__exterior_horizontal_insulation_width": 0, - "slab__exterior_horizontal_insulation_depth_below_grade": 0, + "slab_exterior_horizontal_insulation_width": 0, + "slab_exterior_horizontal_insulation_depth_below_grade": 0, "slab_under_insulation_r": 0, "slab_under_width": 0, "slab_thickness": 4, From 1a82461cf24f7e205ef2a2623a5aa96524f3e191 Mon Sep 17 00:00:00 2001 From: prsh5175 Date: Tue, 25 Jun 2024 10:50:49 -0600 Subject: [PATCH 05/41] Documentation image update. Debug ongoing. --- docs/source/images/slab.png | Bin 14872 -> 150528 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/source/images/slab.png b/docs/source/images/slab.png index a674f11a011acfb5f36d1c8731b1913b2490178d..347cc4ee6647d30b556f61f16a95544fbb3da778 100644 GIT binary patch literal 150528 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

-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 aW^R$kbfdS!)srOrqjga4K$gboYySgQn-fz2 literal 14872 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 Date: Tue, 25 Jun 2024 13:54:17 -0600 Subject: [PATCH 06/41] Debug commit. --- BuildResidentialHPXML/README.md | 39 +++++++ BuildResidentialHPXML/measure.rb | 2 +- BuildResidentialHPXML/measure.xml | 38 ++++++- HPXMLtoOpenStudio/measure.xml | 18 ++-- HPXMLtoOpenStudio/resources/constructions.rb | 14 +++ HPXMLtoOpenStudio/resources/hpxml.rb | 2 +- workflow/tests/ASHRAE_Standard_140/L302XC.xml | 101 ++++++------------ 7 files changed, 133 insertions(+), 81 deletions(-) diff --git a/BuildResidentialHPXML/README.md b/BuildResidentialHPXML/README.md index 8c0fecc33c..b9a2eec608 100644 --- a/BuildResidentialHPXML/README.md +++ b/BuildResidentialHPXML/README.md @@ -994,6 +994,45 @@ Depth from grade to bottom of vertical slab perimeter insulation. Applies to sla
+**Slab: Exterior Horizontal Insulation Nominal R-value** + +Nominal R-value of the slab perimeter exterior horizontal (wing/skirt) insulation. Applies to slab-on-grade foundations and basement/crawlspace floors. + +- **Name:** ``slab_exterior_horizontal_insulation_r`` +- **Type:** ``Double`` + +- **Units:** ``h-ft^2-R/Btu`` + +- **Required:** ``true`` + +
+ +**Slab: Exterior Horizontal Insulation Width** + +Width of the slab exterior horizontal (wing/skirt) insulation measured from the exterior surface of the vertical slab perimeter insulation. Applies to slab-on-grade foundations and basement/crawlspace floors. + +- **Name:** ``slab_exterior_horizontal_insulation_width`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``true`` + +
+ +**Slab: Exterior Horizontal Insulation Depth Below Grade** + +Depth of the slab exterior horizontal (wing/skirt) insulation measured from the top surface of the slab exterior horizontal insulation. Applies to slab-on-grade foundations and basement/crawlspace floors. + +- **Name:** ``slab_exterior_horizontal_insulation_depth_below_grade`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``true`` + +
+ **Slab: Under Slab Insulation Nominal R-value** Nominal R-value of the horizontal under slab insulation. Applies to slab-on-grade foundations and basement/crawlspace floors. diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 8b78a686d6..1deda125b4 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -5079,7 +5079,7 @@ def self.set_slabs(hpxml_bldg, model, args, sorted_surfaces) thickness: args[:slab_thickness], exposed_perimeter: exposed_perimeter, perimeter_insulation_depth: args[:slab_perimeter_depth], - exterior_horizontal_insulation_r: args[:slab_exterior_horizontal_insulation_r], + exterior_horizontal_insulation_r_value: args[:slab_exterior_horizontal_insulation_r], exterior_horizontal_insulation_width: args[:slab_exterior_horizontal_insulation_width], exterior_horizontal_insulation_depth_below_grade: args[:slab_exterior_horizontal_insulation_depth_below_grade], under_slab_insulation_width: under_slab_insulation_width, diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 9ef4a94f9b..ef6125d313 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 5bba0282-12b2-4602-b7cf-7242adce2cab - 2024-06-20T23:43:28Z + df9274bf-eed6-4df5-9249-1ae19bc1999f + 2024-06-25T19:18:39Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -1394,6 +1394,36 @@ false 0 + + slab_exterior_horizontal_insulation_r + Slab: Exterior Horizontal Insulation Nominal R-value + Nominal R-value of the slab perimeter exterior horizontal (wing/skirt) insulation. Applies to slab-on-grade foundations and basement/crawlspace floors. + Double + h-ft^2-R/Btu + true + false + 0 + + + slab_exterior_horizontal_insulation_width + Slab: Exterior Horizontal Insulation Width + Width of the slab exterior horizontal (wing/skirt) insulation measured from the exterior surface of the vertical slab perimeter insulation. Applies to slab-on-grade foundations and basement/crawlspace floors. + Double + ft + true + false + 0 + + + slab_exterior_horizontal_insulation_depth_below_grade + Slab: Exterior Horizontal Insulation Depth Below Grade + Depth of the slab exterior horizontal (wing/skirt) insulation measured from the top surface of the slab exterior horizontal insulation. Applies to slab-on-grade foundations and basement/crawlspace floors. + Double + ft + true + false + 0 + slab_under_insulation_r Slab: Under Slab Insulation Nominal R-value @@ -7343,7 +7373,7 @@ README.md md readme - 7BEAF038 + 7EE2D132 README.md.erb @@ -7360,7 +7390,7 @@ measure.rb rb script - D8FCCD88 + F3463435 geometry.rb diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index a63ced946a..f0521a5303 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - f7324c6c-96bb-456b-a571-6a0b94f8b09f - 2024-06-24T16:04:38Z + 20c9c649-c0ec-4c58-b152-3eb8091d7ef3 + 2024-06-25T19:18:44Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -207,7 +207,7 @@ constructions.rb rb resource - F7E9C33A + AF203ADC data/Xing_okstate_0664D_13659_Table_A-3.csv @@ -345,7 +345,7 @@ hpxml.rb rb resource - FEEDB03A + 45A3D58E hpxml_defaults.rb @@ -357,7 +357,7 @@ hpxml_schema/HPXML.xsd xsd resource - DE05BDEC + 08932B54 hpxml_schema/README.md @@ -369,7 +369,7 @@ hpxml_schematron/EPvalidator.xml xml resource - AE34574D + 87AF15DE hpxml_schematron/iso-schematron.xsd @@ -623,6 +623,12 @@ resource B580BE85 + + in.schedules.csv + csv + test + 135B2F53 + test_airflow.rb rb diff --git a/HPXMLtoOpenStudio/resources/constructions.rb b/HPXMLtoOpenStudio/resources/constructions.rb index 6655887565..b2b2467002 100644 --- a/HPXMLtoOpenStudio/resources/constructions.rb +++ b/HPXMLtoOpenStudio/resources/constructions.rb @@ -2034,11 +2034,25 @@ def self.create_kiva_slab_foundation(model, int_horiz_r, int_horiz_width, int_ve foundation.setExteriorVerticalInsulationDepth(UnitConversions.convert(ext_vert_depth, 'ft', 'm')) end + # Exterior horizontal insulation + if (ext_horiz_r > 0) && (ext_horiz_depth > 0) + ext_horiz_mat = create_insulation_material(model, 'exterior horizontal ins', ext_horiz_r) + foundation.setExteriorHorizontalInsulationMaterial(ext_horiz_mat) + foundation.setExteriorHorizontalInsulationDepth(UnitConversions.convert(ext_horiz_depth, 'ft', 'm')) + end + foundation.setWallHeightAboveGrade(UnitConversions.convert(concrete_thick_in, 'in', 'm')) foundation.setWallDepthBelowSlab(UnitConversions.convert(8.0, 'in', 'm')) apply_kiva_settings(model, soil_k_in) + # Exterior vertical insulation + if (ext_horiz_r > 0) && (ext_horiz_depth > 0) + ext_horiz_mat = create_insulation_material(model, 'exterior horizontal ins', ext_horiz_r) + foundation.setExteriorHorizontalInsulationMaterial(ext_horiz_mat) + foundation.setExteriorHorizontalInsulationDepth(UnitConversions.convert(ext_horiz_depth, 'ft', 'm')) + end + return foundation end diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index c6a99f3df2..be6119378f 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -4108,7 +4108,7 @@ class Slab < BaseElement :under_slab_insulation_spans_entire_slab, :depth_below_grade, :carpet_fraction, :carpet_r_value, :perimeter_insulation_id, :perimeter_insulation_r_value, :exterior_horizontal_insulation_id, :exterior_horizontal_insulation_material, :exterior_horizontal_insulation_r_value, - :exterior_horizontal_depth_below_grade, :exterior_horizontal_insulation_width, + :exterior_horizontal_insulation_depth_below_grade, :exterior_horizontal_insulation_width, :under_slab_insulation_id, :under_slab_insulation_r_value, :perimeter_insulation_material, :under_slab_insulation_material, :gap_insulation_r_value, :attached_to_space_idref] attr_accessor(*ATTRS) diff --git a/workflow/tests/ASHRAE_Standard_140/L302XC.xml b/workflow/tests/ASHRAE_Standard_140/L302XC.xml index 99afe6b0c4..932712f731 100644 --- a/workflow/tests/ASHRAE_Standard_140/L302XC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L302XC.xml @@ -2,15 +2,11 @@ HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 + BuildResidentialHPXML + 2024-06-25T13:18:58-06:00 create - - - true - - + @@ -21,6 +17,7 @@ stand-alone no units above or below + 180 0.0 @@ -63,10 +60,6 @@ true - - ACHnatural - 2.4 - @@ -74,6 +67,15 @@ + + + + + + + + + @@ -81,8 +83,7 @@ 811.1 0 asphalt or fiberglass shingles - 0.6 - 0.9 + medium 4.0 @@ -95,8 +96,7 @@ 811.1 180 asphalt or fiberglass shingles - 0.6 - 0.9 + medium 4.0 @@ -115,12 +115,7 @@ 456.0 0 wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - + medium 11.76 @@ -136,12 +131,7 @@ 216.0 90 wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - + medium 11.76 @@ -157,12 +147,7 @@ 456.0 180 wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - + medium 11.76 @@ -178,12 +163,7 @@ 216.0 270 wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - + medium 11.76 @@ -200,11 +180,10 @@ 60.8 90 wood siding - 0.6 - 0.9 + medium - 2.15 + 4.0 @@ -218,11 +197,10 @@ 60.8 270 wood siding - 0.6 - 0.9 + medium - 2.15 + 4.0 @@ -236,10 +214,6 @@ 1539.0 - - gypsum board - 0.5 - 18.45 @@ -260,6 +234,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + @@ -335,28 +317,12 @@ - 20.0 + 40.0 180 3.04 - - - - 20.0 - 0 - 3.04 - - - - - - 68.0 - 78.0 - - - @@ -368,9 +334,6 @@ 0.822 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 From 8a227a06f33485139af2316d06e256b97a9bdd91 Mon Sep 17 00:00:00 2001 From: prsh5175 Date: Tue, 25 Jun 2024 14:48:57 -0600 Subject: [PATCH 07/41] Updates. --- HPXMLtoOpenStudio/measure.xml | 10 +- HPXMLtoOpenStudio/resources/hpxml.rb | 6 +- .../resources/hpxml_schema/HPXML.xsd | 2 +- .../hpxml_schematron/EPvalidator.xml | 6 +- tasks.rb | 1 + workflow/hpxml_inputs.json | 2 +- workflow/real_homes/house001.xml | 8 ++ workflow/real_homes/house002.xml | 8 ++ workflow/real_homes/house003.xml | 8 ++ workflow/real_homes/house004.xml | 8 ++ workflow/real_homes/house005.xml | 8 ++ workflow/real_homes/house006.xml | 8 ++ workflow/real_homes/house007.xml | 8 ++ workflow/real_homes/house008.xml | 16 ++++ workflow/real_homes/house009.xml | 12 +++ workflow/real_homes/house010.xml | 8 ++ workflow/real_homes/house011.xml | 4 + workflow/real_homes/house012.xml | 4 + workflow/real_homes/house013.xml | 4 + workflow/real_homes/house014.xml | 4 + workflow/real_homes/house015.xml | 4 + workflow/real_homes/house016.xml | 4 + workflow/real_homes/house017.xml | 8 ++ workflow/real_homes/house018.xml | 4 + workflow/real_homes/house019.xml | 4 + workflow/real_homes/house020.xml | 4 + workflow/real_homes/house021.xml | 8 ++ workflow/real_homes/house022.xml | 4 + workflow/real_homes/house023.xml | 4 + workflow/real_homes/house024.xml | 8 ++ workflow/real_homes/house025.xml | 4 + workflow/real_homes/house026.xml | 12 +++ workflow/real_homes/house027.xml | 8 ++ workflow/real_homes/house028.xml | 8 ++ workflow/real_homes/house029.xml | 8 ++ workflow/real_homes/house030.xml | 16 ++++ workflow/real_homes/house031.xml | 8 ++ workflow/real_homes/house032.xml | 4 + workflow/real_homes/house033.xml | 4 + workflow/real_homes/house034.xml | 12 +++ workflow/real_homes/house035.xml | 4 + workflow/real_homes/house036.xml | 4 + workflow/real_homes/house037.xml | 4 + workflow/real_homes/house038.xml | 8 ++ workflow/real_homes/house039.xml | 8 ++ workflow/real_homes/house040.xml | 8 ++ workflow/real_homes/house041.xml | 12 +++ workflow/real_homes/house042.xml | 8 ++ workflow/real_homes/house043.xml | 8 ++ workflow/real_homes/house044.xml | 8 ++ workflow/real_homes/house045.xml | 8 ++ workflow/real_homes/house047.xml | 4 + workflow/real_homes/house048.xml | 8 ++ workflow/real_homes/house049.xml | 8 ++ workflow/real_homes/house050.xml | 8 ++ .../sample_files/base-appliances-coal.xml | 8 ++ ...e-appliances-dehumidifier-ief-portable.xml | 8 ++ ...appliances-dehumidifier-ief-whole-home.xml | 8 ++ .../base-appliances-dehumidifier-multiple.xml | 8 ++ .../base-appliances-dehumidifier.xml | 8 ++ ...freezer-temperature-dependent-schedule.xml | 8 ++ workflow/sample_files/base-appliances-gas.xml | 8 ++ .../sample_files/base-appliances-modified.xml | 8 ++ .../sample_files/base-appliances-none.xml | 8 ++ workflow/sample_files/base-appliances-oil.xml | 8 ++ .../sample_files/base-appliances-propane.xml | 8 ++ ...gerator-temperature-dependent-schedule.xml | 8 ++ .../sample_files/base-appliances-wood.xml | 8 ++ .../sample_files/base-atticroof-cathedral.xml | 8 ++ .../base-atticroof-conditioned.xml | 8 ++ workflow/sample_files/base-atticroof-flat.xml | 8 ++ ...base-atticroof-radiant-barrier-ceiling.xml | 8 ++ .../base-atticroof-radiant-barrier.xml | 8 ++ ...base-atticroof-unvented-insulated-roof.xml | 8 ++ .../sample_files/base-atticroof-vented.xml | 8 ++ .../sample_files/base-battery-scheduled.xml | 8 ++ workflow/sample_files/base-battery.xml | 8 ++ .../base-bldgtype-mf-whole-building.xml | 16 ++++ .../base-bldgtype-sfa-unit-2stories.xml | 8 ++ ...-bldgtype-sfa-unit-atticroof-cathedral.xml | 8 ++ ...a-unit-infil-compartmentalization-test.xml | 8 ++ .../sample_files/base-bldgtype-sfa-unit.xml | 8 ++ .../base-dhw-combi-tankless-outside.xml | 8 ++ .../sample_files/base-dhw-combi-tankless.xml | 8 ++ .../base-dhw-desuperheater-2-speed.xml | 8 ++ .../base-dhw-desuperheater-gshp.xml | 8 ++ .../base-dhw-desuperheater-hpwh.xml | 8 ++ .../base-dhw-desuperheater-tankless.xml | 8 ++ .../base-dhw-desuperheater-var-speed.xml | 8 ++ .../sample_files/base-dhw-desuperheater.xml | 8 ++ workflow/sample_files/base-dhw-dwhr.xml | 8 ++ .../base-dhw-indirect-detailed-setpoints.xml | 8 ++ .../sample_files/base-dhw-indirect-dse.xml | 8 ++ .../base-dhw-indirect-outside.xml | 8 ++ .../base-dhw-indirect-standbyloss.xml | 8 ++ .../base-dhw-indirect-with-solar-fraction.xml | 8 ++ workflow/sample_files/base-dhw-indirect.xml | 8 ++ .../sample_files/base-dhw-jacket-electric.xml | 8 ++ workflow/sample_files/base-dhw-jacket-gas.xml | 8 ++ .../sample_files/base-dhw-jacket-hpwh.xml | 8 ++ .../sample_files/base-dhw-jacket-indirect.xml | 8 ++ .../base-dhw-low-flow-fixtures.xml | 8 ++ workflow/sample_files/base-dhw-multiple.xml | 8 ++ workflow/sample_files/base-dhw-none.xml | 8 ++ .../base-dhw-recirc-demand-scheduled.xml | 8 ++ .../sample_files/base-dhw-recirc-demand.xml | 8 ++ .../sample_files/base-dhw-recirc-manual.xml | 8 ++ .../base-dhw-recirc-nocontrol.xml | 8 ++ .../base-dhw-recirc-temperature.xml | 8 ++ .../sample_files/base-dhw-recirc-timer.xml | 8 ++ .../base-dhw-solar-direct-evacuated-tube.xml | 8 ++ .../base-dhw-solar-direct-flat-plate.xml | 8 ++ .../base-dhw-solar-direct-ics.xml | 8 ++ .../sample_files/base-dhw-solar-fraction.xml | 8 ++ .../base-dhw-solar-indirect-flat-plate.xml | 8 ++ ...base-dhw-solar-thermosyphon-flat-plate.xml | 8 ++ workflow/sample_files/base-dhw-tank-coal.xml | 8 ++ .../base-dhw-tank-detailed-setpoints.xml | 8 ++ .../sample_files/base-dhw-tank-elec-uef.xml | 8 ++ .../base-dhw-tank-gas-outside.xml | 8 ++ .../base-dhw-tank-gas-uef-fhr.xml | 8 ++ .../sample_files/base-dhw-tank-gas-uef.xml | 8 ++ workflow/sample_files/base-dhw-tank-gas.xml | 8 ++ ...-dhw-tank-heat-pump-detailed-schedules.xml | 8 ++ ...eat-pump-operating-mode-heat-pump-only.xml | 8 ++ .../base-dhw-tank-heat-pump-outside.xml | 8 ++ .../base-dhw-tank-heat-pump-uef.xml | 8 ++ ...dhw-tank-heat-pump-with-solar-fraction.xml | 8 ++ .../base-dhw-tank-heat-pump-with-solar.xml | 8 ++ .../sample_files/base-dhw-tank-heat-pump.xml | 8 ++ ...ratified-detailed-occupancy-stochastic.xml | 8 ++ .../base-dhw-tank-model-type-stratified.xml | 8 ++ workflow/sample_files/base-dhw-tank-oil.xml | 8 ++ workflow/sample_files/base-dhw-tank-wood.xml | 8 ++ .../base-dhw-tankless-detailed-setpoints.xml | 8 ++ .../base-dhw-tankless-electric-outside.xml | 8 ++ .../base-dhw-tankless-electric-uef.xml | 8 ++ .../base-dhw-tankless-electric.xml | 8 ++ .../base-dhw-tankless-gas-uef.xml | 8 ++ ...e-dhw-tankless-gas-with-solar-fraction.xml | 8 ++ .../base-dhw-tankless-gas-with-solar.xml | 8 ++ .../sample_files/base-dhw-tankless-gas.xml | 8 ++ .../base-dhw-tankless-propane.xml | 8 ++ .../base-enclosure-2stories-garage.xml | 16 ++++ .../sample_files/base-enclosure-2stories.xml | 8 ++ .../sample_files/base-enclosure-beds-1.xml | 8 ++ .../sample_files/base-enclosure-beds-2.xml | 8 ++ .../sample_files/base-enclosure-beds-4.xml | 8 ++ .../sample_files/base-enclosure-beds-5.xml | 8 ++ .../base-enclosure-ceilingtypes.xml | 8 ++ .../sample_files/base-enclosure-garage.xml | 16 ++++ ...ase-enclosure-infil-ach-house-pressure.xml | 8 ++ ...ase-enclosure-infil-cfm-house-pressure.xml | 8 ++ .../base-enclosure-infil-cfm50.xml | 8 ++ .../sample_files/base-enclosure-infil-ela.xml | 8 ++ .../base-enclosure-infil-flue.xml | 8 ++ .../base-enclosure-infil-natural-ach.xml | 8 ++ .../base-enclosure-infil-natural-cfm.xml | 8 ++ .../base-enclosure-orientations.xml | 8 ++ .../sample_files/base-enclosure-overhangs.xml | 8 ++ .../sample_files/base-enclosure-rooftypes.xml | 8 ++ .../base-enclosure-skylights-cathedral.xml | 8 ++ ...nclosure-skylights-physical-properties.xml | 8 ++ .../base-enclosure-skylights-shading.xml | 8 ++ .../base-enclosure-skylights-storms.xml | 8 ++ .../sample_files/base-enclosure-skylights.xml | 8 ++ .../base-enclosure-split-level.xml | 8 ++ .../base-enclosure-thermal-mass.xml | 8 ++ .../sample_files/base-enclosure-walltypes.xml | 8 ++ ...ndows-natural-ventilation-availability.xml | 8 ++ .../base-enclosure-windows-none.xml | 8 ++ ...-enclosure-windows-physical-properties.xml | 8 ++ ...base-enclosure-windows-shading-seasons.xml | 8 ++ .../base-enclosure-windows-shading.xml | 8 ++ .../base-enclosure-windows-storms.xml | 8 ++ .../base-foundation-basement-garage.xml | 12 +++ .../sample_files/base-foundation-complex.xml | 8 ++ ...ditioned-basement-slab-insulation-full.xml | 8 ++ ...n-conditioned-basement-slab-insulation.xml | 8 ++ ...n-conditioned-basement-wall-insulation.xml | 8 ++ ...base-foundation-conditioned-crawlspace.xml | 8 ++ .../sample_files/base-foundation-multiple.xml | 12 +++ ...on-slab-exterior-horizontal-insulation.xml | 13 ++- .../sample_files/base-foundation-slab.xml | 8 ++ ...ion-unconditioned-basement-above-grade.xml | 8 ++ ...tion-unconditioned-basement-assembly-r.xml | 8 ++ ...unconditioned-basement-wall-insulation.xml | 8 ++ ...base-foundation-unconditioned-basement.xml | 8 ++ .../base-foundation-unvented-crawlspace.xml | 8 ++ ...undation-vented-crawlspace-above-grade.xml | 8 ++ .../base-foundation-vented-crawlspace.xml | 8 ++ .../base-foundation-walkout-basement.xml | 8 ++ ...air-heat-pump-1-speed-advanced-defrost.xml | 8 ++ ...-air-heat-pump-1-speed-autosize-factor.xml | 8 ++ ...-to-air-heat-pump-1-speed-cooling-only.xml | 8 ++ ...heat-pump-1-speed-heating-capacity-17f.xml | 8 ++ ...-to-air-heat-pump-1-speed-heating-only.xml | 8 ++ ...heat-pump-1-speed-lockout-temperatures.xml | 8 ++ ...r-to-air-heat-pump-1-speed-seer2-hspf2.xml | 8 ++ ...base-hvac-air-to-air-heat-pump-1-speed.xml | 8 ++ ...base-hvac-air-to-air-heat-pump-2-speed.xml | 8 ++ ...r-heat-pump-var-speed-advanced-defrost.xml | 8 ++ ...r-heat-pump-var-speed-autosize-maxload.xml | 8 ++ ...r-speed-backup-boiler-advanced-defrost.xml | 8 ++ ...p-var-speed-backup-boiler-hvac-seasons.xml | 8 ++ ...d-backup-boiler-switchover-temperature.xml | 8 ++ ...-air-heat-pump-var-speed-backup-boiler.xml | 8 ++ ...r-speed-backup-furnace-autosize-factor.xml | 8 ++ ...air-heat-pump-var-speed-backup-furnace.xml | 8 ++ ...ar-speed-detailed-performance-autosize.xml | 8 ++ ...peed-detailed-performance-heating-only.xml | 8 ++ ...iled-performance-normalized-capacities.xml | 8 ++ ...etailed-performance-other-temperatures.xml | 8 ++ ...at-pump-var-speed-detailed-performance.xml | 8 ++ ...speed-max-power-ratio-schedule-10-mins.xml | 8 ++ ...d-max-power-ratio-schedule-two-systems.xml | 8 ++ ...ump-var-speed-max-power-ratio-schedule.xml | 8 ++ ...se-hvac-air-to-air-heat-pump-var-speed.xml | 8 ++ .../base-hvac-autosize-sizing-controls.xml | 8 ++ workflow/sample_files/base-hvac-autosize.xml | 8 ++ .../base-hvac-boiler-coal-only.xml | 8 ++ .../base-hvac-boiler-elec-only.xml | 8 ++ ...ase-hvac-boiler-gas-central-ac-1-speed.xml | 8 ++ .../base-hvac-boiler-gas-only-pilot.xml | 8 ++ .../base-hvac-boiler-gas-only.xml | 8 ++ .../base-hvac-boiler-oil-only.xml | 8 ++ .../base-hvac-boiler-propane-only.xml | 8 ++ .../base-hvac-boiler-wood-only.xml | 8 ++ ...entral-ac-only-1-speed-autosize-factor.xml | 8 ++ ...ase-hvac-central-ac-only-1-speed-seer2.xml | 8 ++ .../base-hvac-central-ac-only-1-speed.xml | 8 ++ .../base-hvac-central-ac-only-2-speed.xml | 8 ++ ...ar-speed-detailed-performance-autosize.xml | 8 ++ ...ac-only-var-speed-detailed-performance.xml | 8 ++ ...nly-var-speed-max-power-ratio-schedule.xml | 8 ++ .../base-hvac-central-ac-only-var-speed.xml | 8 ++ ...l-ac-plus-air-to-air-heat-pump-heating.xml | 8 ++ workflow/sample_files/base-hvac-dse.xml | 8 ++ ...heat-pump-1-speed-lockout-temperatures.xml | 8 ++ ...dual-fuel-air-to-air-heat-pump-1-speed.xml | 8 ++ ...air-heat-pump-2-speed-advanced-defrost.xml | 8 ++ ...dual-fuel-air-to-air-heat-pump-2-speed.xml | 8 ++ ...al-fuel-air-to-air-heat-pump-var-speed.xml | 8 ++ ...-dual-fuel-mini-split-heat-pump-ducted.xml | 8 ++ .../base-hvac-ducts-area-fractions.xml | 8 ++ .../base-hvac-ducts-area-multipliers.xml | 8 ++ .../sample_files/base-hvac-ducts-buried.xml | 8 ++ .../sample_files/base-hvac-ducts-defaults.xml | 8 ++ .../base-hvac-ducts-effective-rvalue.xml | 8 ++ .../base-hvac-ducts-leakage-cfm50.xml | 8 ++ .../base-hvac-ducts-leakage-percent.xml | 8 ++ .../base-hvac-ducts-shape-mixed.xml | 8 ++ .../base-hvac-ducts-shape-rectangular.xml | 8 ++ .../base-hvac-ducts-shape-round.xml | 8 ++ .../base-hvac-elec-resistance-only.xml | 8 ++ .../base-hvac-evap-cooler-furnace-gas.xml | 8 ++ .../base-hvac-evap-cooler-only-ducted.xml | 8 ++ .../base-hvac-evap-cooler-only.xml | 8 ++ .../base-hvac-fireplace-wood-only.xml | 8 ++ .../base-hvac-floor-furnace-propane-only.xml | 8 ++ .../base-hvac-furnace-coal-only.xml | 8 ++ ...e-hvac-furnace-elec-central-ac-1-speed.xml | 8 ++ .../base-hvac-furnace-elec-only.xml | 8 ++ ...se-hvac-furnace-gas-central-ac-2-speed.xml | 8 ++ ...-ac-var-speed-max-power-ratio-schedule.xml | 8 ++ ...-hvac-furnace-gas-central-ac-var-speed.xml | 8 ++ ...-hvac-furnace-gas-only-autosize-factor.xml | 8 ++ ...ac-furnace-gas-only-detailed-setpoints.xml | 8 ++ .../base-hvac-furnace-gas-only-pilot.xml | 8 ++ .../base-hvac-furnace-gas-only.xml | 8 ++ .../base-hvac-furnace-gas-room-ac.xml | 8 ++ .../base-hvac-furnace-oil-only.xml | 8 ++ .../base-hvac-furnace-propane-only.xml | 8 ++ .../base-hvac-furnace-wood-only.xml | 8 ++ .../sample_files/base-hvac-furnace-x3-dse.xml | 8 ++ ...c-ground-to-air-heat-pump-cooling-only.xml | 8 ++ ...air-heat-pump-detailed-geothermal-loop.xml | 8 ++ ...c-ground-to-air-heat-pump-heating-only.xml | 8 ++ .../base-hvac-ground-to-air-heat-pump.xml | 8 ++ ...l-quality-air-to-air-heat-pump-1-speed.xml | 8 ++ ...l-quality-air-to-air-heat-pump-2-speed.xml | 8 ++ ...at-pump-var-speed-detailed-performance.xml | 8 ++ ...quality-air-to-air-heat-pump-var-speed.xml | 8 ++ ...quality-furnace-gas-central-ac-1-speed.xml | 8 ++ ...quality-furnace-gas-central-ac-2-speed.xml | 8 ++ ...ality-furnace-gas-central-ac-var-speed.xml | 8 ++ ...-hvac-install-quality-furnace-gas-only.xml | 8 ++ ...nstall-quality-ground-to-air-heat-pump.xml | 8 ++ ...mini-split-air-conditioner-only-ducted.xml | 8 ++ ...ll-quality-mini-split-heat-pump-ducted.xml | 8 ++ ...mini-split-air-conditioner-only-ducted.xml | 8 ++ ...ductless-detailed-performance-autosize.xml | 8 ++ ...ner-only-ductless-detailed-performance.xml | 8 ++ ...ni-split-air-conditioner-only-ductless.xml | 8 ++ ...ni-split-heat-pump-ducted-cooling-only.xml | 8 ++ ...p-ducted-detailed-performance-autosize.xml | 8 ++ ...-heat-pump-ducted-detailed-performance.xml | 8 ++ ...-heating-only-max-power-ratio-schedule.xml | 8 ++ ...ni-split-heat-pump-ducted-heating-only.xml | 8 ++ ...t-pump-ducted-max-power-ratio-schedule.xml | 8 ++ .../base-hvac-mini-split-heat-pump-ducted.xml | 8 ++ ...it-heat-pump-ductless-advanced-defrost.xml | 8 ++ ...lit-heat-pump-ductless-autosize-factor.xml | 8 ++ ...-pump-ductless-backup-advanced-defrost.xml | 8 ++ ...it-heat-pump-ductless-backup-baseboard.xml | 8 ++ ...ductless-backup-furnace-ducts-defaults.xml | 8 ++ ...plit-heat-pump-ductless-backup-furnace.xml | 8 ++ ...-split-heat-pump-ductless-backup-stove.xml | 8 ++ ...ductless-detailed-performance-autosize.xml | 8 ++ ...eat-pump-ductless-detailed-performance.xml | 8 ++ ...eat-pump-ductless-heating-capacity-17f.xml | 8 ++ ...ase-hvac-mini-split-heat-pump-ductless.xml | 8 ++ workflow/sample_files/base-hvac-multiple.xml | 8 ++ workflow/sample_files/base-hvac-none.xml | 8 ++ ...ase-hvac-ptac-with-heating-electricity.xml | 8 ++ ...ase-hvac-ptac-with-heating-natural-gas.xml | 8 ++ workflow/sample_files/base-hvac-ptac.xml | 8 ++ .../base-hvac-pthp-heating-capacity-17f.xml | 8 ++ workflow/sample_files/base-hvac-pthp.xml | 8 ++ .../base-hvac-room-ac-only-33percent.xml | 8 ++ .../base-hvac-room-ac-only-ceer.xml | 8 ++ ...e-hvac-room-ac-only-detailed-setpoints.xml | 8 ++ .../sample_files/base-hvac-room-ac-only.xml | 8 ++ .../base-hvac-room-ac-with-heating.xml | 8 ++ .../base-hvac-room-ac-with-reverse-cycle.xml | 8 ++ workflow/sample_files/base-hvac-seasons.xml | 8 ++ .../base-hvac-setpoints-daily-schedules.xml | 8 ++ .../base-hvac-setpoints-daily-setbacks.xml | 8 ++ workflow/sample_files/base-hvac-setpoints.xml | 8 ++ .../base-hvac-space-heater-gas-only.xml | 8 ++ .../sample_files/base-hvac-stove-oil-only.xml | 8 ++ .../base-hvac-stove-wood-pellets-only.xml | 8 ++ .../sample_files/base-hvac-undersized.xml | 8 ++ .../base-hvac-wall-furnace-elec-only.xml | 8 ++ ...lighting-ceiling-fans-label-energy-use.xml | 8 ++ .../base-lighting-ceiling-fans.xml | 8 ++ .../sample_files/base-lighting-holiday.xml | 8 ++ .../base-lighting-kwh-per-year.xml | 8 ++ workflow/sample_files/base-lighting-mixed.xml | 8 ++ .../base-lighting-none-ceiling-fans.xml | 8 ++ workflow/sample_files/base-lighting-none.xml | 8 ++ .../sample_files/base-location-AMY-2012.xml | 8 ++ .../base-location-baltimore-md.xml | 8 ++ .../base-location-capetown-zaf.xml | 8 ++ .../sample_files/base-location-dallas-tx.xml | 8 ++ .../sample_files/base-location-detailed.xml | 8 ++ .../sample_files/base-location-duluth-mn.xml | 8 ++ .../sample_files/base-location-helena-mt.xml | 8 ++ .../base-location-honolulu-hi.xml | 8 ++ .../sample_files/base-location-miami-fl.xml | 8 ++ .../sample_files/base-location-phoenix-az.xml | 8 ++ .../base-location-portland-or.xml | 8 ++ .../sample_files/base-mechvent-balanced.xml | 8 ++ .../base-mechvent-bath-kitchen-fans.xml | 8 ++ ...se-mechvent-cfis-airflow-fraction-zero.xml | 8 ++ .../sample_files/base-mechvent-cfis-dse.xml | 8 ++ ...-mechvent-cfis-evap-cooler-only-ducted.xml | 8 ++ ...mechvent-cfis-supplemental-fan-exhaust.xml | 8 ++ ...-mechvent-cfis-supplemental-fan-supply.xml | 8 ++ workflow/sample_files/base-mechvent-cfis.xml | 8 ++ .../base-mechvent-erv-atre-asre.xml | 8 ++ workflow/sample_files/base-mechvent-erv.xml | 8 ++ .../base-mechvent-exhaust-rated-flow-rate.xml | 8 ++ .../sample_files/base-mechvent-exhaust.xml | 8 ++ .../sample_files/base-mechvent-hrv-asre.xml | 8 ++ workflow/sample_files/base-mechvent-hrv.xml | 8 ++ .../sample_files/base-mechvent-multiple.xml | 8 ++ .../sample_files/base-mechvent-supply.xml | 8 ++ .../base-mechvent-whole-house-fan.xml | 8 ++ .../base-misc-additional-properties.xml | 8 ++ ...-bills-battery-scheduled-detailed-only.xml | 8 ++ .../base-misc-bills-detailed-only.xml | 8 ++ .../base-misc-bills-pv-detailed-only.xml | 8 ++ .../sample_files/base-misc-bills-pv-mixed.xml | 8 ++ workflow/sample_files/base-misc-bills-pv.xml | 8 ++ workflow/sample_files/base-misc-bills.xml | 8 ++ workflow/sample_files/base-misc-defaults.xml | 8 ++ workflow/sample_files/base-misc-emissions.xml | 8 ++ ...base-misc-generators-battery-scheduled.xml | 8 ++ .../base-misc-generators-battery.xml | 8 ++ .../sample_files/base-misc-generators.xml | 8 ++ .../base-misc-ground-conductivity.xml | 8 ++ .../base-misc-loads-large-uncommon.xml | 8 ++ .../base-misc-loads-large-uncommon2.xml | 8 ++ .../sample_files/base-misc-loads-none.xml | 8 ++ .../base-misc-neighbor-shading.xml | 8 ++ .../base-misc-shielding-of-home.xml | 8 ++ .../base-misc-unit-multiplier.xml | 8 ++ .../base-misc-usage-multiplier.xml | 8 ++ workflow/sample_files/base-pv-battery-ah.xml | 8 ++ .../sample_files/base-pv-battery-garage.xml | 16 ++++ .../base-pv-battery-round-trip-efficiency.xml | 8 ++ .../base-pv-battery-scheduled.xml | 8 ++ workflow/sample_files/base-pv-battery.xml | 8 ++ .../base-pv-generators-battery-scheduled.xml | 8 ++ .../base-pv-generators-battery.xml | 8 ++ workflow/sample_files/base-pv-generators.xml | 8 ++ workflow/sample_files/base-pv.xml | 8 ++ .../base-residents-0-runperiod-1-month.xml | 8 ++ workflow/sample_files/base-residents-0.xml | 8 ++ ...-residents-1-misc-loads-large-uncommon.xml | 8 ++ ...residents-1-misc-loads-large-uncommon2.xml | 8 ++ workflow/sample_files/base-residents-1.xml | 8 ++ workflow/sample_files/base-residents-5.xml | 8 ++ .../base-schedules-detailed-all-10-mins.xml | 8 ++ ...-detailed-mixed-timesteps-power-outage.xml | 8 ++ ...ase-schedules-detailed-mixed-timesteps.xml | 8 ++ ...-detailed-occupancy-stochastic-10-mins.xml | 8 ++ ...iled-occupancy-stochastic-power-outage.xml | 8 ++ ...-detailed-occupancy-stochastic-vacancy.xml | 8 ++ ...chedules-detailed-occupancy-stochastic.xml | 8 ++ ...les-detailed-setpoints-daily-schedules.xml | 8 ++ ...ules-detailed-setpoints-daily-setbacks.xml | 8 ++ .../base-schedules-detailed-setpoints.xml | 8 ++ .../base-schedules-simple-power-outage.xml | 8 ++ .../base-schedules-simple-vacancy.xml | 8 ++ .../sample_files/base-schedules-simple.xml | 8 ++ .../base-simcontrol-calendar-year-custom.xml | 8 ++ ...base-simcontrol-daylight-saving-custom.xml | 8 ++ ...se-simcontrol-daylight-saving-disabled.xml | 8 ++ .../base-simcontrol-runperiod-1-month.xml | 8 ++ ...rol-temperature-capacitance-multiplier.xml | 8 ++ ...p-10-mins-occupancy-stochastic-10-mins.xml | 8 ++ ...p-10-mins-occupancy-stochastic-60-mins.xml | 8 ++ .../base-simcontrol-timestep-10-mins.xml | 8 ++ .../base-simcontrol-timestep-30-mins.xml | 8 ++ .../base-zones-spaces-multiple.xml | 24 +++++ workflow/sample_files/base-zones-spaces.xml | 24 +++++ workflow/sample_files/base.xml | 8 ++ .../tests/ACCA_Examples/Bell_Residence.xml | 40 ++++++++ .../ACCA_Examples/Bob_Ross_Residence.xml | 32 +++++++ .../tests/ACCA_Examples/Long_Residence.xml | 12 +++ .../tests/ACCA_Examples/Smith_Residence.xml | 16 ++++ .../tests/ACCA_Examples/Vatilo_Residence.xml | 8 ++ .../tests/ACCA_Examples/Victor_Residence.xml | 4 + .../tests/ACCA_Examples/Walker_Residence.xml | 36 +++++++ workflow/tests/ASHRAE_Standard_140/L302XC.xml | 93 ++++++++++++++----- workflow/tests/ASHRAE_Standard_140/L304XC.xml | 8 ++ workflow/tests/ASHRAE_Standard_140/L322XC.xml | 8 ++ workflow/tests/ASHRAE_Standard_140/L324XC.xml | 8 ++ workflow/tests/HERS_DSE/HVAC3a.xml | 8 ++ workflow/tests/HERS_DSE/HVAC3b.xml | 8 ++ workflow/tests/HERS_DSE/HVAC3c.xml | 8 ++ workflow/tests/HERS_DSE/HVAC3d.xml | 8 ++ 444 files changed, 3701 insertions(+), 44 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index f0521a5303..0aabde7e59 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 20c9c649-c0ec-4c58-b152-3eb8091d7ef3 - 2024-06-25T19:18:44Z + 0f4632bc-ff70-41e4-b5ce-698fdaf78136 + 2024-06-25T20:48:21Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -345,7 +345,7 @@ hpxml.rb rb resource - 45A3D58E + 1A589425 hpxml_defaults.rb @@ -357,7 +357,7 @@ hpxml_schema/HPXML.xsd xsd resource - 08932B54 + 13081B28 hpxml_schema/README.md @@ -369,7 +369,7 @@ hpxml_schematron/EPvalidator.xml xml resource - 87AF15DE + 314AFFBE hpxml_schematron/iso-schematron.xsd diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index be6119378f..6a0731b3bf 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -4246,7 +4246,7 @@ def from_doc(slab) @thickness = XMLHelper.get_value(slab, 'Thickness', :float) @exposed_perimeter = XMLHelper.get_value(slab, 'ExposedPerimeter', :float) @depth_below_grade = XMLHelper.get_value(slab, 'DepthBelowGrade', :float) - @perimeter_insulation = XMLHelper.get_element(slab, 'PerimeterInsulation') + perimeter_insulation = XMLHelper.get_element(slab, 'PerimeterInsulation') if not perimeter_insulation.nil? @perimeter_insulation_id = HPXML::get_id(perimeter_insulation) @perimeter_insulation_material = XMLHelper.get_child_name(perimeter_insulation, 'Layer/InsulationMaterial') @@ -4258,7 +4258,7 @@ def from_doc(slab) @perimeter_insulation_depth = XMLHelper.get_value(perimeter_insulation, 'Layer/InsulationDepth', :float) end - @exterior_horizontal_insulation = XMLHelper.get_element(slab, 'ExteriorHorizontalInsulation') + exterior_horizontal_insulation = XMLHelper.get_element(slab, 'ExteriorHorizontalInsulation') if not exterior_horizontal_insulation.nil? @exterior_horizontal_insulation_id = HPXML::get_id(exterior_horizontal_insulation) @exterior_horizontal_insulation_material = XMLHelper.get_child_name(exterior_horizontal_insulation, 'Layer/InsulationMaterial') @@ -4271,7 +4271,7 @@ def from_doc(slab) @exterior_horizontal_insulation_depth_below_grade = XMLHelper.get_value(exterior_horizontal_insulation, 'Layer/InsulationDepthBelowGrade', :float) end - @under_slab_insulation = XMLHelper.get_element(slab, 'UnderSlabInsulation') + under_slab_insulation = XMLHelper.get_element(slab, 'UnderSlabInsulation') if not under_slab_insulation.nil? @under_slab_insulation_id = HPXML::get_id(under_slab_insulation) @under_slab_insulation_material = XMLHelper.get_child_name(under_slab_insulation, 'Layer/InsulationMaterial') diff --git a/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd b/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd index b5233273ac..1a852b48b7 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd +++ b/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd @@ -371,7 +371,7 @@ [ft] Width from stem wall outward of horizontal insulation - + diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 73f3de2ae2..1ec8f8e482 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -769,9 +769,9 @@ Expected 1 element(s) for xpath: PerimeterInsulation/Layer/NominalRValue Expected 1 element(s) for xpath: PerimeterInsulation/Layer/InsulationDepth - Expected 1 element(s) for xpath: PerimeterInsulation/Layer/NominalRValue - Expected 1 element(s) for xpath: PerimeterInsulation/Layer/InsulationWidth - Expected 1 element(s) for xpath: PerimeterInsulation/Layer/InsulationDepthBelowGrade + Expected 0 or 1 element(s) for xpath: ExteriorHorizontalInsulation/Layer/NominalRValue + Expected 0 or 1 element(s) for xpath: ExteriorHorizontalInsulation/Layer/InsulationWidth + Expected 0 or 1 element(s) for xpath: ExteriorHorizontalInsulation/Layer/InsulationDepthBelowGrade Expected 1 element(s) for xpath: UnderSlabInsulation/Layer/NominalRValue Expected 1 element(s) for xpath: UnderSlabInsulation/Layer/InsulationWidth | UnderSlabInsulation/Layer/InsulationSpansEntireSlab[text()="true"] diff --git a/tasks.rb b/tasks.rb index 7d4aa63e22..b319860033 100644 --- a/tasks.rb +++ b/tasks.rb @@ -505,6 +505,7 @@ def apply_hpxml_modification_sample_files(hpxml_path, hpxml) if bg_surface.is_a? HPXML::Slab new_bg_surface.perimeter_insulation_id = "#{bg_surface.perimeter_insulation_id}#{bg_space.id}" new_bg_surface.under_slab_insulation_id = "#{bg_surface.under_slab_insulation_id}#{bg_space.id}" + new_bg_surface.exterior_horizontal_insulation_id = "#{bg_surface.exterior_horizontal_insulation_id}#{bg_space.id}" else new_bg_surface.insulation_id = "#{bg_space.id}#{bg_surface.insulation_id}" end diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index 7ea7920733..ee00bafc17 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -1837,7 +1837,7 @@ "misc_plug_loads_other_annual_kwh": 1228.5 }, "sample_files/base-foundation-slab-exterior-horizontal-insulation.xml": { - "parent_hpxml": "sample_files/base.xml", + "parent_hpxml": "sample_files/base-foundation-slab.xml", "slab_exterior_horizontal_insulation_r": 5.4, "slab_exterior_horizontal_insulation_width": 2.5, "slab_exterior_horizontal_insulation_depth_below_grade": 1 diff --git a/workflow/real_homes/house001.xml b/workflow/real_homes/house001.xml index 9b90a61132..e09ab53b6c 100644 --- a/workflow/real_homes/house001.xml +++ b/workflow/real_homes/house001.xml @@ -226,6 +226,10 @@ 0.0 + + + + @@ -246,6 +250,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house002.xml b/workflow/real_homes/house002.xml index 22a92ddc38..1344de4e7e 100644 --- a/workflow/real_homes/house002.xml +++ b/workflow/real_homes/house002.xml @@ -195,6 +195,10 @@ 0.0 + + + + @@ -215,6 +219,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house003.xml b/workflow/real_homes/house003.xml index 8640c8fec0..323a8786a8 100644 --- a/workflow/real_homes/house003.xml +++ b/workflow/real_homes/house003.xml @@ -201,6 +201,10 @@ 0.0 + + + + @@ -221,6 +225,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house004.xml b/workflow/real_homes/house004.xml index 8d79be77c5..4437873906 100644 --- a/workflow/real_homes/house004.xml +++ b/workflow/real_homes/house004.xml @@ -201,6 +201,10 @@ 0.0 + + + + @@ -221,6 +225,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house005.xml b/workflow/real_homes/house005.xml index cbfe23cb13..08f628dcc2 100644 --- a/workflow/real_homes/house005.xml +++ b/workflow/real_homes/house005.xml @@ -207,6 +207,10 @@ 0.0 + + + + @@ -227,6 +231,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house006.xml b/workflow/real_homes/house006.xml index 8c52c09846..70cef9e374 100644 --- a/workflow/real_homes/house006.xml +++ b/workflow/real_homes/house006.xml @@ -272,6 +272,10 @@ 0.0 + + + + @@ -292,6 +296,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house007.xml b/workflow/real_homes/house007.xml index e324c01762..897c9fd6a5 100644 --- a/workflow/real_homes/house007.xml +++ b/workflow/real_homes/house007.xml @@ -278,6 +278,10 @@ 0.0 + + + + @@ -298,6 +302,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house008.xml b/workflow/real_homes/house008.xml index efdd3dce44..15b7856999 100644 --- a/workflow/real_homes/house008.xml +++ b/workflow/real_homes/house008.xml @@ -332,6 +332,10 @@ 3.5 + + + + @@ -352,6 +356,10 @@ 0.0 + + + + @@ -372,6 +380,10 @@ 0.0 + + + + @@ -392,6 +404,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house009.xml b/workflow/real_homes/house009.xml index b39c7339f8..d9e8dc62dd 100644 --- a/workflow/real_homes/house009.xml +++ b/workflow/real_homes/house009.xml @@ -307,6 +307,10 @@ 0.0 + + + + @@ -327,6 +331,10 @@ 0.0 + + + + @@ -347,6 +355,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house010.xml b/workflow/real_homes/house010.xml index 4e2c159885..b288cfce89 100644 --- a/workflow/real_homes/house010.xml +++ b/workflow/real_homes/house010.xml @@ -314,6 +314,10 @@ 0.5 + + + + @@ -334,6 +338,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house011.xml b/workflow/real_homes/house011.xml index a08f1343bb..3797f086fb 100644 --- a/workflow/real_homes/house011.xml +++ b/workflow/real_homes/house011.xml @@ -171,6 +171,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house012.xml b/workflow/real_homes/house012.xml index dbee618efd..76b9364a5f 100644 --- a/workflow/real_homes/house012.xml +++ b/workflow/real_homes/house012.xml @@ -171,6 +171,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house013.xml b/workflow/real_homes/house013.xml index 4468345448..e483c023e0 100644 --- a/workflow/real_homes/house013.xml +++ b/workflow/real_homes/house013.xml @@ -171,6 +171,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house014.xml b/workflow/real_homes/house014.xml index 09ee446b2b..96e993cd78 100644 --- a/workflow/real_homes/house014.xml +++ b/workflow/real_homes/house014.xml @@ -171,6 +171,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house015.xml b/workflow/real_homes/house015.xml index 4468345448..e483c023e0 100644 --- a/workflow/real_homes/house015.xml +++ b/workflow/real_homes/house015.xml @@ -171,6 +171,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house016.xml b/workflow/real_homes/house016.xml index 53729ff5bb..d535080d71 100644 --- a/workflow/real_homes/house016.xml +++ b/workflow/real_homes/house016.xml @@ -227,6 +227,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house017.xml b/workflow/real_homes/house017.xml index 0917acbba7..9aafe836a2 100644 --- a/workflow/real_homes/house017.xml +++ b/workflow/real_homes/house017.xml @@ -247,6 +247,10 @@ 0.0 + + + + @@ -267,6 +271,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house018.xml b/workflow/real_homes/house018.xml index 6a5d8f7e43..9f51a0eaca 100644 --- a/workflow/real_homes/house018.xml +++ b/workflow/real_homes/house018.xml @@ -177,6 +177,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house019.xml b/workflow/real_homes/house019.xml index 7ea052532f..bcee3d78ad 100644 --- a/workflow/real_homes/house019.xml +++ b/workflow/real_homes/house019.xml @@ -176,6 +176,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house020.xml b/workflow/real_homes/house020.xml index d6a51c470b..1165f8cb73 100644 --- a/workflow/real_homes/house020.xml +++ b/workflow/real_homes/house020.xml @@ -210,6 +210,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house021.xml b/workflow/real_homes/house021.xml index c2bd021d22..1ece18d8d1 100644 --- a/workflow/real_homes/house021.xml +++ b/workflow/real_homes/house021.xml @@ -254,6 +254,10 @@ 0.0 + + + + @@ -274,6 +278,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house022.xml b/workflow/real_homes/house022.xml index b19382288d..80afef535f 100644 --- a/workflow/real_homes/house022.xml +++ b/workflow/real_homes/house022.xml @@ -240,6 +240,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house023.xml b/workflow/real_homes/house023.xml index 25f33785c1..a7508435e9 100644 --- a/workflow/real_homes/house023.xml +++ b/workflow/real_homes/house023.xml @@ -243,6 +243,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house024.xml b/workflow/real_homes/house024.xml index 784366c61f..5ef564d861 100644 --- a/workflow/real_homes/house024.xml +++ b/workflow/real_homes/house024.xml @@ -289,6 +289,10 @@ 0.0 + + + + @@ -309,6 +313,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house025.xml b/workflow/real_homes/house025.xml index 5dacc39088..18d8904737 100644 --- a/workflow/real_homes/house025.xml +++ b/workflow/real_homes/house025.xml @@ -177,6 +177,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house026.xml b/workflow/real_homes/house026.xml index 4a1f5d57c3..ca1788543b 100644 --- a/workflow/real_homes/house026.xml +++ b/workflow/real_homes/house026.xml @@ -358,6 +358,10 @@ 0.0 + + + + @@ -378,6 +382,10 @@ 0.0 + + + + @@ -398,6 +406,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house027.xml b/workflow/real_homes/house027.xml index 3017c525e8..25a9b8de46 100644 --- a/workflow/real_homes/house027.xml +++ b/workflow/real_homes/house027.xml @@ -274,6 +274,10 @@ 0.0 + + + + @@ -294,6 +298,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house028.xml b/workflow/real_homes/house028.xml index 4027766062..98006d7419 100644 --- a/workflow/real_homes/house028.xml +++ b/workflow/real_homes/house028.xml @@ -270,6 +270,10 @@ 4.0 + + + + @@ -290,6 +294,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house029.xml b/workflow/real_homes/house029.xml index 12ad215dfb..59a59e9368 100644 --- a/workflow/real_homes/house029.xml +++ b/workflow/real_homes/house029.xml @@ -327,6 +327,10 @@ 0.0 + + + + @@ -347,6 +351,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house030.xml b/workflow/real_homes/house030.xml index 2fb5112448..c9a7312c84 100644 --- a/workflow/real_homes/house030.xml +++ b/workflow/real_homes/house030.xml @@ -290,6 +290,10 @@ 0.0 + + + + @@ -310,6 +314,10 @@ 0.0 + + + + @@ -330,6 +338,10 @@ 4.0 + + + + @@ -350,6 +362,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house031.xml b/workflow/real_homes/house031.xml index 1912c8ba81..fc6a42bcab 100644 --- a/workflow/real_homes/house031.xml +++ b/workflow/real_homes/house031.xml @@ -201,6 +201,10 @@ 0.0 + + + + @@ -221,6 +225,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house032.xml b/workflow/real_homes/house032.xml index 8a468e6592..cc1630142c 100644 --- a/workflow/real_homes/house032.xml +++ b/workflow/real_homes/house032.xml @@ -176,6 +176,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house033.xml b/workflow/real_homes/house033.xml index 9ba9064dd2..4fe49bc34c 100644 --- a/workflow/real_homes/house033.xml +++ b/workflow/real_homes/house033.xml @@ -190,6 +190,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house034.xml b/workflow/real_homes/house034.xml index d1c4d7414d..3483c498fa 100644 --- a/workflow/real_homes/house034.xml +++ b/workflow/real_homes/house034.xml @@ -248,6 +248,10 @@ 0.0 + + + + @@ -268,6 +272,10 @@ 0.0 + + + + @@ -288,6 +296,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house035.xml b/workflow/real_homes/house035.xml index 3de5e04785..055318b53b 100644 --- a/workflow/real_homes/house035.xml +++ b/workflow/real_homes/house035.xml @@ -209,6 +209,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house036.xml b/workflow/real_homes/house036.xml index 87673dbd83..ee7bbeec45 100644 --- a/workflow/real_homes/house036.xml +++ b/workflow/real_homes/house036.xml @@ -208,6 +208,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house037.xml b/workflow/real_homes/house037.xml index 4037079d98..743069a3c0 100644 --- a/workflow/real_homes/house037.xml +++ b/workflow/real_homes/house037.xml @@ -226,6 +226,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house038.xml b/workflow/real_homes/house038.xml index f38d51ec5c..7b840f0a96 100644 --- a/workflow/real_homes/house038.xml +++ b/workflow/real_homes/house038.xml @@ -201,6 +201,10 @@ 0.0 + + + + @@ -221,6 +225,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house039.xml b/workflow/real_homes/house039.xml index 4400dde8b9..a07e9a3e1d 100644 --- a/workflow/real_homes/house039.xml +++ b/workflow/real_homes/house039.xml @@ -216,6 +216,10 @@ 0.0 + + + + @@ -236,6 +240,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house040.xml b/workflow/real_homes/house040.xml index 14fd2b895c..4385106552 100644 --- a/workflow/real_homes/house040.xml +++ b/workflow/real_homes/house040.xml @@ -230,6 +230,10 @@ 0.0 + + + + @@ -250,6 +254,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house041.xml b/workflow/real_homes/house041.xml index 43d9f32763..2657a6b0e1 100644 --- a/workflow/real_homes/house041.xml +++ b/workflow/real_homes/house041.xml @@ -339,6 +339,10 @@ 0.0 + + + + @@ -359,6 +363,10 @@ 0.0 + + + + @@ -379,6 +387,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house042.xml b/workflow/real_homes/house042.xml index 10cb6d6043..c97fb58f82 100644 --- a/workflow/real_homes/house042.xml +++ b/workflow/real_homes/house042.xml @@ -328,6 +328,10 @@ 0.0 + + + + @@ -348,6 +352,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house043.xml b/workflow/real_homes/house043.xml index d6af4ed907..e3169e5ac3 100644 --- a/workflow/real_homes/house043.xml +++ b/workflow/real_homes/house043.xml @@ -292,6 +292,10 @@ 0.0 + + + + @@ -312,6 +316,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house044.xml b/workflow/real_homes/house044.xml index 6ed2ba9923..cfbb9a87f8 100644 --- a/workflow/real_homes/house044.xml +++ b/workflow/real_homes/house044.xml @@ -328,6 +328,10 @@ 1.0 + + + + @@ -348,6 +352,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house045.xml b/workflow/real_homes/house045.xml index 210fa710f3..6c34f87396 100644 --- a/workflow/real_homes/house045.xml +++ b/workflow/real_homes/house045.xml @@ -319,6 +319,10 @@ 0.0 + + + + @@ -339,6 +343,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house047.xml b/workflow/real_homes/house047.xml index 113b76d1a5..d310a4e287 100644 --- a/workflow/real_homes/house047.xml +++ b/workflow/real_homes/house047.xml @@ -147,6 +147,10 @@ 0.7 + + + + diff --git a/workflow/real_homes/house048.xml b/workflow/real_homes/house048.xml index b8d5684bb5..18f117cf00 100644 --- a/workflow/real_homes/house048.xml +++ b/workflow/real_homes/house048.xml @@ -307,6 +307,10 @@ 0.0 + + + + @@ -332,6 +336,10 @@ 0.0 + + + + diff --git a/workflow/real_homes/house049.xml b/workflow/real_homes/house049.xml index 44d9fa39c4..c34a56959c 100644 --- a/workflow/real_homes/house049.xml +++ b/workflow/real_homes/house049.xml @@ -191,6 +191,10 @@ 0.0 + + + + @@ -216,6 +220,10 @@ 2.0 + + + + diff --git a/workflow/real_homes/house050.xml b/workflow/real_homes/house050.xml index c0df48e74b..f6ac717d16 100644 --- a/workflow/real_homes/house050.xml +++ b/workflow/real_homes/house050.xml @@ -231,6 +231,10 @@ 0.0 + + + + @@ -256,6 +260,10 @@ 0.0 + + + + diff --git a/workflow/sample_files/base-appliances-coal.xml b/workflow/sample_files/base-appliances-coal.xml index f6ed71610a..c27f79300e 100644 --- a/workflow/sample_files/base-appliances-coal.xml +++ b/workflow/sample_files/base-appliances-coal.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml b/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml index 34fc9d3328..525a4bb253 100644 --- a/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml +++ b/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml @@ -186,6 +186,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml b/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml index 520b3f0045..90a4fd35f6 100644 --- a/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml +++ b/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml @@ -186,6 +186,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-appliances-dehumidifier-multiple.xml b/workflow/sample_files/base-appliances-dehumidifier-multiple.xml index 1141d472ab..db77d6cc5e 100644 --- a/workflow/sample_files/base-appliances-dehumidifier-multiple.xml +++ b/workflow/sample_files/base-appliances-dehumidifier-multiple.xml @@ -186,6 +186,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-appliances-dehumidifier.xml b/workflow/sample_files/base-appliances-dehumidifier.xml index 1dfe026b20..e13e8fb507 100644 --- a/workflow/sample_files/base-appliances-dehumidifier.xml +++ b/workflow/sample_files/base-appliances-dehumidifier.xml @@ -186,6 +186,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-appliances-freezer-temperature-dependent-schedule.xml b/workflow/sample_files/base-appliances-freezer-temperature-dependent-schedule.xml index 339cb533be..515c853f55 100644 --- a/workflow/sample_files/base-appliances-freezer-temperature-dependent-schedule.xml +++ b/workflow/sample_files/base-appliances-freezer-temperature-dependent-schedule.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-appliances-gas.xml b/workflow/sample_files/base-appliances-gas.xml index 5234c47f84..669a9d92fc 100644 --- a/workflow/sample_files/base-appliances-gas.xml +++ b/workflow/sample_files/base-appliances-gas.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-appliances-modified.xml b/workflow/sample_files/base-appliances-modified.xml index 69441baa17..9279b5fc97 100644 --- a/workflow/sample_files/base-appliances-modified.xml +++ b/workflow/sample_files/base-appliances-modified.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-appliances-none.xml b/workflow/sample_files/base-appliances-none.xml index 9fcaedb1de..9378e912d9 100644 --- a/workflow/sample_files/base-appliances-none.xml +++ b/workflow/sample_files/base-appliances-none.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-appliances-oil.xml b/workflow/sample_files/base-appliances-oil.xml index 8115dc874b..ea27bbcd22 100644 --- a/workflow/sample_files/base-appliances-oil.xml +++ b/workflow/sample_files/base-appliances-oil.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-appliances-propane.xml b/workflow/sample_files/base-appliances-propane.xml index 1277d4908d..fb8e8c5967 100644 --- a/workflow/sample_files/base-appliances-propane.xml +++ b/workflow/sample_files/base-appliances-propane.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-appliances-refrigerator-temperature-dependent-schedule.xml b/workflow/sample_files/base-appliances-refrigerator-temperature-dependent-schedule.xml index d3eff0e9a1..6ef3005849 100644 --- a/workflow/sample_files/base-appliances-refrigerator-temperature-dependent-schedule.xml +++ b/workflow/sample_files/base-appliances-refrigerator-temperature-dependent-schedule.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-appliances-wood.xml b/workflow/sample_files/base-appliances-wood.xml index 4cd6c90d04..0c4f9cc85b 100644 --- a/workflow/sample_files/base-appliances-wood.xml +++ b/workflow/sample_files/base-appliances-wood.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-atticroof-cathedral.xml b/workflow/sample_files/base-atticroof-cathedral.xml index 898d621e7b..737f43caa5 100644 --- a/workflow/sample_files/base-atticroof-cathedral.xml +++ b/workflow/sample_files/base-atticroof-cathedral.xml @@ -194,6 +194,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-atticroof-conditioned.xml b/workflow/sample_files/base-atticroof-conditioned.xml index 82c43dd9ce..30ec4b6b79 100644 --- a/workflow/sample_files/base-atticroof-conditioned.xml +++ b/workflow/sample_files/base-atticroof-conditioned.xml @@ -293,6 +293,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-atticroof-flat.xml b/workflow/sample_files/base-atticroof-flat.xml index 369111233e..ed486bbec8 100644 --- a/workflow/sample_files/base-atticroof-flat.xml +++ b/workflow/sample_files/base-atticroof-flat.xml @@ -194,6 +194,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-atticroof-radiant-barrier-ceiling.xml b/workflow/sample_files/base-atticroof-radiant-barrier-ceiling.xml index e5833d19ea..fe0b18952e 100644 --- a/workflow/sample_files/base-atticroof-radiant-barrier-ceiling.xml +++ b/workflow/sample_files/base-atticroof-radiant-barrier-ceiling.xml @@ -188,6 +188,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-atticroof-radiant-barrier.xml b/workflow/sample_files/base-atticroof-radiant-barrier.xml index a8177d212c..10b4f7f612 100644 --- a/workflow/sample_files/base-atticroof-radiant-barrier.xml +++ b/workflow/sample_files/base-atticroof-radiant-barrier.xml @@ -190,6 +190,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml b/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml index 15d8bcd67e..4312dc748c 100644 --- a/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml +++ b/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-atticroof-vented.xml b/workflow/sample_files/base-atticroof-vented.xml index 19f084788e..9563991116 100644 --- a/workflow/sample_files/base-atticroof-vented.xml +++ b/workflow/sample_files/base-atticroof-vented.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-battery-scheduled.xml b/workflow/sample_files/base-battery-scheduled.xml index 74bb1605f8..f0144f5300 100644 --- a/workflow/sample_files/base-battery-scheduled.xml +++ b/workflow/sample_files/base-battery-scheduled.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-battery.xml b/workflow/sample_files/base-battery.xml index ce9bc48b35..65cfa8bfcf 100644 --- a/workflow/sample_files/base-battery.xml +++ b/workflow/sample_files/base-battery.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-bldgtype-mf-whole-building.xml b/workflow/sample_files/base-bldgtype-mf-whole-building.xml index a5397b8e5e..d4ccb578ca 100644 --- a/workflow/sample_files/base-bldgtype-mf-whole-building.xml +++ b/workflow/sample_files/base-bldgtype-mf-whole-building.xml @@ -269,6 +269,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + @@ -772,6 +780,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-bldgtype-sfa-unit-2stories.xml b/workflow/sample_files/base-bldgtype-sfa-unit-2stories.xml index 588cd11a27..5aa6503eae 100644 --- a/workflow/sample_files/base-bldgtype-sfa-unit-2stories.xml +++ b/workflow/sample_files/base-bldgtype-sfa-unit-2stories.xml @@ -305,6 +305,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-bldgtype-sfa-unit-atticroof-cathedral.xml b/workflow/sample_files/base-bldgtype-sfa-unit-atticroof-cathedral.xml index c209944118..63088ebeea 100644 --- a/workflow/sample_files/base-bldgtype-sfa-unit-atticroof-cathedral.xml +++ b/workflow/sample_files/base-bldgtype-sfa-unit-atticroof-cathedral.xml @@ -253,6 +253,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-bldgtype-sfa-unit-infil-compartmentalization-test.xml b/workflow/sample_files/base-bldgtype-sfa-unit-infil-compartmentalization-test.xml index c8316acf41..bea8b78c7a 100644 --- a/workflow/sample_files/base-bldgtype-sfa-unit-infil-compartmentalization-test.xml +++ b/workflow/sample_files/base-bldgtype-sfa-unit-infil-compartmentalization-test.xml @@ -305,6 +305,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-bldgtype-sfa-unit.xml b/workflow/sample_files/base-bldgtype-sfa-unit.xml index 7e9375da8b..617bd2a69c 100644 --- a/workflow/sample_files/base-bldgtype-sfa-unit.xml +++ b/workflow/sample_files/base-bldgtype-sfa-unit.xml @@ -305,6 +305,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-combi-tankless-outside.xml b/workflow/sample_files/base-dhw-combi-tankless-outside.xml index a4e43a2da3..c0ce5454b3 100644 --- a/workflow/sample_files/base-dhw-combi-tankless-outside.xml +++ b/workflow/sample_files/base-dhw-combi-tankless-outside.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-combi-tankless.xml b/workflow/sample_files/base-dhw-combi-tankless.xml index 0b00b741c9..4b31464eeb 100644 --- a/workflow/sample_files/base-dhw-combi-tankless.xml +++ b/workflow/sample_files/base-dhw-combi-tankless.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-desuperheater-2-speed.xml b/workflow/sample_files/base-dhw-desuperheater-2-speed.xml index 78cee55f10..fafc688279 100644 --- a/workflow/sample_files/base-dhw-desuperheater-2-speed.xml +++ b/workflow/sample_files/base-dhw-desuperheater-2-speed.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-desuperheater-gshp.xml b/workflow/sample_files/base-dhw-desuperheater-gshp.xml index 2ce2c7b6e2..d0d72bdbc5 100644 --- a/workflow/sample_files/base-dhw-desuperheater-gshp.xml +++ b/workflow/sample_files/base-dhw-desuperheater-gshp.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-desuperheater-hpwh.xml b/workflow/sample_files/base-dhw-desuperheater-hpwh.xml index ebe4de80cb..3d4f7d27e8 100644 --- a/workflow/sample_files/base-dhw-desuperheater-hpwh.xml +++ b/workflow/sample_files/base-dhw-desuperheater-hpwh.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-desuperheater-tankless.xml b/workflow/sample_files/base-dhw-desuperheater-tankless.xml index 2d79b5c35a..929344263a 100644 --- a/workflow/sample_files/base-dhw-desuperheater-tankless.xml +++ b/workflow/sample_files/base-dhw-desuperheater-tankless.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-desuperheater-var-speed.xml b/workflow/sample_files/base-dhw-desuperheater-var-speed.xml index 4a461090d0..94dac994a5 100644 --- a/workflow/sample_files/base-dhw-desuperheater-var-speed.xml +++ b/workflow/sample_files/base-dhw-desuperheater-var-speed.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-desuperheater.xml b/workflow/sample_files/base-dhw-desuperheater.xml index a76998ca7b..4a1c545804 100644 --- a/workflow/sample_files/base-dhw-desuperheater.xml +++ b/workflow/sample_files/base-dhw-desuperheater.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-dwhr.xml b/workflow/sample_files/base-dhw-dwhr.xml index 09d4a45b40..bcbdb85fec 100644 --- a/workflow/sample_files/base-dhw-dwhr.xml +++ b/workflow/sample_files/base-dhw-dwhr.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml b/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml index fd35a4a0be..efc30c6719 100644 --- a/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml +++ b/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-indirect-dse.xml b/workflow/sample_files/base-dhw-indirect-dse.xml index 5c23629adb..dd17d89cec 100644 --- a/workflow/sample_files/base-dhw-indirect-dse.xml +++ b/workflow/sample_files/base-dhw-indirect-dse.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-indirect-outside.xml b/workflow/sample_files/base-dhw-indirect-outside.xml index 8b8de6fdcf..59db13161a 100644 --- a/workflow/sample_files/base-dhw-indirect-outside.xml +++ b/workflow/sample_files/base-dhw-indirect-outside.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-indirect-standbyloss.xml b/workflow/sample_files/base-dhw-indirect-standbyloss.xml index 1373591d3e..54a5438f60 100644 --- a/workflow/sample_files/base-dhw-indirect-standbyloss.xml +++ b/workflow/sample_files/base-dhw-indirect-standbyloss.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml b/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml index a5384ac118..663a8914e8 100644 --- a/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml +++ b/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-indirect.xml b/workflow/sample_files/base-dhw-indirect.xml index 28ff927b8e..f9dab84e47 100644 --- a/workflow/sample_files/base-dhw-indirect.xml +++ b/workflow/sample_files/base-dhw-indirect.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-jacket-electric.xml b/workflow/sample_files/base-dhw-jacket-electric.xml index c9ad9a55cd..f4264ecf7c 100644 --- a/workflow/sample_files/base-dhw-jacket-electric.xml +++ b/workflow/sample_files/base-dhw-jacket-electric.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-jacket-gas.xml b/workflow/sample_files/base-dhw-jacket-gas.xml index 2658e49ff5..e9ad0d97f6 100644 --- a/workflow/sample_files/base-dhw-jacket-gas.xml +++ b/workflow/sample_files/base-dhw-jacket-gas.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-jacket-hpwh.xml b/workflow/sample_files/base-dhw-jacket-hpwh.xml index 1074377e2b..1e9e2656cd 100644 --- a/workflow/sample_files/base-dhw-jacket-hpwh.xml +++ b/workflow/sample_files/base-dhw-jacket-hpwh.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-jacket-indirect.xml b/workflow/sample_files/base-dhw-jacket-indirect.xml index 47541a363e..e9b8db17cd 100644 --- a/workflow/sample_files/base-dhw-jacket-indirect.xml +++ b/workflow/sample_files/base-dhw-jacket-indirect.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-low-flow-fixtures.xml b/workflow/sample_files/base-dhw-low-flow-fixtures.xml index 969407d78a..45a74debb5 100644 --- a/workflow/sample_files/base-dhw-low-flow-fixtures.xml +++ b/workflow/sample_files/base-dhw-low-flow-fixtures.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-multiple.xml b/workflow/sample_files/base-dhw-multiple.xml index 9d2440ba01..a31a5ba77e 100644 --- a/workflow/sample_files/base-dhw-multiple.xml +++ b/workflow/sample_files/base-dhw-multiple.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-none.xml b/workflow/sample_files/base-dhw-none.xml index 3e63f3076f..d25a4d93ab 100644 --- a/workflow/sample_files/base-dhw-none.xml +++ b/workflow/sample_files/base-dhw-none.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-recirc-demand-scheduled.xml b/workflow/sample_files/base-dhw-recirc-demand-scheduled.xml index 84ada0ecf4..6484ccbb46 100644 --- a/workflow/sample_files/base-dhw-recirc-demand-scheduled.xml +++ b/workflow/sample_files/base-dhw-recirc-demand-scheduled.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-recirc-demand.xml b/workflow/sample_files/base-dhw-recirc-demand.xml index 9e850a9b24..85b9970b2a 100644 --- a/workflow/sample_files/base-dhw-recirc-demand.xml +++ b/workflow/sample_files/base-dhw-recirc-demand.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-recirc-manual.xml b/workflow/sample_files/base-dhw-recirc-manual.xml index b606f99e93..5552f5f612 100644 --- a/workflow/sample_files/base-dhw-recirc-manual.xml +++ b/workflow/sample_files/base-dhw-recirc-manual.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-recirc-nocontrol.xml b/workflow/sample_files/base-dhw-recirc-nocontrol.xml index 1de36f1ae1..5bb8d5466a 100644 --- a/workflow/sample_files/base-dhw-recirc-nocontrol.xml +++ b/workflow/sample_files/base-dhw-recirc-nocontrol.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-recirc-temperature.xml b/workflow/sample_files/base-dhw-recirc-temperature.xml index b14e43b29f..f21e9668a2 100644 --- a/workflow/sample_files/base-dhw-recirc-temperature.xml +++ b/workflow/sample_files/base-dhw-recirc-temperature.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-recirc-timer.xml b/workflow/sample_files/base-dhw-recirc-timer.xml index 2a7ff4889a..2c61f8526d 100644 --- a/workflow/sample_files/base-dhw-recirc-timer.xml +++ b/workflow/sample_files/base-dhw-recirc-timer.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml b/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml index babc1b6cea..79814bfd26 100644 --- a/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml +++ b/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml b/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml index d670933d21..a166dad018 100644 --- a/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml +++ b/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-solar-direct-ics.xml b/workflow/sample_files/base-dhw-solar-direct-ics.xml index 94d37c6412..6a10399cba 100644 --- a/workflow/sample_files/base-dhw-solar-direct-ics.xml +++ b/workflow/sample_files/base-dhw-solar-direct-ics.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-solar-fraction.xml b/workflow/sample_files/base-dhw-solar-fraction.xml index b2432d2a57..d8b508c9ec 100644 --- a/workflow/sample_files/base-dhw-solar-fraction.xml +++ b/workflow/sample_files/base-dhw-solar-fraction.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml b/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml index 26b549730e..66aedda5c5 100644 --- a/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml +++ b/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml b/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml index c562d15b3b..f289b21000 100644 --- a/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml +++ b/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-tank-coal.xml b/workflow/sample_files/base-dhw-tank-coal.xml index 71d407e0e8..abb8d11233 100644 --- a/workflow/sample_files/base-dhw-tank-coal.xml +++ b/workflow/sample_files/base-dhw-tank-coal.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml b/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml index bc6d885bfe..e84f179140 100644 --- a/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml +++ b/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-tank-elec-uef.xml b/workflow/sample_files/base-dhw-tank-elec-uef.xml index 079ad823e5..2a99d57c6c 100644 --- a/workflow/sample_files/base-dhw-tank-elec-uef.xml +++ b/workflow/sample_files/base-dhw-tank-elec-uef.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-tank-gas-outside.xml b/workflow/sample_files/base-dhw-tank-gas-outside.xml index 9d14d3d8bf..5acc1e8cbe 100644 --- a/workflow/sample_files/base-dhw-tank-gas-outside.xml +++ b/workflow/sample_files/base-dhw-tank-gas-outside.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml b/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml index da581e24f1..dde092e055 100644 --- a/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml +++ b/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-tank-gas-uef.xml b/workflow/sample_files/base-dhw-tank-gas-uef.xml index 05979c0b28..52f0188aff 100644 --- a/workflow/sample_files/base-dhw-tank-gas-uef.xml +++ b/workflow/sample_files/base-dhw-tank-gas-uef.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-tank-gas.xml b/workflow/sample_files/base-dhw-tank-gas.xml index 3d9bbe7cda..9a91bb6ef9 100644 --- a/workflow/sample_files/base-dhw-tank-gas.xml +++ b/workflow/sample_files/base-dhw-tank-gas.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml b/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml index c430e8ae3d..b1abc92c5f 100644 --- a/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml +++ b/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml @@ -236,6 +236,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml b/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml index e8451736ea..3e0d071ec0 100644 --- a/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml +++ b/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml b/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml index 4f0667d295..62f1c1d03a 100644 --- a/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml +++ b/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml b/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml index 929df79151..94f61abfd9 100644 --- a/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml +++ b/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml b/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml index 66db65077e..d41584bdfe 100644 --- a/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml +++ b/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml b/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml index 3814f3422d..77a48fe8e0 100644 --- a/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml +++ b/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-tank-heat-pump.xml b/workflow/sample_files/base-dhw-tank-heat-pump.xml index 41fd9a0e94..92abb66c53 100644 --- a/workflow/sample_files/base-dhw-tank-heat-pump.xml +++ b/workflow/sample_files/base-dhw-tank-heat-pump.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml b/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml index a5c98aa1d8..657494bc89 100644 --- a/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml +++ b/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-tank-model-type-stratified.xml b/workflow/sample_files/base-dhw-tank-model-type-stratified.xml index 8c005568cb..d8a6c6aa30 100644 --- a/workflow/sample_files/base-dhw-tank-model-type-stratified.xml +++ b/workflow/sample_files/base-dhw-tank-model-type-stratified.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-tank-oil.xml b/workflow/sample_files/base-dhw-tank-oil.xml index e1a79857c4..12cc7c9667 100644 --- a/workflow/sample_files/base-dhw-tank-oil.xml +++ b/workflow/sample_files/base-dhw-tank-oil.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-tank-wood.xml b/workflow/sample_files/base-dhw-tank-wood.xml index 8de4d754f6..35255791b5 100644 --- a/workflow/sample_files/base-dhw-tank-wood.xml +++ b/workflow/sample_files/base-dhw-tank-wood.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml b/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml index 898f06e590..f37265e52d 100644 --- a/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml +++ b/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-tankless-electric-outside.xml b/workflow/sample_files/base-dhw-tankless-electric-outside.xml index fc2ca40e9f..079d58831e 100644 --- a/workflow/sample_files/base-dhw-tankless-electric-outside.xml +++ b/workflow/sample_files/base-dhw-tankless-electric-outside.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-tankless-electric-uef.xml b/workflow/sample_files/base-dhw-tankless-electric-uef.xml index cf93b27cfd..1873d70fc2 100644 --- a/workflow/sample_files/base-dhw-tankless-electric-uef.xml +++ b/workflow/sample_files/base-dhw-tankless-electric-uef.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-tankless-electric.xml b/workflow/sample_files/base-dhw-tankless-electric.xml index c4c55fbc2d..87bdfd6621 100644 --- a/workflow/sample_files/base-dhw-tankless-electric.xml +++ b/workflow/sample_files/base-dhw-tankless-electric.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-tankless-gas-uef.xml b/workflow/sample_files/base-dhw-tankless-gas-uef.xml index 912ea6c707..4483e5ae1e 100644 --- a/workflow/sample_files/base-dhw-tankless-gas-uef.xml +++ b/workflow/sample_files/base-dhw-tankless-gas-uef.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml b/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml index e92d799084..1a8b989694 100644 --- a/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml +++ b/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml b/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml index 45588944a0..6d3726dc15 100644 --- a/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml +++ b/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-tankless-gas.xml b/workflow/sample_files/base-dhw-tankless-gas.xml index 68ed6dc235..cb484a609f 100644 --- a/workflow/sample_files/base-dhw-tankless-gas.xml +++ b/workflow/sample_files/base-dhw-tankless-gas.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-dhw-tankless-propane.xml b/workflow/sample_files/base-dhw-tankless-propane.xml index 21ac87d84f..76c51b556d 100644 --- a/workflow/sample_files/base-dhw-tankless-propane.xml +++ b/workflow/sample_files/base-dhw-tankless-propane.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-2stories-garage.xml b/workflow/sample_files/base-enclosure-2stories-garage.xml index 651fba3ce7..b187e2c359 100644 --- a/workflow/sample_files/base-enclosure-2stories-garage.xml +++ b/workflow/sample_files/base-enclosure-2stories-garage.xml @@ -293,6 +293,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + @@ -318,6 +326,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-2stories.xml b/workflow/sample_files/base-enclosure-2stories.xml index e717df4327..c1b087b3e9 100644 --- a/workflow/sample_files/base-enclosure-2stories.xml +++ b/workflow/sample_files/base-enclosure-2stories.xml @@ -245,6 +245,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-beds-1.xml b/workflow/sample_files/base-enclosure-beds-1.xml index 957280d265..ea49c3bb71 100644 --- a/workflow/sample_files/base-enclosure-beds-1.xml +++ b/workflow/sample_files/base-enclosure-beds-1.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-beds-2.xml b/workflow/sample_files/base-enclosure-beds-2.xml index 9f35b06353..5989afaec5 100644 --- a/workflow/sample_files/base-enclosure-beds-2.xml +++ b/workflow/sample_files/base-enclosure-beds-2.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-beds-4.xml b/workflow/sample_files/base-enclosure-beds-4.xml index a85b44fc86..011d724106 100644 --- a/workflow/sample_files/base-enclosure-beds-4.xml +++ b/workflow/sample_files/base-enclosure-beds-4.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-beds-5.xml b/workflow/sample_files/base-enclosure-beds-5.xml index f226b42e48..e62e33e928 100644 --- a/workflow/sample_files/base-enclosure-beds-5.xml +++ b/workflow/sample_files/base-enclosure-beds-5.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-ceilingtypes.xml b/workflow/sample_files/base-enclosure-ceilingtypes.xml index bbf57fe1aa..43b46189b8 100644 --- a/workflow/sample_files/base-enclosure-ceilingtypes.xml +++ b/workflow/sample_files/base-enclosure-ceilingtypes.xml @@ -256,6 +256,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-garage.xml b/workflow/sample_files/base-enclosure-garage.xml index 42bde7314f..20dc0e688e 100644 --- a/workflow/sample_files/base-enclosure-garage.xml +++ b/workflow/sample_files/base-enclosure-garage.xml @@ -281,6 +281,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + @@ -306,6 +314,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml b/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml index 5c19c4ead4..bd415a25c1 100644 --- a/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml +++ b/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml b/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml index ba7bfd13d9..8d01d361a6 100644 --- a/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml +++ b/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-infil-cfm50.xml b/workflow/sample_files/base-enclosure-infil-cfm50.xml index 6512487d89..b420fd5499 100644 --- a/workflow/sample_files/base-enclosure-infil-cfm50.xml +++ b/workflow/sample_files/base-enclosure-infil-cfm50.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-infil-ela.xml b/workflow/sample_files/base-enclosure-infil-ela.xml index 41b08bbb6c..b02c98cf53 100644 --- a/workflow/sample_files/base-enclosure-infil-ela.xml +++ b/workflow/sample_files/base-enclosure-infil-ela.xml @@ -228,6 +228,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-infil-flue.xml b/workflow/sample_files/base-enclosure-infil-flue.xml index 8d085527ff..9dfbd55dd1 100644 --- a/workflow/sample_files/base-enclosure-infil-flue.xml +++ b/workflow/sample_files/base-enclosure-infil-flue.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-infil-natural-ach.xml b/workflow/sample_files/base-enclosure-infil-natural-ach.xml index 33ae952608..68b545095a 100644 --- a/workflow/sample_files/base-enclosure-infil-natural-ach.xml +++ b/workflow/sample_files/base-enclosure-infil-natural-ach.xml @@ -231,6 +231,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-infil-natural-cfm.xml b/workflow/sample_files/base-enclosure-infil-natural-cfm.xml index 56fe53929e..4d051e3d42 100644 --- a/workflow/sample_files/base-enclosure-infil-natural-cfm.xml +++ b/workflow/sample_files/base-enclosure-infil-natural-cfm.xml @@ -231,6 +231,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-orientations.xml b/workflow/sample_files/base-enclosure-orientations.xml index 27db939eb6..d0bed2c511 100644 --- a/workflow/sample_files/base-enclosure-orientations.xml +++ b/workflow/sample_files/base-enclosure-orientations.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-overhangs.xml b/workflow/sample_files/base-enclosure-overhangs.xml index b0d5b1344e..a3b9b648bb 100644 --- a/workflow/sample_files/base-enclosure-overhangs.xml +++ b/workflow/sample_files/base-enclosure-overhangs.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-rooftypes.xml b/workflow/sample_files/base-enclosure-rooftypes.xml index 4b7a9733b6..df4583776e 100644 --- a/workflow/sample_files/base-enclosure-rooftypes.xml +++ b/workflow/sample_files/base-enclosure-rooftypes.xml @@ -370,6 +370,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-skylights-cathedral.xml b/workflow/sample_files/base-enclosure-skylights-cathedral.xml index e4216f589c..0c672c3f89 100644 --- a/workflow/sample_files/base-enclosure-skylights-cathedral.xml +++ b/workflow/sample_files/base-enclosure-skylights-cathedral.xml @@ -196,6 +196,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-skylights-physical-properties.xml b/workflow/sample_files/base-enclosure-skylights-physical-properties.xml index 240f684aa7..5d57df0fda 100644 --- a/workflow/sample_files/base-enclosure-skylights-physical-properties.xml +++ b/workflow/sample_files/base-enclosure-skylights-physical-properties.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-skylights-shading.xml b/workflow/sample_files/base-enclosure-skylights-shading.xml index 1c7ced047e..bfeaf8d8f2 100644 --- a/workflow/sample_files/base-enclosure-skylights-shading.xml +++ b/workflow/sample_files/base-enclosure-skylights-shading.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-skylights-storms.xml b/workflow/sample_files/base-enclosure-skylights-storms.xml index 957dddd2c4..7c1a3c952e 100644 --- a/workflow/sample_files/base-enclosure-skylights-storms.xml +++ b/workflow/sample_files/base-enclosure-skylights-storms.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-skylights.xml b/workflow/sample_files/base-enclosure-skylights.xml index a1738e7b8d..0d9c25e3d9 100644 --- a/workflow/sample_files/base-enclosure-skylights.xml +++ b/workflow/sample_files/base-enclosure-skylights.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-split-level.xml b/workflow/sample_files/base-enclosure-split-level.xml index 3a91e495e1..7bbf061e53 100644 --- a/workflow/sample_files/base-enclosure-split-level.xml +++ b/workflow/sample_files/base-enclosure-split-level.xml @@ -186,6 +186,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-thermal-mass.xml b/workflow/sample_files/base-enclosure-thermal-mass.xml index 4182b2b4de..8c85ec4633 100644 --- a/workflow/sample_files/base-enclosure-thermal-mass.xml +++ b/workflow/sample_files/base-enclosure-thermal-mass.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-walltypes.xml b/workflow/sample_files/base-enclosure-walltypes.xml index 6d5f7544c2..be3ac8e2cb 100644 --- a/workflow/sample_files/base-enclosure-walltypes.xml +++ b/workflow/sample_files/base-enclosure-walltypes.xml @@ -558,6 +558,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml b/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml index 2f1505522f..6eaf75305f 100644 --- a/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml +++ b/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-windows-none.xml b/workflow/sample_files/base-enclosure-windows-none.xml index d88277b51a..0498702b6e 100644 --- a/workflow/sample_files/base-enclosure-windows-none.xml +++ b/workflow/sample_files/base-enclosure-windows-none.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-windows-physical-properties.xml b/workflow/sample_files/base-enclosure-windows-physical-properties.xml index 42fdede723..0caa4dafd0 100644 --- a/workflow/sample_files/base-enclosure-windows-physical-properties.xml +++ b/workflow/sample_files/base-enclosure-windows-physical-properties.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-windows-shading-seasons.xml b/workflow/sample_files/base-enclosure-windows-shading-seasons.xml index 314dde3d34..eb6436deac 100644 --- a/workflow/sample_files/base-enclosure-windows-shading-seasons.xml +++ b/workflow/sample_files/base-enclosure-windows-shading-seasons.xml @@ -240,6 +240,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-windows-shading.xml b/workflow/sample_files/base-enclosure-windows-shading.xml index 6473fd5688..666025eb67 100644 --- a/workflow/sample_files/base-enclosure-windows-shading.xml +++ b/workflow/sample_files/base-enclosure-windows-shading.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-enclosure-windows-storms.xml b/workflow/sample_files/base-enclosure-windows-storms.xml index 7f11d66b8a..42b2a950a0 100644 --- a/workflow/sample_files/base-enclosure-windows-storms.xml +++ b/workflow/sample_files/base-enclosure-windows-storms.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-foundation-basement-garage.xml b/workflow/sample_files/base-foundation-basement-garage.xml index 42aab74b43..c533d094a7 100644 --- a/workflow/sample_files/base-foundation-basement-garage.xml +++ b/workflow/sample_files/base-foundation-basement-garage.xml @@ -281,6 +281,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + @@ -306,6 +314,10 @@ 0.0 + + + + diff --git a/workflow/sample_files/base-foundation-complex.xml b/workflow/sample_files/base-foundation-complex.xml index 2b053bd907..93ae6fce33 100644 --- a/workflow/sample_files/base-foundation-complex.xml +++ b/workflow/sample_files/base-foundation-complex.xml @@ -307,6 +307,10 @@ 0.0 + + + + @@ -332,6 +336,10 @@ 1.0 + + + + diff --git a/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation-full.xml b/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation-full.xml index 9bf7de8d78..3008c7658f 100644 --- a/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation-full.xml +++ b/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation-full.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml b/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml index 34436c309f..947c1f4091 100644 --- a/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml +++ b/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml b/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml index 5c65fdaccc..530de4648d 100644 --- a/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml +++ b/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-foundation-conditioned-crawlspace.xml b/workflow/sample_files/base-foundation-conditioned-crawlspace.xml index 1f9dea4c50..cb35e29811 100644 --- a/workflow/sample_files/base-foundation-conditioned-crawlspace.xml +++ b/workflow/sample_files/base-foundation-conditioned-crawlspace.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-foundation-multiple.xml b/workflow/sample_files/base-foundation-multiple.xml index 851fd7a495..d6513e3f36 100644 --- a/workflow/sample_files/base-foundation-multiple.xml +++ b/workflow/sample_files/base-foundation-multiple.xml @@ -320,6 +320,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + @@ -345,6 +353,10 @@ 0.0 + + + + diff --git a/workflow/sample_files/base-foundation-slab-exterior-horizontal-insulation.xml b/workflow/sample_files/base-foundation-slab-exterior-horizontal-insulation.xml index d88113971e..9be0f079de 100644 --- a/workflow/sample_files/base-foundation-slab-exterior-horizontal-insulation.xml +++ b/workflow/sample_files/base-foundation-slab-exterior-horizontal-insulation.xml @@ -187,12 +187,12 @@ - - - 0.0 - 0.0 - 0.0 - + + + 5.4 + 2.5 + 1.0 + @@ -202,7 +202,6 @@ - 0.0 1.0 2.5 diff --git a/workflow/sample_files/base-foundation-slab.xml b/workflow/sample_files/base-foundation-slab.xml index 903f9e3c9d..f539b4376e 100644 --- a/workflow/sample_files/base-foundation-slab.xml +++ b/workflow/sample_files/base-foundation-slab.xml @@ -186,6 +186,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml b/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml index 04f866fc73..2bf59b6c58 100644 --- a/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml +++ b/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml @@ -245,6 +245,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml b/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml index 1610049244..d86369daf9 100644 --- a/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml +++ b/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml @@ -238,6 +238,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml b/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml index 5ede3aab2e..36619ebfc3 100644 --- a/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml +++ b/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml @@ -247,6 +247,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-foundation-unconditioned-basement.xml b/workflow/sample_files/base-foundation-unconditioned-basement.xml index e8848fa6e1..db72c585e2 100644 --- a/workflow/sample_files/base-foundation-unconditioned-basement.xml +++ b/workflow/sample_files/base-foundation-unconditioned-basement.xml @@ -246,6 +246,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-foundation-unvented-crawlspace.xml b/workflow/sample_files/base-foundation-unvented-crawlspace.xml index 3bb3e2fbce..1c2711cca2 100644 --- a/workflow/sample_files/base-foundation-unvented-crawlspace.xml +++ b/workflow/sample_files/base-foundation-unvented-crawlspace.xml @@ -248,6 +248,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-foundation-vented-crawlspace-above-grade.xml b/workflow/sample_files/base-foundation-vented-crawlspace-above-grade.xml index fb558e224f..9c1084f8bb 100644 --- a/workflow/sample_files/base-foundation-vented-crawlspace-above-grade.xml +++ b/workflow/sample_files/base-foundation-vented-crawlspace-above-grade.xml @@ -237,6 +237,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-foundation-vented-crawlspace.xml b/workflow/sample_files/base-foundation-vented-crawlspace.xml index 45b3b60ca9..75d49819a1 100644 --- a/workflow/sample_files/base-foundation-vented-crawlspace.xml +++ b/workflow/sample_files/base-foundation-vented-crawlspace.xml @@ -251,6 +251,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-foundation-walkout-basement.xml b/workflow/sample_files/base-foundation-walkout-basement.xml index b60f819a28..4700761f87 100644 --- a/workflow/sample_files/base-foundation-walkout-basement.xml +++ b/workflow/sample_files/base-foundation-walkout-basement.xml @@ -284,6 +284,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-advanced-defrost.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-advanced-defrost.xml index a722ff922b..f0f884c194 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-advanced-defrost.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-advanced-defrost.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml index a7ed9a16ec..cd3b7de147 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml index 3644a26885..899276333a 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml index 52e803dfd1..a365eb92ca 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml index a5da337603..49e580b344 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml index 97ecc65306..a53c073d84 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml index aa7eabaa03..f20e5c7551 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml index 1587283b76..cf61747ec8 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml index 589b0e6145..4e2de365b0 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-advanced-defrost.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-advanced-defrost.xml index f7f2949d16..377c15e70d 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-advanced-defrost.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-advanced-defrost.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml index ff367c4a1c..d2215fc784 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml @@ -238,6 +238,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-advanced-defrost.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-advanced-defrost.xml index daeb180fd6..4d22ccf0b6 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-advanced-defrost.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-advanced-defrost.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml index 52fa00a0a7..cab7099af5 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml index ffa543996a..1cb3e983d2 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml index 7f2c8ed4b7..f78a91e5a7 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml index 64298b058c..683a84af12 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml index fb7c46b0c1..96421fc2f4 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml index 6fa8d857ba..fe2299ca39 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml index fe19bd50d7..05af2db067 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml index 317806ca93..0d0259724a 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml index eab541e264..0a00e9d291 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml index 4b6d22ffce..b43b9d7189 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml index c5b02424ff..308f260aca 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml index 70f1151998..dec8dd63ef 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml index c82f1ffca6..6d9784d37b 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml index f7dd0c7ff4..aa8cfd58ec 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-autosize-sizing-controls.xml b/workflow/sample_files/base-hvac-autosize-sizing-controls.xml index 6cdd5c7b9a..e77e90393c 100644 --- a/workflow/sample_files/base-hvac-autosize-sizing-controls.xml +++ b/workflow/sample_files/base-hvac-autosize-sizing-controls.xml @@ -251,6 +251,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-autosize.xml b/workflow/sample_files/base-hvac-autosize.xml index 42ed55cfce..0c22716098 100644 --- a/workflow/sample_files/base-hvac-autosize.xml +++ b/workflow/sample_files/base-hvac-autosize.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-boiler-coal-only.xml b/workflow/sample_files/base-hvac-boiler-coal-only.xml index 4b9b9653ad..663c8cc9e4 100644 --- a/workflow/sample_files/base-hvac-boiler-coal-only.xml +++ b/workflow/sample_files/base-hvac-boiler-coal-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-boiler-elec-only.xml b/workflow/sample_files/base-hvac-boiler-elec-only.xml index 28fa78936e..51fe3df38a 100644 --- a/workflow/sample_files/base-hvac-boiler-elec-only.xml +++ b/workflow/sample_files/base-hvac-boiler-elec-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml b/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml index c90f9954b8..a6e27d8d63 100644 --- a/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml +++ b/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-boiler-gas-only-pilot.xml b/workflow/sample_files/base-hvac-boiler-gas-only-pilot.xml index 1642eb098e..b82ac38340 100644 --- a/workflow/sample_files/base-hvac-boiler-gas-only-pilot.xml +++ b/workflow/sample_files/base-hvac-boiler-gas-only-pilot.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-boiler-gas-only.xml b/workflow/sample_files/base-hvac-boiler-gas-only.xml index 11a9aed723..3008526018 100644 --- a/workflow/sample_files/base-hvac-boiler-gas-only.xml +++ b/workflow/sample_files/base-hvac-boiler-gas-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-boiler-oil-only.xml b/workflow/sample_files/base-hvac-boiler-oil-only.xml index 84b027514c..a8c4220eea 100644 --- a/workflow/sample_files/base-hvac-boiler-oil-only.xml +++ b/workflow/sample_files/base-hvac-boiler-oil-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-boiler-propane-only.xml b/workflow/sample_files/base-hvac-boiler-propane-only.xml index 6f042a0967..07e4230d9e 100644 --- a/workflow/sample_files/base-hvac-boiler-propane-only.xml +++ b/workflow/sample_files/base-hvac-boiler-propane-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-boiler-wood-only.xml b/workflow/sample_files/base-hvac-boiler-wood-only.xml index 17824f6125..c5cc88011d 100644 --- a/workflow/sample_files/base-hvac-boiler-wood-only.xml +++ b/workflow/sample_files/base-hvac-boiler-wood-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-central-ac-only-1-speed-autosize-factor.xml b/workflow/sample_files/base-hvac-central-ac-only-1-speed-autosize-factor.xml index b02bd7c193..93a35c9be6 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-1-speed-autosize-factor.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-1-speed-autosize-factor.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml b/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml index a3676fc479..6d491711cc 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml b/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml index 686cdf4bd2..8d0e50b642 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml b/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml index b92b426d7d..aa085cbe76 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml b/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml index 2bbe831221..867ad2d9d9 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml b/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml index df37397c0c..1ce74f1fa7 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml b/workflow/sample_files/base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml index 842a71dc82..836ca11b7b 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml b/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml index 5e04b079c8..3f15525cc2 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml b/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml index 8c4fd60e6e..5f4f803135 100644 --- a/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml +++ b/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-dse.xml b/workflow/sample_files/base-hvac-dse.xml index 3124b82caf..7557ae607a 100644 --- a/workflow/sample_files/base-hvac-dse.xml +++ b/workflow/sample_files/base-hvac-dse.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml index 920f84c410..c2e22fa6f3 100644 --- a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml +++ b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml index ab4571e570..6edc262c9b 100644 --- a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml +++ b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed-advanced-defrost.xml b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed-advanced-defrost.xml index 843ab7d2d9..4676ef3b38 100644 --- a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed-advanced-defrost.xml +++ b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed-advanced-defrost.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml index bbabdb0397..81107eb13b 100644 --- a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml +++ b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml index fd763be4a7..d3f4468d97 100644 --- a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml +++ b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml b/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml index e429c086e7..ece66b6770 100644 --- a/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml +++ b/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-ducts-area-fractions.xml b/workflow/sample_files/base-hvac-ducts-area-fractions.xml index b7fc201094..c900b51bab 100644 --- a/workflow/sample_files/base-hvac-ducts-area-fractions.xml +++ b/workflow/sample_files/base-hvac-ducts-area-fractions.xml @@ -245,6 +245,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-ducts-area-multipliers.xml b/workflow/sample_files/base-hvac-ducts-area-multipliers.xml index c68b27c6a3..a5d7f5e3c0 100644 --- a/workflow/sample_files/base-hvac-ducts-area-multipliers.xml +++ b/workflow/sample_files/base-hvac-ducts-area-multipliers.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-ducts-buried.xml b/workflow/sample_files/base-hvac-ducts-buried.xml index 605a5b82d8..9471463b49 100644 --- a/workflow/sample_files/base-hvac-ducts-buried.xml +++ b/workflow/sample_files/base-hvac-ducts-buried.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-ducts-defaults.xml b/workflow/sample_files/base-hvac-ducts-defaults.xml index 904f3d29d0..09774f0f68 100644 --- a/workflow/sample_files/base-hvac-ducts-defaults.xml +++ b/workflow/sample_files/base-hvac-ducts-defaults.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-ducts-effective-rvalue.xml b/workflow/sample_files/base-hvac-ducts-effective-rvalue.xml index 4030fca384..13ec27a4f5 100644 --- a/workflow/sample_files/base-hvac-ducts-effective-rvalue.xml +++ b/workflow/sample_files/base-hvac-ducts-effective-rvalue.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml b/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml index edb1fc4cc2..58ffc8f19c 100644 --- a/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml +++ b/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-ducts-leakage-percent.xml b/workflow/sample_files/base-hvac-ducts-leakage-percent.xml index a44a0a5db3..d8e40a555a 100644 --- a/workflow/sample_files/base-hvac-ducts-leakage-percent.xml +++ b/workflow/sample_files/base-hvac-ducts-leakage-percent.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-ducts-shape-mixed.xml b/workflow/sample_files/base-hvac-ducts-shape-mixed.xml index 2e85a566b6..9596916265 100644 --- a/workflow/sample_files/base-hvac-ducts-shape-mixed.xml +++ b/workflow/sample_files/base-hvac-ducts-shape-mixed.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-ducts-shape-rectangular.xml b/workflow/sample_files/base-hvac-ducts-shape-rectangular.xml index e38220f32a..7f65d98902 100644 --- a/workflow/sample_files/base-hvac-ducts-shape-rectangular.xml +++ b/workflow/sample_files/base-hvac-ducts-shape-rectangular.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-ducts-shape-round.xml b/workflow/sample_files/base-hvac-ducts-shape-round.xml index 2ee656af9a..bfde27ae42 100644 --- a/workflow/sample_files/base-hvac-ducts-shape-round.xml +++ b/workflow/sample_files/base-hvac-ducts-shape-round.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-elec-resistance-only.xml b/workflow/sample_files/base-hvac-elec-resistance-only.xml index f6fd025fea..24c82720d4 100644 --- a/workflow/sample_files/base-hvac-elec-resistance-only.xml +++ b/workflow/sample_files/base-hvac-elec-resistance-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml b/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml index 2afd8acc30..d98953281d 100644 --- a/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml +++ b/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml b/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml index 627d593db0..b663f77ac0 100644 --- a/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml +++ b/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-evap-cooler-only.xml b/workflow/sample_files/base-hvac-evap-cooler-only.xml index 46cf00bc10..1b6d681f78 100644 --- a/workflow/sample_files/base-hvac-evap-cooler-only.xml +++ b/workflow/sample_files/base-hvac-evap-cooler-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-fireplace-wood-only.xml b/workflow/sample_files/base-hvac-fireplace-wood-only.xml index 8bba9811c0..b5ecdff453 100644 --- a/workflow/sample_files/base-hvac-fireplace-wood-only.xml +++ b/workflow/sample_files/base-hvac-fireplace-wood-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml b/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml index e96abf7962..94a5b85846 100644 --- a/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml +++ b/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-furnace-coal-only.xml b/workflow/sample_files/base-hvac-furnace-coal-only.xml index f8b9d94637..67e82d4cd8 100644 --- a/workflow/sample_files/base-hvac-furnace-coal-only.xml +++ b/workflow/sample_files/base-hvac-furnace-coal-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml b/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml index db5c96c0ee..79e32141e5 100644 --- a/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml +++ b/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-furnace-elec-only.xml b/workflow/sample_files/base-hvac-furnace-elec-only.xml index 43acfe7d2a..38d7952873 100644 --- a/workflow/sample_files/base-hvac-furnace-elec-only.xml +++ b/workflow/sample_files/base-hvac-furnace-elec-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml b/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml index b7e12f1eba..2305eef24a 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml b/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml index 24b89b54e0..a14c5ba0cf 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml b/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml index b6b1e767bd..a976c276d9 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-furnace-gas-only-autosize-factor.xml b/workflow/sample_files/base-hvac-furnace-gas-only-autosize-factor.xml index 8c1b01683f..c0827526f7 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-only-autosize-factor.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-only-autosize-factor.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml b/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml index 48f52c9852..67196d8a98 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-furnace-gas-only-pilot.xml b/workflow/sample_files/base-hvac-furnace-gas-only-pilot.xml index d95e32fc0a..e910c0c382 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-only-pilot.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-only-pilot.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-furnace-gas-only.xml b/workflow/sample_files/base-hvac-furnace-gas-only.xml index c6acf73c3a..25e3f1988e 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-only.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml b/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml index 099491f800..6095599a50 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-furnace-oil-only.xml b/workflow/sample_files/base-hvac-furnace-oil-only.xml index 15f289eb12..13a6f866c1 100644 --- a/workflow/sample_files/base-hvac-furnace-oil-only.xml +++ b/workflow/sample_files/base-hvac-furnace-oil-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-furnace-propane-only.xml b/workflow/sample_files/base-hvac-furnace-propane-only.xml index 2bc8e92098..ba99100a8d 100644 --- a/workflow/sample_files/base-hvac-furnace-propane-only.xml +++ b/workflow/sample_files/base-hvac-furnace-propane-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-furnace-wood-only.xml b/workflow/sample_files/base-hvac-furnace-wood-only.xml index b23bf6074b..f3aece7d6f 100644 --- a/workflow/sample_files/base-hvac-furnace-wood-only.xml +++ b/workflow/sample_files/base-hvac-furnace-wood-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-furnace-x3-dse.xml b/workflow/sample_files/base-hvac-furnace-x3-dse.xml index 6cca2858ac..c172a574d3 100644 --- a/workflow/sample_files/base-hvac-furnace-x3-dse.xml +++ b/workflow/sample_files/base-hvac-furnace-x3-dse.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml index b32f84eac8..fa7eb4df17 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml index 0c03aac38d..b78a86244b 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml @@ -239,6 +239,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml index 3c0ced3efb..7b32b05772 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml index b086c3ac93..82bf77ef95 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml index 92e3c1fe49..951bd184a2 100644 --- a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml +++ b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml index 92ac58d90f..03a3a3d0a2 100644 --- a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml +++ b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml index bf2e43bc92..6f89d926ae 100644 --- a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml +++ b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml index 3cefacf984..cac6e36055 100644 --- a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml +++ b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml b/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml index 5353f3cdef..419625a4ec 100644 --- a/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml +++ b/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml b/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml index 552fa27ae3..d2ecd0c0c7 100644 --- a/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml +++ b/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml b/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml index e86a131cb1..b2102a8760 100644 --- a/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml +++ b/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml b/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml index 31b4660486..c0eaae9adf 100644 --- a/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml +++ b/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml b/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml index 13f6ea9853..c8fe7d9f7f 100644 --- a/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml +++ b/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml b/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml index 973f9532d9..cfecd5e8a7 100644 --- a/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml +++ b/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml b/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml index 93786959c5..81c5a07584 100644 --- a/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml +++ b/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml index 11b0b03626..8bd463fdf8 100644 --- a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml +++ b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml index fec0066157..a6e9ce9bb0 100644 --- a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml +++ b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml index dc65ad0298..bfd31b4778 100644 --- a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml +++ b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml index c8247e07fd..5e8aa2e66c 100644 --- a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml +++ b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml index 5a336693f9..f772967e4c 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml index 72caad6eef..c38f38b5fe 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml index 4c6aaf3c0d..ea77721c25 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml index 823d508910..e4ea80580e 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml index a58c7b93d8..89900f2898 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml index ce5328a7fd..8ab585c94e 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml index 23740e724b..3473bc621f 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-advanced-defrost.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-advanced-defrost.xml index aa2aff38e1..35264474da 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-advanced-defrost.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-advanced-defrost.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-autosize-factor.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-autosize-factor.xml index f4fff28c42..f562867f43 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-autosize-factor.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-autosize-factor.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-advanced-defrost.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-advanced-defrost.xml index a81ba952e9..db28c89f73 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-advanced-defrost.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-advanced-defrost.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml index d3d7b0f39b..08cdf0d66f 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml index e13fc8cad1..12b3087eb3 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml index 40eaf92716..3471483ed7 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml index 139df10e53..5ada1ee53a 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml index 347a37c78d..ed056ba8ba 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml index 275daaf950..d96bf5d060 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml index 64b82a7408..cceb07ba76 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml index 001d2f368b..4f88520749 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-multiple.xml b/workflow/sample_files/base-hvac-multiple.xml index 82c9c43ecb..4781238e06 100644 --- a/workflow/sample_files/base-hvac-multiple.xml +++ b/workflow/sample_files/base-hvac-multiple.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-none.xml b/workflow/sample_files/base-hvac-none.xml index fa099ad116..8fa512f9a9 100644 --- a/workflow/sample_files/base-hvac-none.xml +++ b/workflow/sample_files/base-hvac-none.xml @@ -186,6 +186,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml b/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml index fd280430cd..4fbcfc67fb 100644 --- a/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml +++ b/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml b/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml index 7708e88327..eb6211644c 100644 --- a/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml +++ b/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-ptac.xml b/workflow/sample_files/base-hvac-ptac.xml index 69eccb1c58..30a33696e4 100644 --- a/workflow/sample_files/base-hvac-ptac.xml +++ b/workflow/sample_files/base-hvac-ptac.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-pthp-heating-capacity-17f.xml b/workflow/sample_files/base-hvac-pthp-heating-capacity-17f.xml index fb8521bce8..09a5936cfa 100644 --- a/workflow/sample_files/base-hvac-pthp-heating-capacity-17f.xml +++ b/workflow/sample_files/base-hvac-pthp-heating-capacity-17f.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-pthp.xml b/workflow/sample_files/base-hvac-pthp.xml index 8e3d8e1e2c..643169439b 100644 --- a/workflow/sample_files/base-hvac-pthp.xml +++ b/workflow/sample_files/base-hvac-pthp.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-room-ac-only-33percent.xml b/workflow/sample_files/base-hvac-room-ac-only-33percent.xml index e19e9d769e..cba6ad1682 100644 --- a/workflow/sample_files/base-hvac-room-ac-only-33percent.xml +++ b/workflow/sample_files/base-hvac-room-ac-only-33percent.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-room-ac-only-ceer.xml b/workflow/sample_files/base-hvac-room-ac-only-ceer.xml index 324d73498a..a5b9e5e8a2 100644 --- a/workflow/sample_files/base-hvac-room-ac-only-ceer.xml +++ b/workflow/sample_files/base-hvac-room-ac-only-ceer.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml b/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml index c94b869b37..faa1df59b3 100644 --- a/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml +++ b/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-room-ac-only.xml b/workflow/sample_files/base-hvac-room-ac-only.xml index 5c5ff96d94..94f8e2b822 100644 --- a/workflow/sample_files/base-hvac-room-ac-only.xml +++ b/workflow/sample_files/base-hvac-room-ac-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-room-ac-with-heating.xml b/workflow/sample_files/base-hvac-room-ac-with-heating.xml index 5109ed10d2..9ef6aff2a8 100644 --- a/workflow/sample_files/base-hvac-room-ac-with-heating.xml +++ b/workflow/sample_files/base-hvac-room-ac-with-heating.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml b/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml index 3b38d2f2ef..1935b9004d 100644 --- a/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml +++ b/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-seasons.xml b/workflow/sample_files/base-hvac-seasons.xml index 228ab30d05..75d0edc182 100644 --- a/workflow/sample_files/base-hvac-seasons.xml +++ b/workflow/sample_files/base-hvac-seasons.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml b/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml index a67fb44e19..cc08ef9c7d 100644 --- a/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml +++ b/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml b/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml index e05c8e62d9..2f9d71d281 100644 --- a/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml +++ b/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-setpoints.xml b/workflow/sample_files/base-hvac-setpoints.xml index fd9dc1504d..757c92fd20 100644 --- a/workflow/sample_files/base-hvac-setpoints.xml +++ b/workflow/sample_files/base-hvac-setpoints.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-space-heater-gas-only.xml b/workflow/sample_files/base-hvac-space-heater-gas-only.xml index 99738be55c..de118a6dec 100644 --- a/workflow/sample_files/base-hvac-space-heater-gas-only.xml +++ b/workflow/sample_files/base-hvac-space-heater-gas-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-stove-oil-only.xml b/workflow/sample_files/base-hvac-stove-oil-only.xml index fc574f0c32..e08bfad27e 100644 --- a/workflow/sample_files/base-hvac-stove-oil-only.xml +++ b/workflow/sample_files/base-hvac-stove-oil-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml b/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml index a09abec8c1..0e7dfcb8aa 100644 --- a/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml +++ b/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-undersized.xml b/workflow/sample_files/base-hvac-undersized.xml index 057e281ee4..f63e5aa596 100644 --- a/workflow/sample_files/base-hvac-undersized.xml +++ b/workflow/sample_files/base-hvac-undersized.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml b/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml index cbc5028769..e75f5d1521 100644 --- a/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml +++ b/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-lighting-ceiling-fans-label-energy-use.xml b/workflow/sample_files/base-lighting-ceiling-fans-label-energy-use.xml index e5543eac16..83aac69b33 100644 --- a/workflow/sample_files/base-lighting-ceiling-fans-label-energy-use.xml +++ b/workflow/sample_files/base-lighting-ceiling-fans-label-energy-use.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-lighting-ceiling-fans.xml b/workflow/sample_files/base-lighting-ceiling-fans.xml index 9be8dc3c84..c22a4d933b 100644 --- a/workflow/sample_files/base-lighting-ceiling-fans.xml +++ b/workflow/sample_files/base-lighting-ceiling-fans.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-lighting-holiday.xml b/workflow/sample_files/base-lighting-holiday.xml index d4f7bd784c..e19e735e22 100644 --- a/workflow/sample_files/base-lighting-holiday.xml +++ b/workflow/sample_files/base-lighting-holiday.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-lighting-kwh-per-year.xml b/workflow/sample_files/base-lighting-kwh-per-year.xml index 4a15c51478..6ac1c7d990 100644 --- a/workflow/sample_files/base-lighting-kwh-per-year.xml +++ b/workflow/sample_files/base-lighting-kwh-per-year.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-lighting-mixed.xml b/workflow/sample_files/base-lighting-mixed.xml index 2188cacb20..6a48fe5892 100644 --- a/workflow/sample_files/base-lighting-mixed.xml +++ b/workflow/sample_files/base-lighting-mixed.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-lighting-none-ceiling-fans.xml b/workflow/sample_files/base-lighting-none-ceiling-fans.xml index a831bfef70..6d52d3cee7 100644 --- a/workflow/sample_files/base-lighting-none-ceiling-fans.xml +++ b/workflow/sample_files/base-lighting-none-ceiling-fans.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-lighting-none.xml b/workflow/sample_files/base-lighting-none.xml index 16dc346f0a..578e944db0 100644 --- a/workflow/sample_files/base-lighting-none.xml +++ b/workflow/sample_files/base-lighting-none.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-location-AMY-2012.xml b/workflow/sample_files/base-location-AMY-2012.xml index 63013466eb..30c61d7132 100644 --- a/workflow/sample_files/base-location-AMY-2012.xml +++ b/workflow/sample_files/base-location-AMY-2012.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-location-baltimore-md.xml b/workflow/sample_files/base-location-baltimore-md.xml index 559a9ed431..770473591c 100644 --- a/workflow/sample_files/base-location-baltimore-md.xml +++ b/workflow/sample_files/base-location-baltimore-md.xml @@ -248,6 +248,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-location-capetown-zaf.xml b/workflow/sample_files/base-location-capetown-zaf.xml index 25b1cb9f5a..c13e6cc400 100644 --- a/workflow/sample_files/base-location-capetown-zaf.xml +++ b/workflow/sample_files/base-location-capetown-zaf.xml @@ -241,6 +241,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-location-dallas-tx.xml b/workflow/sample_files/base-location-dallas-tx.xml index f89e165d5c..232ce981c8 100644 --- a/workflow/sample_files/base-location-dallas-tx.xml +++ b/workflow/sample_files/base-location-dallas-tx.xml @@ -186,6 +186,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-location-detailed.xml b/workflow/sample_files/base-location-detailed.xml index 7e5259b837..8553434837 100644 --- a/workflow/sample_files/base-location-detailed.xml +++ b/workflow/sample_files/base-location-detailed.xml @@ -242,6 +242,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-location-duluth-mn.xml b/workflow/sample_files/base-location-duluth-mn.xml index 0fe6f4bd6d..58b0e36263 100644 --- a/workflow/sample_files/base-location-duluth-mn.xml +++ b/workflow/sample_files/base-location-duluth-mn.xml @@ -245,6 +245,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-location-helena-mt.xml b/workflow/sample_files/base-location-helena-mt.xml index b45d89186c..5b5a33d2bb 100644 --- a/workflow/sample_files/base-location-helena-mt.xml +++ b/workflow/sample_files/base-location-helena-mt.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-location-honolulu-hi.xml b/workflow/sample_files/base-location-honolulu-hi.xml index 8568199789..27750cff8d 100644 --- a/workflow/sample_files/base-location-honolulu-hi.xml +++ b/workflow/sample_files/base-location-honolulu-hi.xml @@ -186,6 +186,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-location-miami-fl.xml b/workflow/sample_files/base-location-miami-fl.xml index c6331b8988..0f40548a13 100644 --- a/workflow/sample_files/base-location-miami-fl.xml +++ b/workflow/sample_files/base-location-miami-fl.xml @@ -186,6 +186,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-location-phoenix-az.xml b/workflow/sample_files/base-location-phoenix-az.xml index bf3bcbf989..22ee635496 100644 --- a/workflow/sample_files/base-location-phoenix-az.xml +++ b/workflow/sample_files/base-location-phoenix-az.xml @@ -186,6 +186,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-location-portland-or.xml b/workflow/sample_files/base-location-portland-or.xml index 8b286227d0..742bcc7833 100644 --- a/workflow/sample_files/base-location-portland-or.xml +++ b/workflow/sample_files/base-location-portland-or.xml @@ -251,6 +251,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-mechvent-balanced.xml b/workflow/sample_files/base-mechvent-balanced.xml index aa9707d64b..d884a57463 100644 --- a/workflow/sample_files/base-mechvent-balanced.xml +++ b/workflow/sample_files/base-mechvent-balanced.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml b/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml index 1df9d3048f..556866a3ad 100644 --- a/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml +++ b/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml b/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml index b407e2d50d..ed9d6af360 100644 --- a/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml +++ b/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-mechvent-cfis-dse.xml b/workflow/sample_files/base-mechvent-cfis-dse.xml index d2b3d7fd5b..321e29a221 100644 --- a/workflow/sample_files/base-mechvent-cfis-dse.xml +++ b/workflow/sample_files/base-mechvent-cfis-dse.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml b/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml index a580ca3e32..700aaf2162 100644 --- a/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml +++ b/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml b/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml index 86aee35f80..97e8bc1674 100644 --- a/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml +++ b/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml b/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml index 66f32265d3..c7c46cd783 100644 --- a/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml +++ b/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-mechvent-cfis.xml b/workflow/sample_files/base-mechvent-cfis.xml index 29b9aa76d8..029e301415 100644 --- a/workflow/sample_files/base-mechvent-cfis.xml +++ b/workflow/sample_files/base-mechvent-cfis.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-mechvent-erv-atre-asre.xml b/workflow/sample_files/base-mechvent-erv-atre-asre.xml index fecda46cf9..66704aa86b 100644 --- a/workflow/sample_files/base-mechvent-erv-atre-asre.xml +++ b/workflow/sample_files/base-mechvent-erv-atre-asre.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-mechvent-erv.xml b/workflow/sample_files/base-mechvent-erv.xml index 3d8ec851b1..031dec2410 100644 --- a/workflow/sample_files/base-mechvent-erv.xml +++ b/workflow/sample_files/base-mechvent-erv.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml b/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml index d84bc17e01..c97e960b77 100644 --- a/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml +++ b/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-mechvent-exhaust.xml b/workflow/sample_files/base-mechvent-exhaust.xml index d84bc17e01..c97e960b77 100644 --- a/workflow/sample_files/base-mechvent-exhaust.xml +++ b/workflow/sample_files/base-mechvent-exhaust.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-mechvent-hrv-asre.xml b/workflow/sample_files/base-mechvent-hrv-asre.xml index ec92b92cc0..7fb905c3af 100644 --- a/workflow/sample_files/base-mechvent-hrv-asre.xml +++ b/workflow/sample_files/base-mechvent-hrv-asre.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-mechvent-hrv.xml b/workflow/sample_files/base-mechvent-hrv.xml index 48317f9c2b..a5c48e482a 100644 --- a/workflow/sample_files/base-mechvent-hrv.xml +++ b/workflow/sample_files/base-mechvent-hrv.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-mechvent-multiple.xml b/workflow/sample_files/base-mechvent-multiple.xml index 0065c3ffc2..53979619eb 100644 --- a/workflow/sample_files/base-mechvent-multiple.xml +++ b/workflow/sample_files/base-mechvent-multiple.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-mechvent-supply.xml b/workflow/sample_files/base-mechvent-supply.xml index 995fdc5002..e1409bd2bb 100644 --- a/workflow/sample_files/base-mechvent-supply.xml +++ b/workflow/sample_files/base-mechvent-supply.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-mechvent-whole-house-fan.xml b/workflow/sample_files/base-mechvent-whole-house-fan.xml index c8d41da1e7..4907a07cdb 100644 --- a/workflow/sample_files/base-mechvent-whole-house-fan.xml +++ b/workflow/sample_files/base-mechvent-whole-house-fan.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-misc-additional-properties.xml b/workflow/sample_files/base-misc-additional-properties.xml index 065e63677a..3b2c5245d4 100644 --- a/workflow/sample_files/base-misc-additional-properties.xml +++ b/workflow/sample_files/base-misc-additional-properties.xml @@ -244,6 +244,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-misc-bills-battery-scheduled-detailed-only.xml b/workflow/sample_files/base-misc-bills-battery-scheduled-detailed-only.xml index 9855f53ad1..a9298ea58b 100644 --- a/workflow/sample_files/base-misc-bills-battery-scheduled-detailed-only.xml +++ b/workflow/sample_files/base-misc-bills-battery-scheduled-detailed-only.xml @@ -260,6 +260,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-misc-bills-detailed-only.xml b/workflow/sample_files/base-misc-bills-detailed-only.xml index 61652710d4..d6229fc58f 100644 --- a/workflow/sample_files/base-misc-bills-detailed-only.xml +++ b/workflow/sample_files/base-misc-bills-detailed-only.xml @@ -257,6 +257,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-misc-bills-pv-detailed-only.xml b/workflow/sample_files/base-misc-bills-pv-detailed-only.xml index 62c2d4ba96..843fe71287 100644 --- a/workflow/sample_files/base-misc-bills-pv-detailed-only.xml +++ b/workflow/sample_files/base-misc-bills-pv-detailed-only.xml @@ -257,6 +257,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-misc-bills-pv-mixed.xml b/workflow/sample_files/base-misc-bills-pv-mixed.xml index 413c15c9e7..627cedec24 100644 --- a/workflow/sample_files/base-misc-bills-pv-mixed.xml +++ b/workflow/sample_files/base-misc-bills-pv-mixed.xml @@ -239,6 +239,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-misc-bills-pv.xml b/workflow/sample_files/base-misc-bills-pv.xml index fa2cd58bac..6023a47fea 100644 --- a/workflow/sample_files/base-misc-bills-pv.xml +++ b/workflow/sample_files/base-misc-bills-pv.xml @@ -302,6 +302,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-misc-bills.xml b/workflow/sample_files/base-misc-bills.xml index d0b3aeb5a3..61b4b52271 100644 --- a/workflow/sample_files/base-misc-bills.xml +++ b/workflow/sample_files/base-misc-bills.xml @@ -242,6 +242,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-misc-defaults.xml b/workflow/sample_files/base-misc-defaults.xml index 260aac12bf..6d45703b2c 100644 --- a/workflow/sample_files/base-misc-defaults.xml +++ b/workflow/sample_files/base-misc-defaults.xml @@ -165,6 +165,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-misc-emissions.xml b/workflow/sample_files/base-misc-emissions.xml index 34e8dabc5e..7287b9bbf2 100644 --- a/workflow/sample_files/base-misc-emissions.xml +++ b/workflow/sample_files/base-misc-emissions.xml @@ -286,6 +286,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-misc-generators-battery-scheduled.xml b/workflow/sample_files/base-misc-generators-battery-scheduled.xml index f795cf0663..0b2bf9aab7 100644 --- a/workflow/sample_files/base-misc-generators-battery-scheduled.xml +++ b/workflow/sample_files/base-misc-generators-battery-scheduled.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-misc-generators-battery.xml b/workflow/sample_files/base-misc-generators-battery.xml index a0c7fc18d0..00e1fa330c 100644 --- a/workflow/sample_files/base-misc-generators-battery.xml +++ b/workflow/sample_files/base-misc-generators-battery.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-misc-generators.xml b/workflow/sample_files/base-misc-generators.xml index 58c5d00aa7..f5e62b45ae 100644 --- a/workflow/sample_files/base-misc-generators.xml +++ b/workflow/sample_files/base-misc-generators.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-misc-ground-conductivity.xml b/workflow/sample_files/base-misc-ground-conductivity.xml index 4d4bac8f98..e796251625 100644 --- a/workflow/sample_files/base-misc-ground-conductivity.xml +++ b/workflow/sample_files/base-misc-ground-conductivity.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-misc-loads-large-uncommon.xml b/workflow/sample_files/base-misc-loads-large-uncommon.xml index c778817230..498a6005f7 100644 --- a/workflow/sample_files/base-misc-loads-large-uncommon.xml +++ b/workflow/sample_files/base-misc-loads-large-uncommon.xml @@ -242,6 +242,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-misc-loads-large-uncommon2.xml b/workflow/sample_files/base-misc-loads-large-uncommon2.xml index 21a4890cca..3ce4ef1210 100644 --- a/workflow/sample_files/base-misc-loads-large-uncommon2.xml +++ b/workflow/sample_files/base-misc-loads-large-uncommon2.xml @@ -242,6 +242,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-misc-loads-none.xml b/workflow/sample_files/base-misc-loads-none.xml index 5ec885cab2..590a039f63 100644 --- a/workflow/sample_files/base-misc-loads-none.xml +++ b/workflow/sample_files/base-misc-loads-none.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-misc-neighbor-shading.xml b/workflow/sample_files/base-misc-neighbor-shading.xml index 1fa4385c2e..f126a6afdf 100644 --- a/workflow/sample_files/base-misc-neighbor-shading.xml +++ b/workflow/sample_files/base-misc-neighbor-shading.xml @@ -245,6 +245,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-misc-shielding-of-home.xml b/workflow/sample_files/base-misc-shielding-of-home.xml index d2930b0d5b..ae799d1f2b 100644 --- a/workflow/sample_files/base-misc-shielding-of-home.xml +++ b/workflow/sample_files/base-misc-shielding-of-home.xml @@ -233,6 +233,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-misc-unit-multiplier.xml b/workflow/sample_files/base-misc-unit-multiplier.xml index 391cc7f4e3..1f906d4fea 100644 --- a/workflow/sample_files/base-misc-unit-multiplier.xml +++ b/workflow/sample_files/base-misc-unit-multiplier.xml @@ -233,6 +233,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-misc-usage-multiplier.xml b/workflow/sample_files/base-misc-usage-multiplier.xml index 227fbe0d02..3faa73408d 100644 --- a/workflow/sample_files/base-misc-usage-multiplier.xml +++ b/workflow/sample_files/base-misc-usage-multiplier.xml @@ -237,6 +237,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-pv-battery-ah.xml b/workflow/sample_files/base-pv-battery-ah.xml index e87ced8378..8a26c95824 100644 --- a/workflow/sample_files/base-pv-battery-ah.xml +++ b/workflow/sample_files/base-pv-battery-ah.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-pv-battery-garage.xml b/workflow/sample_files/base-pv-battery-garage.xml index 5cb3e66622..def8383c0b 100644 --- a/workflow/sample_files/base-pv-battery-garage.xml +++ b/workflow/sample_files/base-pv-battery-garage.xml @@ -281,6 +281,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + @@ -306,6 +314,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-pv-battery-round-trip-efficiency.xml b/workflow/sample_files/base-pv-battery-round-trip-efficiency.xml index 55a8b1a16b..ac3f01fc73 100644 --- a/workflow/sample_files/base-pv-battery-round-trip-efficiency.xml +++ b/workflow/sample_files/base-pv-battery-round-trip-efficiency.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-pv-battery-scheduled.xml b/workflow/sample_files/base-pv-battery-scheduled.xml index e9c09a409d..58339f06a6 100644 --- a/workflow/sample_files/base-pv-battery-scheduled.xml +++ b/workflow/sample_files/base-pv-battery-scheduled.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-pv-battery.xml b/workflow/sample_files/base-pv-battery.xml index 681e6bc9af..07ed5ab412 100644 --- a/workflow/sample_files/base-pv-battery.xml +++ b/workflow/sample_files/base-pv-battery.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-pv-generators-battery-scheduled.xml b/workflow/sample_files/base-pv-generators-battery-scheduled.xml index f6928a42ea..455a275ec7 100644 --- a/workflow/sample_files/base-pv-generators-battery-scheduled.xml +++ b/workflow/sample_files/base-pv-generators-battery-scheduled.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-pv-generators-battery.xml b/workflow/sample_files/base-pv-generators-battery.xml index 619834e7ae..4cb72ca6c1 100644 --- a/workflow/sample_files/base-pv-generators-battery.xml +++ b/workflow/sample_files/base-pv-generators-battery.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-pv-generators.xml b/workflow/sample_files/base-pv-generators.xml index 13f44d0762..7531eac49f 100644 --- a/workflow/sample_files/base-pv-generators.xml +++ b/workflow/sample_files/base-pv-generators.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-pv.xml b/workflow/sample_files/base-pv.xml index 9fc4503704..ea9c1b78c6 100644 --- a/workflow/sample_files/base-pv.xml +++ b/workflow/sample_files/base-pv.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-residents-0-runperiod-1-month.xml b/workflow/sample_files/base-residents-0-runperiod-1-month.xml index 0c03c64524..50ab53f700 100644 --- a/workflow/sample_files/base-residents-0-runperiod-1-month.xml +++ b/workflow/sample_files/base-residents-0-runperiod-1-month.xml @@ -239,6 +239,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-residents-0.xml b/workflow/sample_files/base-residents-0.xml index 9b31009416..80923fb249 100644 --- a/workflow/sample_files/base-residents-0.xml +++ b/workflow/sample_files/base-residents-0.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-residents-1-misc-loads-large-uncommon.xml b/workflow/sample_files/base-residents-1-misc-loads-large-uncommon.xml index eecd18ab6a..5828583624 100644 --- a/workflow/sample_files/base-residents-1-misc-loads-large-uncommon.xml +++ b/workflow/sample_files/base-residents-1-misc-loads-large-uncommon.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-residents-1-misc-loads-large-uncommon2.xml b/workflow/sample_files/base-residents-1-misc-loads-large-uncommon2.xml index 34db0e8343..371b6ac35c 100644 --- a/workflow/sample_files/base-residents-1-misc-loads-large-uncommon2.xml +++ b/workflow/sample_files/base-residents-1-misc-loads-large-uncommon2.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-residents-1.xml b/workflow/sample_files/base-residents-1.xml index 92e1087a96..ed81b4f6a5 100644 --- a/workflow/sample_files/base-residents-1.xml +++ b/workflow/sample_files/base-residents-1.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-residents-5.xml b/workflow/sample_files/base-residents-5.xml index 748aea7f73..47264e91ed 100644 --- a/workflow/sample_files/base-residents-5.xml +++ b/workflow/sample_files/base-residents-5.xml @@ -212,6 +212,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-schedules-detailed-all-10-mins.xml b/workflow/sample_files/base-schedules-detailed-all-10-mins.xml index f460477d82..b97fc2f11b 100644 --- a/workflow/sample_files/base-schedules-detailed-all-10-mins.xml +++ b/workflow/sample_files/base-schedules-detailed-all-10-mins.xml @@ -237,6 +237,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-schedules-detailed-mixed-timesteps-power-outage.xml b/workflow/sample_files/base-schedules-detailed-mixed-timesteps-power-outage.xml index 09131f1e56..bc7f7ac060 100644 --- a/workflow/sample_files/base-schedules-detailed-mixed-timesteps-power-outage.xml +++ b/workflow/sample_files/base-schedules-detailed-mixed-timesteps-power-outage.xml @@ -248,6 +248,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-schedules-detailed-mixed-timesteps.xml b/workflow/sample_files/base-schedules-detailed-mixed-timesteps.xml index bea19dd86d..17c1fdb69c 100644 --- a/workflow/sample_files/base-schedules-detailed-mixed-timesteps.xml +++ b/workflow/sample_files/base-schedules-detailed-mixed-timesteps.xml @@ -237,6 +237,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml index 6fed15c360..0e50b4c3ea 100644 --- a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml +++ b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml index 0aeaab4e20..31165c7136 100644 --- a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml +++ b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml @@ -246,6 +246,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml index 4da53dc636..827295a04a 100644 --- a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml +++ b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml @@ -245,6 +245,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml index e4ce714ee5..ecc6d83afd 100644 --- a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml +++ b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml b/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml index 7962559b88..4ca7718d4b 100644 --- a/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml +++ b/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml b/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml index ae329a609a..79f804d2d7 100644 --- a/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml +++ b/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-schedules-detailed-setpoints.xml b/workflow/sample_files/base-schedules-detailed-setpoints.xml index 0631c6cba0..8afeffb73c 100644 --- a/workflow/sample_files/base-schedules-detailed-setpoints.xml +++ b/workflow/sample_files/base-schedules-detailed-setpoints.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-schedules-simple-power-outage.xml b/workflow/sample_files/base-schedules-simple-power-outage.xml index f4b2bb8518..8c70298ba0 100644 --- a/workflow/sample_files/base-schedules-simple-power-outage.xml +++ b/workflow/sample_files/base-schedules-simple-power-outage.xml @@ -253,6 +253,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-schedules-simple-vacancy.xml b/workflow/sample_files/base-schedules-simple-vacancy.xml index 662f386642..f6817b8966 100644 --- a/workflow/sample_files/base-schedules-simple-vacancy.xml +++ b/workflow/sample_files/base-schedules-simple-vacancy.xml @@ -252,6 +252,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-schedules-simple.xml b/workflow/sample_files/base-schedules-simple.xml index 2a5e06134e..29d87b3aac 100644 --- a/workflow/sample_files/base-schedules-simple.xml +++ b/workflow/sample_files/base-schedules-simple.xml @@ -242,6 +242,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-simcontrol-calendar-year-custom.xml b/workflow/sample_files/base-simcontrol-calendar-year-custom.xml index 34e04daa05..4f7dd6f530 100644 --- a/workflow/sample_files/base-simcontrol-calendar-year-custom.xml +++ b/workflow/sample_files/base-simcontrol-calendar-year-custom.xml @@ -233,6 +233,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml b/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml index 150eae9d6c..771f5aae13 100644 --- a/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml +++ b/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml @@ -241,6 +241,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml b/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml index de213e4e33..e0e8e10299 100644 --- a/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml +++ b/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-simcontrol-runperiod-1-month.xml b/workflow/sample_files/base-simcontrol-runperiod-1-month.xml index cf57591902..06884d7f7a 100644 --- a/workflow/sample_files/base-simcontrol-runperiod-1-month.xml +++ b/workflow/sample_files/base-simcontrol-runperiod-1-month.xml @@ -287,6 +287,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-simcontrol-temperature-capacitance-multiplier.xml b/workflow/sample_files/base-simcontrol-temperature-capacitance-multiplier.xml index 0872a82509..baaf433470 100644 --- a/workflow/sample_files/base-simcontrol-temperature-capacitance-multiplier.xml +++ b/workflow/sample_files/base-simcontrol-temperature-capacitance-multiplier.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml b/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml index 284f11a716..6c6ba089a1 100644 --- a/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml +++ b/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml b/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml index c3fe2097cd..31bb1f8c7a 100644 --- a/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml +++ b/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-simcontrol-timestep-10-mins.xml b/workflow/sample_files/base-simcontrol-timestep-10-mins.xml index d314468910..850fd08898 100644 --- a/workflow/sample_files/base-simcontrol-timestep-10-mins.xml +++ b/workflow/sample_files/base-simcontrol-timestep-10-mins.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-simcontrol-timestep-30-mins.xml b/workflow/sample_files/base-simcontrol-timestep-30-mins.xml index 220ea25175..0ef358508a 100644 --- a/workflow/sample_files/base-simcontrol-timestep-30-mins.xml +++ b/workflow/sample_files/base-simcontrol-timestep-30-mins.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-zones-spaces-multiple.xml b/workflow/sample_files/base-zones-spaces-multiple.xml index 9c6c31a41c..cadc718a69 100644 --- a/workflow/sample_files/base-zones-spaces-multiple.xml +++ b/workflow/sample_files/base-zones-spaces-multiple.xml @@ -458,6 +458,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + @@ -484,6 +492,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + @@ -510,6 +526,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-zones-spaces.xml b/workflow/sample_files/base-zones-spaces.xml index a81057c2c7..4a4c3b62c0 100644 --- a/workflow/sample_files/base-zones-spaces.xml +++ b/workflow/sample_files/base-zones-spaces.xml @@ -452,6 +452,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + @@ -478,6 +486,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + @@ -504,6 +520,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base.xml b/workflow/sample_files/base.xml index 775b81de04..4245ea1cc9 100644 --- a/workflow/sample_files/base.xml +++ b/workflow/sample_files/base.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/tests/ACCA_Examples/Bell_Residence.xml b/workflow/tests/ACCA_Examples/Bell_Residence.xml index 2d62055761..d4bd9fb062 100644 --- a/workflow/tests/ACCA_Examples/Bell_Residence.xml +++ b/workflow/tests/ACCA_Examples/Bell_Residence.xml @@ -587,6 +587,10 @@ 0.333 + + + + @@ -608,6 +612,10 @@ 0.333 + + + + @@ -629,6 +637,10 @@ 0.333 + + + + @@ -650,6 +662,10 @@ 0.333 + + + + @@ -671,6 +687,10 @@ 0.333 + + + + @@ -692,6 +712,10 @@ 0.333 + + + + @@ -713,6 +737,10 @@ 0.333 + + + + @@ -734,6 +762,10 @@ 0.333 + + + + @@ -755,6 +787,10 @@ 0.333 + + + + @@ -776,6 +812,10 @@ 0.333 + + + + diff --git a/workflow/tests/ACCA_Examples/Bob_Ross_Residence.xml b/workflow/tests/ACCA_Examples/Bob_Ross_Residence.xml index e75e74ca9a..b2be97bb86 100644 --- a/workflow/tests/ACCA_Examples/Bob_Ross_Residence.xml +++ b/workflow/tests/ACCA_Examples/Bob_Ross_Residence.xml @@ -846,6 +846,10 @@ 0.0 + + + + @@ -867,6 +871,10 @@ 0.0 + + + + @@ -888,6 +896,10 @@ 0.0 + + + + @@ -909,6 +921,10 @@ 0.0 + + + + @@ -930,6 +946,10 @@ 0.0 + + + + @@ -951,6 +971,10 @@ 0.0 + + + + @@ -972,6 +996,10 @@ 0.0 + + + + @@ -992,6 +1020,10 @@ 0.0 + + + + diff --git a/workflow/tests/ACCA_Examples/Long_Residence.xml b/workflow/tests/ACCA_Examples/Long_Residence.xml index 2c71920979..f3cc36b8bf 100644 --- a/workflow/tests/ACCA_Examples/Long_Residence.xml +++ b/workflow/tests/ACCA_Examples/Long_Residence.xml @@ -911,6 +911,10 @@ 0.0 + + + + @@ -932,6 +936,10 @@ 0.0 + + + + @@ -953,6 +961,10 @@ 0.0 + + + + diff --git a/workflow/tests/ACCA_Examples/Smith_Residence.xml b/workflow/tests/ACCA_Examples/Smith_Residence.xml index b839ea7a7d..5c0f4ab6b0 100644 --- a/workflow/tests/ACCA_Examples/Smith_Residence.xml +++ b/workflow/tests/ACCA_Examples/Smith_Residence.xml @@ -902,6 +902,10 @@ 0.0 + + + + @@ -923,6 +927,10 @@ 3.0 + + + + @@ -944,6 +952,10 @@ 0.0 + + + + @@ -965,6 +977,10 @@ 0.0 + + + + diff --git a/workflow/tests/ACCA_Examples/Vatilo_Residence.xml b/workflow/tests/ACCA_Examples/Vatilo_Residence.xml index e9311ff09a..e796d7c735 100644 --- a/workflow/tests/ACCA_Examples/Vatilo_Residence.xml +++ b/workflow/tests/ACCA_Examples/Vatilo_Residence.xml @@ -173,6 +173,10 @@ 0.0 + + + + @@ -193,6 +197,10 @@ 0.0 + + + + diff --git a/workflow/tests/ACCA_Examples/Victor_Residence.xml b/workflow/tests/ACCA_Examples/Victor_Residence.xml index f7c04e1162..413b1b6792 100644 --- a/workflow/tests/ACCA_Examples/Victor_Residence.xml +++ b/workflow/tests/ACCA_Examples/Victor_Residence.xml @@ -151,6 +151,10 @@ 0.0 + + + + diff --git a/workflow/tests/ACCA_Examples/Walker_Residence.xml b/workflow/tests/ACCA_Examples/Walker_Residence.xml index 7516753dd2..2660b4bdbd 100644 --- a/workflow/tests/ACCA_Examples/Walker_Residence.xml +++ b/workflow/tests/ACCA_Examples/Walker_Residence.xml @@ -519,6 +519,10 @@ 0.333 + + + + @@ -540,6 +544,10 @@ 0.333 + + + + @@ -561,6 +569,10 @@ 0.333 + + + + @@ -582,6 +594,10 @@ 0.333 + + + + @@ -603,6 +619,10 @@ 0.333 + + + + @@ -624,6 +644,10 @@ 0.333 + + + + @@ -645,6 +669,10 @@ 0.333 + + + + @@ -666,6 +694,10 @@ 0.333 + + + + @@ -687,6 +719,10 @@ 0.333 + + + + diff --git a/workflow/tests/ASHRAE_Standard_140/L302XC.xml b/workflow/tests/ASHRAE_Standard_140/L302XC.xml index 932712f731..094189051f 100644 --- a/workflow/tests/ASHRAE_Standard_140/L302XC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L302XC.xml @@ -2,11 +2,15 @@ HPXML - BuildResidentialHPXML - 2024-06-25T13:18:58-06:00 + tasks.rb + 2000-01-01T00:00:00-07:00 create - + + + true + + @@ -17,7 +21,6 @@ stand-alone no units above or below - 180 0.0 @@ -60,6 +63,10 @@ true + + ACHnatural + 2.4 + @@ -67,15 +74,6 @@ - - - - - - - - - @@ -83,7 +81,8 @@ 811.1 0 asphalt or fiberglass shingles - medium + 0.6 + 0.9 4.0 @@ -96,7 +95,8 @@ 811.1 180 asphalt or fiberglass shingles - medium + 0.6 + 0.9 4.0 @@ -115,7 +115,12 @@ 456.0 0 wood siding - medium + 0.6 + 0.9 + + gypsum board + 0.5 + 11.76 @@ -131,7 +136,12 @@ 216.0 90 wood siding - medium + 0.6 + 0.9 + + gypsum board + 0.5 + 11.76 @@ -147,7 +157,12 @@ 456.0 180 wood siding - medium + 0.6 + 0.9 + + gypsum board + 0.5 + 11.76 @@ -163,7 +178,12 @@ 216.0 270 wood siding - medium + 0.6 + 0.9 + + gypsum board + 0.5 + 11.76 @@ -180,10 +200,11 @@ 60.8 90 wood siding - medium + 0.6 + 0.9 - 4.0 + 2.15 @@ -197,10 +218,11 @@ 60.8 270 wood siding - medium + 0.6 + 0.9 - 4.0 + 2.15 @@ -214,6 +236,10 @@ 1539.0 + + gypsum board + 0.5 + 18.45 @@ -317,12 +343,28 @@ - 40.0 + 20.0 180 3.04 + + + + 20.0 + 0 + 3.04 + + + + + + 68.0 + 78.0 + + + @@ -334,6 +376,9 @@ 0.822 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 diff --git a/workflow/tests/ASHRAE_Standard_140/L304XC.xml b/workflow/tests/ASHRAE_Standard_140/L304XC.xml index 8ad696e21a..1aec7ad60e 100644 --- a/workflow/tests/ASHRAE_Standard_140/L304XC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L304XC.xml @@ -260,6 +260,14 @@ 2.5 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/tests/ASHRAE_Standard_140/L322XC.xml b/workflow/tests/ASHRAE_Standard_140/L322XC.xml index 9f7d8a3657..27d1e768df 100644 --- a/workflow/tests/ASHRAE_Standard_140/L322XC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L322XC.xml @@ -416,6 +416,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/tests/ASHRAE_Standard_140/L324XC.xml b/workflow/tests/ASHRAE_Standard_140/L324XC.xml index 6f5728a7eb..fb98faefa7 100644 --- a/workflow/tests/ASHRAE_Standard_140/L324XC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L324XC.xml @@ -428,6 +428,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/tests/HERS_DSE/HVAC3a.xml b/workflow/tests/HERS_DSE/HVAC3a.xml index 920413d4b0..4ccf63a211 100644 --- a/workflow/tests/HERS_DSE/HVAC3a.xml +++ b/workflow/tests/HERS_DSE/HVAC3a.xml @@ -430,6 +430,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/tests/HERS_DSE/HVAC3b.xml b/workflow/tests/HERS_DSE/HVAC3b.xml index b4a2d102ea..88dbc11633 100644 --- a/workflow/tests/HERS_DSE/HVAC3b.xml +++ b/workflow/tests/HERS_DSE/HVAC3b.xml @@ -430,6 +430,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/tests/HERS_DSE/HVAC3c.xml b/workflow/tests/HERS_DSE/HVAC3c.xml index d8b10ebcb8..4a9f93e627 100644 --- a/workflow/tests/HERS_DSE/HVAC3c.xml +++ b/workflow/tests/HERS_DSE/HVAC3c.xml @@ -430,6 +430,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/tests/HERS_DSE/HVAC3d.xml b/workflow/tests/HERS_DSE/HVAC3d.xml index 7c672e3fac..79dd37b953 100644 --- a/workflow/tests/HERS_DSE/HVAC3d.xml +++ b/workflow/tests/HERS_DSE/HVAC3d.xml @@ -430,6 +430,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + From e0dc8f8d1d6193279c47c1b7db0a1a7a7ad1b657 Mon Sep 17 00:00:00 2001 From: prsh5175 Date: Wed, 3 Jul 2024 14:18:18 -0600 Subject: [PATCH 08/41] Debug commit. --- HPXMLtoOpenStudio/measure.xml | 6 +++--- HPXMLtoOpenStudio/resources/constructions.rb | 22 ++++++++------------ 2 files changed, 12 insertions(+), 16 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 0aabde7e59..cbf337ecfc 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 0f4632bc-ff70-41e4-b5ce-698fdaf78136 - 2024-06-25T20:48:21Z + c7d225bc-b76f-4dc7-98e1-4b55ccdf39ea + 2024-07-03T20:06:46Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -207,7 +207,7 @@ constructions.rb rb resource - AF203ADC + 691F150F data/Xing_okstate_0664D_13659_Table_A-3.csv diff --git a/HPXMLtoOpenStudio/resources/constructions.rb b/HPXMLtoOpenStudio/resources/constructions.rb index b2b2467002..841ff5f68b 100644 --- a/HPXMLtoOpenStudio/resources/constructions.rb +++ b/HPXMLtoOpenStudio/resources/constructions.rb @@ -2007,7 +2007,7 @@ def self.get_gap_factor(install_grade, framing_factor, cavity_r) # @param soil_k_in [TODO] TODO # @return [TODO] TODO def self.create_kiva_slab_foundation(model, int_horiz_r, int_horiz_width, int_vert_r, - ext_vert_r, ext_vert_depth, concrete_thick_in, soil_k_in) + ext_vert_r, ext_horiz_r = nil, ext_horiz_width = nil, ext_horiz_depth = nil, ext_vert_depth, concrete_thick_in, soil_k_in) # Create the Foundation:Kiva object for slab foundations foundation = OpenStudio::Model::FoundationKiva.new(model) @@ -2034,11 +2034,14 @@ def self.create_kiva_slab_foundation(model, int_horiz_r, int_horiz_width, int_ve foundation.setExteriorVerticalInsulationDepth(UnitConversions.convert(ext_vert_depth, 'ft', 'm')) end - # Exterior horizontal insulation - if (ext_horiz_r > 0) && (ext_horiz_depth > 0) - ext_horiz_mat = create_insulation_material(model, 'exterior horizontal ins', ext_horiz_r) - foundation.setExteriorHorizontalInsulationMaterial(ext_horiz_mat) - foundation.setExteriorHorizontalInsulationDepth(UnitConversions.convert(ext_horiz_depth, 'ft', 'm')) + if ext_horiz_r && ext_horiz_width && ext_horiz_depth + # Exterior horizontal insulation + if (ext_horiz_r > 0) && (ext_horiz_depth > 0) && (ext_horiz_width > 0) + ext_horiz_mat = create_insulation_material(model, 'exterior horizontal ins', ext_horiz_r) + foundation.setExteriorHorizontalInsulationMaterial(ext_horiz_mat) + foundation.setExteriorHorizontalInsulationDepth(UnitConversions.convert(ext_horiz_depth, 'ft', 'm')) + foundation.setExteriorHorizontalInsulationWidth(ext_horiz_width) + end end foundation.setWallHeightAboveGrade(UnitConversions.convert(concrete_thick_in, 'in', 'm')) @@ -2046,13 +2049,6 @@ def self.create_kiva_slab_foundation(model, int_horiz_r, int_horiz_width, int_ve apply_kiva_settings(model, soil_k_in) - # Exterior vertical insulation - if (ext_horiz_r > 0) && (ext_horiz_depth > 0) - ext_horiz_mat = create_insulation_material(model, 'exterior horizontal ins', ext_horiz_r) - foundation.setExteriorHorizontalInsulationMaterial(ext_horiz_mat) - foundation.setExteriorHorizontalInsulationDepth(UnitConversions.convert(ext_horiz_depth, 'ft', 'm')) - end - return foundation end From f351532fdc4d3055b49f2ed3253fe2f5008e6d32 Mon Sep 17 00:00:00 2001 From: prsh5175 Date: Tue, 9 Jul 2024 14:24:39 -0600 Subject: [PATCH 09/41] Debug commit. --- BuildResidentialHPXML/measure.xml | 8 +++--- HPXMLtoOpenStudio/measure.xml | 28 ++++--------------- ...lockout-temperatures-research-features.xml | 8 ++++++ ...tral-ac-only-2-speed-research-features.xml | 8 ++++++ ...y-research-features-detailed-setpoints.xml | 8 ++++++ ...se-hvac-room-ac-only-research-features.xml | 8 ++++++ ...se-mechvent-cfis-no-additional-runtime.xml | 8 ++++++ 7 files changed, 50 insertions(+), 26 deletions(-) diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 4a0c13f040..a3d058f119 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 1cf787b3-6890-4f06-a3b0-38e992fa387b - 2024-07-03T22:55:11Z + 0def7892-6255-4875-86d8-29f4ff11a4e9 + 2024-07-09T17:42:03Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -7391,7 +7391,7 @@ README.md md readme - 38C93847 + 1D88A35E README.md.erb @@ -7408,7 +7408,7 @@ measure.rb rb script - EA194ADD + D38CE585 geometry.rb diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 72548efa66..9b3641d80d 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 657677c3-58a6-4357-bfe1-fcd7f6b039eb - 2024-07-06T05:17:52Z + 49ead468-500f-4850-9a6e-8aee00f76288 + 2024-07-09T20:12:51Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -207,11 +207,7 @@ constructions.rb rb resource -<<<<<<< HEAD - 691F150F -======= - 5D04BA3F ->>>>>>> master + 8B480E33 data/Xing_okstate_0664D_13659_Table_A-3.csv @@ -349,7 +345,7 @@ hpxml.rb rb resource - 0C19CED4 + E4A29D8E hpxml_defaults.rb @@ -373,7 +369,7 @@ hpxml_schematron/EPvalidator.xml xml resource - BC3C7E4C + DB9E52E3 hpxml_schematron/iso-schematron.xsd @@ -631,19 +627,7 @@ in.schedules.csv csv test - 2B9C5C95 - - - results_annual.csv - csv - test - 3C4C7BF6 - - - results_design_load_details.csv - csv - test - 0892DD62 + 135B2F53 test_airflow.rb diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures-research-features.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures-research-features.xml index 75f2377337..88105eef2d 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures-research-features.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures-research-features.xml @@ -237,6 +237,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-central-ac-only-2-speed-research-features.xml b/workflow/sample_files/base-hvac-central-ac-only-2-speed-research-features.xml index a5e2f560f7..558cfdb405 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-2-speed-research-features.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-2-speed-research-features.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-room-ac-only-research-features-detailed-setpoints.xml b/workflow/sample_files/base-hvac-room-ac-only-research-features-detailed-setpoints.xml index 9fd6c94e8d..8bf43091ea 100644 --- a/workflow/sample_files/base-hvac-room-ac-only-research-features-detailed-setpoints.xml +++ b/workflow/sample_files/base-hvac-room-ac-only-research-features-detailed-setpoints.xml @@ -238,6 +238,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-hvac-room-ac-only-research-features.xml b/workflow/sample_files/base-hvac-room-ac-only-research-features.xml index 0dcf414411..cd6c7558f5 100644 --- a/workflow/sample_files/base-hvac-room-ac-only-research-features.xml +++ b/workflow/sample_files/base-hvac-room-ac-only-research-features.xml @@ -235,6 +235,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + diff --git a/workflow/sample_files/base-mechvent-cfis-no-additional-runtime.xml b/workflow/sample_files/base-mechvent-cfis-no-additional-runtime.xml index acd8b19d9e..ec12f7d259 100644 --- a/workflow/sample_files/base-mechvent-cfis-no-additional-runtime.xml +++ b/workflow/sample_files/base-mechvent-cfis-no-additional-runtime.xml @@ -232,6 +232,14 @@ 0.0 + + + + 0.0 + 0.0 + 0.0 + + From 12a824d1c2c89d8245c3e6559376eeabf4f2429d Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Thu, 11 Jul 2024 08:43:13 -0600 Subject: [PATCH 10/41] Fix CI failures. --- BuildResidentialHPXML/measure.xml | 6 +++--- .../tests/test_build_residential_hpxml.rb | 3 +++ HPXMLtoOpenStudio/measure.xml | 12 +++--------- HPXMLtoOpenStudio/tests/test_enclosure.rb | 15 +++++++++++++-- 4 files changed, 22 insertions(+), 14 deletions(-) diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index a3d058f119..c77cadc068 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 0def7892-6255-4875-86d8-29f4ff11a4e9 - 2024-07-09T17:42:03Z + 3b988f82-48a4-49a4-8f96-27c33f1da065 + 2024-07-11T14:42:39Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -7420,7 +7420,7 @@ test_build_residential_hpxml.rb rb test - A40F646C + D8F9A809 diff --git a/BuildResidentialHPXML/tests/test_build_residential_hpxml.rb b/BuildResidentialHPXML/tests/test_build_residential_hpxml.rb index 139d788110..e5d823c7f2 100644 --- a/BuildResidentialHPXML/tests/test_build_residential_hpxml.rb +++ b/BuildResidentialHPXML/tests/test_build_residential_hpxml.rb @@ -433,6 +433,9 @@ def _set_measure_argument_values(hpxml_file, args) args['slab_perimeter_depth'] = 0 args['slab_under_insulation_r'] = 0 args['slab_under_width'] = 0 + args['slab_exterior_horizontal_insulation_r'] = 0 + args['slab_exterior_horizontal_insulation_width'] = 0 + args['slab_exterior_horizontal_insulation_depth_below_grade'] = 0 args['slab_thickness'] = 4.0 args['slab_carpet_fraction'] = 0.0 args['slab_carpet_r'] = 0.0 diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 9b3641d80d..306641046b 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 49ead468-500f-4850-9a6e-8aee00f76288 - 2024-07-09T20:12:51Z + d50e8aff-7832-49a6-8f08-08f9d50cd75e + 2024-07-11T14:42:43Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -623,12 +623,6 @@ resource E12E2D75 - - in.schedules.csv - csv - test - 135B2F53 - test_airflow.rb rb @@ -651,7 +645,7 @@ test_enclosure.rb rb test - 4D7C8F6E + B98B97AD test_generator.rb diff --git a/HPXMLtoOpenStudio/tests/test_enclosure.rb b/HPXMLtoOpenStudio/tests/test_enclosure.rb index 356e91d7de..7f0c26cc9a 100644 --- a/HPXMLtoOpenStudio/tests/test_enclosure.rb +++ b/HPXMLtoOpenStudio/tests/test_enclosure.rb @@ -919,10 +919,20 @@ def split_surfaces(surfaces, should_collapse_surfaces) elsif [HPXML::FoundationWall].include? surf_class surfaces[-1].insulation_exterior_r_value += 0.01 * i elsif [HPXML::Slab].include? surf_class - if i < 4 + if i < 2 surfaces[-1].perimeter_insulation_depth += 0.01 * i - else + elsif i < 3 surfaces[-1].perimeter_insulation_r_value += 0.01 * i + elsif i < 4 + surfaces[-1].under_slab_insulation_r_value += 0.01 * i + elsif i < 5 + surfaces[-1].under_slab_insulation_width += 0.01 * i + elsif i < 6 + surfaces[-1].exterior_horizontal_insulation_r_value += 0.01 * i + elsif i < 7 + surfaces[-1].exterior_horizontal_insulation_width += 0.01 * i + else + surfaces[-1].exterior_horizontal_insulation_depth_below_grade += 0.01 * i end elsif [HPXML::Window, HPXML::Skylight].include? surf_class if i < 3 @@ -1004,6 +1014,7 @@ def get_num_surfaces_by_type(hpxml_bldg) hpxml_bldg.slabs[i].id = "Slab#{i + 1}" hpxml_bldg.slabs[i].perimeter_insulation_id = "Slab#{i + 1}PerimeterInsulation" hpxml_bldg.slabs[i].under_slab_insulation_id = "Slab#{i + 1}UnderSlabInsulation" + hpxml_bldg.slabs[i].exterior_horizontal_insulation_id = "Slab#{i + 1}ExteriorHorizontalInsulation" hpxml_bldg.slabs[i].depth_below_grade = hpxml_bldg.foundation_walls[i].depth_below_grade * i / 3.0 end XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) From edf286cfa12c463db35de93e34f491397863b9ca Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Thu, 11 Jul 2024 09:48:00 -0600 Subject: [PATCH 11/41] Fix docs error. --- docs/source/workflow_inputs.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 073b6c541b..921623eb78 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -1429,9 +1429,9 @@ HPXML Slabs Each space type that borders the ground (i.e., basement, crawlspace, garage, and slab-on-grade foundation) should have a slab entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Slabs/Slab``. - ================================================================= ======== ============ =========== ========= ======== =============================================================== + ================================================================== ======== ============ =========== ========= ======== =============================================================== Element Type Units Constraints Required Default Notes - ================================================================= ======== ============ =========== ========= ======== =============================================================== + ================================================================== ======== ============ =========== ========= ======== =============================================================== ``SystemIdentifier`` id Yes Unique identifier ``AttachedToSpace`` idref See [#]_ See [#]_ ID of attached space ``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type @@ -1452,7 +1452,7 @@ Each space type that borders the ground (i.e., basement, crawlspace, garage, and ``extension/GapInsulationRValue`` double F-ft2-hr/Btu >= 0 No See [#]_ R-value of gap insulation (see figure below) ``extension/CarpetFraction`` double frac >= 0, <= 1 No See [#]_ Fraction of slab covered by carpet ``extension/CarpetRValue`` double F-ft2-hr/Btu >= 0 No See [#]_ Carpet R-value - ================================================================= ======== ============ =========== ========= ======== =============================================================== + ================================================================== ======== ============ =========== ========= ======== =============================================================== .. [#] If provided, AttachedToSpace must reference a ``Space`` (within a conditioned Zone). .. [#] Only required if zone-level and space-level HVAC design load calculations are desired (see :ref:`zones_spaces`) and the surface is adjacent to conditioned space. From a757bfe90873da47f1d98133d1dbabf0b9d3c52d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 11 Jul 2024 16:55:23 +0000 Subject: [PATCH 12/41] Latest results. --- workflow/tests/base_results/results_simulations_bills.csv | 1 + workflow/tests/base_results/results_simulations_energy.csv | 1 + workflow/tests/base_results/results_simulations_hvac.csv | 1 + workflow/tests/base_results/results_simulations_loads.csv | 1 + workflow/tests/base_results/results_simulations_misc.csv | 1 + 5 files changed, 5 insertions(+) diff --git a/workflow/tests/base_results/results_simulations_bills.csv b/workflow/tests/base_results/results_simulations_bills.csv index fa5de3261c..b65de07e57 100644 --- a/workflow/tests/base_results/results_simulations_bills.csv +++ b/workflow/tests/base_results/results_simulations_bills.csv @@ -172,6 +172,7 @@ base-foundation-conditioned-basement-slab-insulation.xml,1834.04,144.0,1310.79,0 base-foundation-conditioned-basement-wall-insulation.xml,1815.46,144.0,1287.35,0.0,1431.35,144.0,240.11,384.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-foundation-conditioned-crawlspace.xml,1530.76,144.0,1046.11,0.0,1190.11,144.0,196.65,340.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-foundation-multiple.xml,1497.11,144.0,1066.64,0.0,1210.64,144.0,142.47,286.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-foundation-slab-exterior-horizontal-insulation.xml,1462.9,144.0,1059.17,0.0,1203.17,144.0,115.73,259.73,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-foundation-slab.xml,1465.42,144.0,1060.24,0.0,1204.24,144.0,117.18,261.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-foundation-unconditioned-basement-above-grade.xml,1511.03,144.0,1069.73,0.0,1213.73,144.0,153.3,297.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-foundation-unconditioned-basement-assembly-r.xml,1467.44,144.0,1048.07,0.0,1192.07,144.0,131.37,275.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/workflow/tests/base_results/results_simulations_energy.csv b/workflow/tests/base_results/results_simulations_energy.csv index f5c14f7ba6..41905f575b 100644 --- a/workflow/tests/base_results/results_simulations_energy.csv +++ b/workflow/tests/base_results/results_simulations_energy.csv @@ -172,6 +172,7 @@ base-foundation-conditioned-basement-slab-insulation.xml,58.484,58.484,36.011,36 base-foundation-conditioned-basement-wall-insulation.xml,58.305,58.305,35.367,35.367,22.938,0.0,0.0,0.0,0.0,0.0,0.0,0.589,0.0,0.0,4.036,0.592,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-foundation-conditioned-crawlspace.xml,47.525,47.525,28.74,28.74,18.785,0.0,0.0,0.0,0.0,0.0,0.0,0.482,0.0,0.0,3.554,0.51,9.208,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-foundation-multiple.xml,42.914,42.914,29.304,29.304,13.61,0.0,0.0,0.0,0.0,0.0,0.0,0.349,0.0,0.0,4.39,0.661,9.18,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.807,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-slab-exterior-horizontal-insulation.xml,40.154,40.154,29.098,29.098,11.056,0.0,0.0,0.0,0.0,0.0,0.0,0.284,0.0,0.0,4.007,0.592,9.199,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.1,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-foundation-slab.xml,40.322,40.322,29.128,29.128,11.194,0.0,0.0,0.0,0.0,0.0,0.0,0.287,0.0,0.0,4.029,0.597,9.199,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.099,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-foundation-unconditioned-basement-above-grade.xml,44.034,44.034,29.389,29.389,14.645,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.477,0.677,9.197,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.746,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-foundation-unconditioned-basement-assembly-r.xml,41.343,41.343,28.794,28.794,12.55,0.0,0.0,0.0,0.0,0.0,0.0,0.322,0.0,0.0,4.018,0.591,9.196,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.75,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/workflow/tests/base_results/results_simulations_hvac.csv b/workflow/tests/base_results/results_simulations_hvac.csv index d2cbe37236..9838af9f3e 100644 --- a/workflow/tests/base_results/results_simulations_hvac.csv +++ b/workflow/tests/base_results/results_simulations_hvac.csv @@ -172,6 +172,7 @@ base-foundation-conditioned-basement-slab-insulation.xml,6.8,91.76,36000.0,24000 base-foundation-conditioned-basement-wall-insulation.xml,6.8,91.76,36000.0,24000.0,0.0,35169.0,8734.0,7508.0,0.0,575.0,9878.0,0.0,0.0,1738.0,2171.0,4566.0,0.0,0.0,19895.0,6102.0,7037.0,0.0,207.0,321.0,0.0,0.0,0.0,2293.0,615.0,0.0,3320.0,0.0,0.0,147.0,0.0,-653.0,0.0,800.0 base-foundation-conditioned-crawlspace.xml,6.8,91.76,36000.0,24000.0,0.0,21061.0,0.0,7508.0,0.0,575.0,5021.0,0.0,0.0,2362.0,2171.0,3425.0,0.0,0.0,13640.0,0.0,7037.0,0.0,207.0,321.0,0.0,0.0,0.0,2293.0,461.0,0.0,3320.0,0.0,0.0,310.0,0.0,-490.0,0.0,800.0 base-foundation-multiple.xml,6.8,91.76,36000.0,24000.0,0.0,23207.0,4934.0,7508.0,0.0,575.0,2198.0,0.0,3538.0,0.0,2171.0,2283.0,0.0,0.0,14619.0,236.0,7037.0,0.0,207.0,281.0,0.0,938.0,0.0,2293.0,307.0,0.0,3320.0,0.0,0.0,473.0,0.0,-327.0,0.0,800.0 +base-foundation-slab-exterior-horizontal-insulation.xml,6.8,91.76,36000.0,24000.0,0.0,28252.0,1691.0,7508.0,0.0,575.0,2198.0,0.0,0.0,11827.0,2171.0,2283.0,0.0,0.0,13445.0,0.0,7037.0,0.0,207.0,281.0,0.0,0.0,0.0,2293.0,307.0,0.0,3320.0,0.0,0.0,473.0,0.0,-327.0,0.0,800.0 base-foundation-slab.xml,6.8,91.76,36000.0,24000.0,0.0,28252.0,1691.0,7508.0,0.0,575.0,2198.0,0.0,0.0,11827.0,2171.0,2283.0,0.0,0.0,13445.0,0.0,7037.0,0.0,207.0,281.0,0.0,0.0,0.0,2293.0,307.0,0.0,3320.0,0.0,0.0,473.0,0.0,-327.0,0.0,800.0 base-foundation-unconditioned-basement-above-grade.xml,6.8,91.76,36000.0,24000.0,0.0,23182.0,4943.0,7508.0,0.0,575.0,2198.0,0.0,3504.0,0.0,2171.0,2283.0,0.0,0.0,14620.0,246.0,7037.0,0.0,207.0,281.0,0.0,929.0,0.0,2293.0,307.0,0.0,3320.0,0.0,0.0,473.0,0.0,-327.0,0.0,800.0 base-foundation-unconditioned-basement-assembly-r.xml,6.8,91.76,36000.0,24000.0,0.0,21002.0,4881.0,7508.0,0.0,575.0,2198.0,0.0,1386.0,0.0,2171.0,2283.0,0.0,0.0,14066.0,254.0,7037.0,0.0,207.0,281.0,0.0,368.0,0.0,2293.0,307.0,0.0,3320.0,0.0,0.0,473.0,0.0,-327.0,0.0,800.0 diff --git a/workflow/tests/base_results/results_simulations_loads.csv b/workflow/tests/base_results/results_simulations_loads.csv index 2472d2d4cc..54449e8a15 100644 --- a/workflow/tests/base_results/results_simulations_loads.csv +++ b/workflow/tests/base_results/results_simulations_loads.csv @@ -172,6 +172,7 @@ base-foundation-conditioned-basement-slab-insulation.xml,21.252,0.0,14.498,9.071 base-foundation-conditioned-basement-wall-insulation.xml,21.692,0.0,12.247,9.071,0.615,0.0,0.0,0.0,3.896,3.946,0.554,6.333,0.695,10.933,-13.737,0.0,0.0,0.0,8.89,-0.17,5.316,0.0,0.782,0.0,5.171,-8.581,-2.695,0.0,0.128,-0.107,-0.003,1.448,0.052,-0.411,10.676,0.0,0.0,0.0,-6.448,-0.165,-0.779,-3.625,-0.103,0.0,2.881,7.0,1.812 base-foundation-conditioned-crawlspace.xml,17.752,0.0,10.388,9.178,0.616,0.0,0.0,0.0,4.115,3.879,0.545,5.201,0.683,10.579,-13.64,0.0,0.0,0.0,9.852,-0.141,3.728,0.0,0.78,0.0,0.0,-6.59,-1.583,0.0,0.209,-0.162,-0.01,1.937,0.042,-0.324,10.714,0.0,0.0,0.0,-3.832,-0.138,-0.585,-3.695,-0.106,0.0,0.0,5.406,1.062 base-foundation-multiple.xml,12.863,0.0,13.526,9.122,0.696,0.0,0.0,0.0,3.996,3.639,0.0,0.0,0.822,10.149,-9.933,0.0,0.0,4.484,0.0,-0.753,2.524,0.0,0.0,0.0,2.344,-3.446,-1.231,0.0,-0.342,-0.891,0.0,0.0,0.042,-0.726,14.035,0.0,0.0,-1.482,0.0,-0.75,-0.677,-3.118,0.0,0.0,1.992,4.365,1.415 +base-foundation-slab-exterior-horizontal-insulation.xml,10.447,0.0,12.074,9.178,0.607,0.0,0.0,0.0,4.051,3.703,0.0,0.0,0.767,10.182,-10.741,0.0,0.0,0.0,6.336,-0.498,2.117,0.0,0.731,0.0,0.34,-5.527,-1.31,0.0,-0.19,-0.651,0.0,0.0,0.06,-0.549,13.515,0.0,0.0,0.0,-3.217,-0.496,-0.462,-3.439,-0.205,0.0,0.134,6.489,1.336 base-foundation-slab.xml,10.578,0.0,12.163,9.178,0.607,0.0,0.0,0.0,4.055,3.706,0.0,0.0,0.766,10.177,-10.778,0.0,0.0,0.0,6.504,-0.494,2.119,0.0,0.732,0.0,0.344,-5.537,-1.313,0.0,-0.184,-0.646,0.0,0.0,0.058,-0.547,13.478,0.0,0.0,0.0,-3.094,-0.492,-0.46,-3.446,-0.203,0.0,0.135,6.479,1.333 base-foundation-unconditioned-basement-above-grade.xml,13.843,0.0,13.896,9.122,0.714,0.0,0.0,0.0,4.037,3.671,0.0,0.0,0.81,10.137,-10.206,0.0,0.0,5.23,0.0,-0.702,2.538,0.0,0.0,0.0,2.757,-3.477,-1.245,0.0,-0.283,-0.84,0.0,0.0,0.035,-0.785,13.763,0.0,0.0,-1.208,0.0,-0.698,-0.665,-3.103,0.0,0.0,2.246,4.334,1.401 base-foundation-unconditioned-basement-assembly-r.xml,11.862,0.0,11.993,9.122,0.713,0.0,0.0,0.0,3.985,3.603,0.0,0.0,0.812,10.077,-9.773,0.0,0.0,3.623,0.0,-0.781,2.501,0.0,0.0,0.0,2.122,-3.39,-1.202,0.0,-0.322,-0.848,0.0,0.0,0.071,-0.768,14.196,0.0,0.0,-2.907,0.0,-0.778,-0.697,-2.969,0.0,0.0,1.498,4.421,1.444 diff --git a/workflow/tests/base_results/results_simulations_misc.csv b/workflow/tests/base_results/results_simulations_misc.csv index 7d426421ef..a7d5f33fbe 100644 --- a/workflow/tests/base_results/results_simulations_misc.csv +++ b/workflow/tests/base_results/results_simulations_misc.csv @@ -172,6 +172,7 @@ base-foundation-conditioned-basement-slab-insulation.xml,0.0,0.0,1354.7,998.0,11 base-foundation-conditioned-basement-wall-insulation.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2089.4,3465.2,3465.2,23.913,18.554,0.0 base-foundation-conditioned-crawlspace.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1699.3,2769.8,2769.8,16.152,11.732,0.0 base-foundation-multiple.xml,0.0,0.0,1354.7,998.0,11171.5,2652.8,1671.9,3013.8,3013.8,16.102,15.954,0.0 +base-foundation-slab-exterior-horizontal-insulation.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1678.6,2748.0,2748.0,13.228,13.297,0.0 base-foundation-slab.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1679.2,2751.3,2751.3,13.313,13.371,0.0 base-foundation-unconditioned-basement-above-grade.xml,0.0,0.0,1354.7,998.0,11171.5,2652.8,1669.6,3013.6,3013.6,17.351,16.837,0.0 base-foundation-unconditioned-basement-assembly-r.xml,0.0,0.0,1354.7,998.0,11171.5,2652.8,1676.9,2788.9,2788.9,15.54,14.692,0.0 From 8d014a6cc1eb26420834296313607cd221af2150 Mon Sep 17 00:00:00 2001 From: prsh5175 Date: Thu, 11 Jul 2024 13:48:27 -0600 Subject: [PATCH 13/41] Documentation updated. --- HPXMLtoOpenStudio/measure.xml | 10 ++++++++-- docs/source/workflow_inputs.rst | 1 + 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 0f20727c12..592c5b43b7 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - f05952dc-e5f6-4c47-8360-55b48813279b - 2024-07-11T14:43:53Z + 3f3c3ede-6315-4c36-96e5-8ecc5ee6f0db + 2024-07-11T19:41:35Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -623,6 +623,12 @@ resource E12E2D75 + + in.schedules.csv + csv + test + 135B2F53 + test_airflow.rb rb diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 921623eb78..7bcf035870 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -1444,6 +1444,7 @@ Each space type that borders the ground (i.e., basement, crawlspace, garage, and ``PerimeterInsulation/Layer/InsulationDepth`` double ft >= 0 Yes Depth from top of slab to bottom of vertical insulation ``ExteriorHorizontalInsulation/SystemIdentifier`` id Yes Unique identifier ``ExteriorHorizontalInsulation/Layer/NominalRValue`` double F-ft2-hr/Btu >= 0 Yes R-value of exterior horizontal insulation (see figure below) + ``ExteriorHorizontalInsulation/Layer/InsulationWidth`` double ft >= 0 Yes Width of exterior horizontal insulation from slab edge outward ``ExteriorHorizontalInsulation/Layer/InsulationDepthBelowGrade`` double ft >= 0 Yes Depth from grade to the top of exterior horizontal insulation ``UnderSlabInsulation/SystemIdentifier`` id Yes Unique identifier ``UnderSlabInsulation/Layer/NominalRValue`` double F-ft2-hr/Btu >= 0 Yes R-value of horizontal insulation (see figure below) From 6071e6de0bc4b63ec108ca063f0b0fcc7837913a Mon Sep 17 00:00:00 2001 From: Prateek Shrestha Date: Thu, 11 Jul 2024 14:23:11 -0600 Subject: [PATCH 14/41] Update measure.xml --- BuildResidentialHPXML/measure.xml | 2 -- 1 file changed, 2 deletions(-) diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index ce67e2f8d6..f7d7abe4e5 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -5,8 +5,6 @@ a13a8983-2b01-4930-8af2-42030b6e4233 c6b58847-c7dd-4002-8ba0-f816c2cba7c8 2024-07-11T14:43:51Z - 635a8ab6-45f1-4969-b2c5-f308519438f8 - 2024-07-11T16:09:59Z 2C38F48B BuildResidentialHPXML HPXML Builder From 39a00a9a111303c288038ec58d9cd489b3932cee Mon Sep 17 00:00:00 2001 From: prsh5175 Date: Thu, 11 Jul 2024 17:27:34 -0600 Subject: [PATCH 15/41] Debug commit. --- BuildResidentialHPXML/measure.rb | 6 +----- BuildResidentialHPXML/measure.xml | 13 +++++-------- workflow/hpxml_inputs.json | 4 ++-- 3 files changed, 8 insertions(+), 15 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 9ba957371d..2bdeb0e21a 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -5189,14 +5189,10 @@ def self.set_slabs(hpxml_bldg, model, args, sorted_surfaces) area: UnitConversions.convert(surface.grossArea, 'm^2', 'ft^2'), thickness: args[:slab_thickness], exposed_perimeter: exposed_perimeter, - - perimeter_insulation_depth: args[:slab_perimeter_depth], + perimeter_insulation_depth: args[:slab_perimeter_insulation_depth], exterior_horizontal_insulation_r_value: args[:slab_exterior_horizontal_insulation_r], exterior_horizontal_insulation_width: args[:slab_exterior_horizontal_insulation_width], exterior_horizontal_insulation_depth_below_grade: args[:slab_exterior_horizontal_insulation_depth_below_grade], - - perimeter_insulation_depth: args[:slab_perimeter_insulation_depth], - under_slab_insulation_width: under_slab_insulation_width, perimeter_insulation_r_value: args[:slab_perimeter_insulation_r], under_slab_insulation_r_value: args[:slab_under_insulation_r], diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index f7d7abe4e5..dd323924b6 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - c6b58847-c7dd-4002-8ba0-f816c2cba7c8 - 2024-07-11T14:43:51Z + 844794c0-6628-4ffd-9d2c-4e73c8942907 + 2024-07-11T23:23:55Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -7419,8 +7419,7 @@ README.md md readme - 99C49B2C - BD785B9E + 55E5D9F8 README.md.erb @@ -7437,8 +7436,7 @@ measure.rb rb script - 35600C68 - F41033B3 + 8298CAE6 geometry.rb @@ -7450,8 +7448,7 @@ test_build_residential_hpxml.rb rb test - D8F9A809 - C0AF4CE1 + 662BAE75 diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index da8f7f41ee..547692c6fb 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -34,7 +34,7 @@ "foundation_wall_insulation_distance_to_bottom": 0, "rim_joist_assembly_r": 5.01, "slab_perimeter_insulation_r": 0, - "slab_perimeter_depth": 0, + "slab_perimeter_insulation_depth": 0, "slab_exterior_horizontal_insulation_r": 0, "slab_exterior_horizontal_insulation_width": 0, "slab_exterior_horizontal_insulation_depth_below_grade": 0, @@ -643,7 +643,7 @@ "foundation_wall_insulation_distance_to_bottom": 8, "rim_joist_assembly_r": 23, "slab_perimeter_insulation_r": 0, - "slab_perimeter_depth": 0, + "slab_perimeter_insulation_depth": 0, "slab_exterior_horizontal_insulation_r": 0, "slab_exterior_horizontal_insulation_width": 0, "slab_exterior_horizontal_insulation_depth_below_grade": 0, From c0b9d48656db432022746ed3e47707f9545a343d Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Fri, 12 Jul 2024 08:24:21 -0600 Subject: [PATCH 16/41] Fix bad merge conflict resolution. --- BuildResidentialHPXML/measure.xml | 6 +++--- .../tests/test_build_residential_hpxml.rb | 3 +-- HPXMLtoOpenStudio/measure.xml | 10 ++-------- 3 files changed, 6 insertions(+), 13 deletions(-) diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index dd323924b6..1a68b0e93d 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 844794c0-6628-4ffd-9d2c-4e73c8942907 - 2024-07-11T23:23:55Z + f4031248-c1d3-4a50-b6d4-e50f5423f306 + 2024-07-12T14:23:58Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -7448,7 +7448,7 @@ test_build_residential_hpxml.rb rb test - 662BAE75 + 0BCCB276 diff --git a/BuildResidentialHPXML/tests/test_build_residential_hpxml.rb b/BuildResidentialHPXML/tests/test_build_residential_hpxml.rb index ab9eb7899c..460adfeefc 100644 --- a/BuildResidentialHPXML/tests/test_build_residential_hpxml.rb +++ b/BuildResidentialHPXML/tests/test_build_residential_hpxml.rb @@ -432,11 +432,10 @@ def _set_measure_argument_values(hpxml_file, args) args['slab_perimeter_insulation_r'] = 0 args['slab_perimeter_insulation_depth'] = 0 args['slab_under_insulation_r'] = 0 - args['slab_under_width'] = 0 + args['slab_under_insulation_width'] = 0 args['slab_exterior_horizontal_insulation_r'] = 0 args['slab_exterior_horizontal_insulation_width'] = 0 args['slab_exterior_horizontal_insulation_depth_below_grade'] = 0 - args['slab_under_insulation_width'] = 0 args['slab_thickness'] = 4.0 args['slab_carpet_fraction'] = 0.0 args['slab_carpet_r'] = 0.0 diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 592c5b43b7..d0cb74d1cf 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 3f3c3ede-6315-4c36-96e5-8ecc5ee6f0db - 2024-07-11T19:41:35Z + ab6bda81-c9f7-4895-8680-3775e524553d + 2024-07-12T14:24:07Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -623,12 +623,6 @@ resource E12E2D75 - - in.schedules.csv - csv - test - 135B2F53 - test_airflow.rb rb From 4cbb7b05e61f63183e5b70c7614458a5f0a74591 Mon Sep 17 00:00:00 2001 From: prsh5175 Date: Tue, 16 Jul 2024 11:43:02 -0600 Subject: [PATCH 17/41] Temporary commit. --- BuildResidentialHPXML/README.md | 2 +- BuildResidentialHPXML/measure.rb | 2 +- BuildResidentialHPXML/measure.xml | 10 +++++----- HPXMLtoOpenStudio/measure.xml | 12 +++++++++--- HPXMLtoOpenStudio/resources/constructions.rb | 20 +++++++++----------- 5 files changed, 25 insertions(+), 21 deletions(-) diff --git a/BuildResidentialHPXML/README.md b/BuildResidentialHPXML/README.md index 58982590d8..df14e6924b 100644 --- a/BuildResidentialHPXML/README.md +++ b/BuildResidentialHPXML/README.md @@ -1022,7 +1022,7 @@ Depth from grade to bottom of vertical slab perimeter insulation. Applies to sla **Slab: Exterior Horizontal Insulation Nominal R-value** -Nominal R-value of the slab perimeter exterior horizontal (wing/skirt) insulation. Applies to slab-on-grade foundations and basement/crawlspace floors. +Nominal R-value of the slab exterior horizontal (wing/skirt) insulation. Applies to slab-on-grade foundations and basement/crawlspace floors. - **Name:** ``slab_exterior_horizontal_insulation_r`` - **Type:** ``Double`` diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 2bdeb0e21a..3e23a4c1e5 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -642,7 +642,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('slab_exterior_horizontal_insulation_r', true) arg.setDisplayName('Slab: Exterior Horizontal Insulation Nominal R-value') arg.setUnits('h-ft^2-R/Btu') - arg.setDescription('Nominal R-value of the slab perimeter exterior horizontal (wing/skirt) insulation. Applies to slab-on-grade foundations and basement/crawlspace floors.') + arg.setDescription('Nominal R-value of the slab exterior horizontal (wing/skirt) insulation. Applies to slab-on-grade foundations and basement/crawlspace floors.') arg.setDefaultValue(0) args << arg diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 1a68b0e93d..55c9643d36 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - f4031248-c1d3-4a50-b6d4-e50f5423f306 - 2024-07-12T14:23:58Z + 51308fb7-3ea2-4a28-a4fe-0b087ef7b17d + 2024-07-15T18:11:08Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -1415,7 +1415,7 @@ slab_exterior_horizontal_insulation_r Slab: Exterior Horizontal Insulation Nominal R-value - Nominal R-value of the slab perimeter exterior horizontal (wing/skirt) insulation. Applies to slab-on-grade foundations and basement/crawlspace floors. + Nominal R-value of the slab exterior horizontal (wing/skirt) insulation. Applies to slab-on-grade foundations and basement/crawlspace floors. Double h-ft^2-R/Btu true @@ -7419,7 +7419,7 @@ README.md md readme - 55E5D9F8 + 641D9734 README.md.erb @@ -7436,7 +7436,7 @@ measure.rb rb script - 8298CAE6 + 1416ECDD geometry.rb diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index d0cb74d1cf..40ca1699f4 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - ab6bda81-c9f7-4895-8680-3775e524553d - 2024-07-12T14:24:07Z + 22721f65-7983-41ec-a818-55c76a744fc3 + 2024-07-15T18:11:11Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -207,7 +207,7 @@ constructions.rb rb resource - 8B480E33 + 75DFD9C0 data/Xing_okstate_0664D_13659_Table_A-3.csv @@ -623,6 +623,12 @@ resource E12E2D75 + + in.schedules.csv + csv + test + 135B2F53 + test_airflow.rb rb diff --git a/HPXMLtoOpenStudio/resources/constructions.rb b/HPXMLtoOpenStudio/resources/constructions.rb index 3691661467..b9435dcb62 100644 --- a/HPXMLtoOpenStudio/resources/constructions.rb +++ b/HPXMLtoOpenStudio/resources/constructions.rb @@ -1503,7 +1503,7 @@ def self.apply_foundation_slab(model, surface, constr_name, under_r, under_width, gap_r, perimeter_r, perimeter_depth, whole_r, concrete_thick_in, exposed_perimeter, - mat_carpet, soil_k_in, foundation) + mat_carpet, soil_k_in, foundation, ext_horiz_r, ext_horiz_width, ext_horiz_depth) return if surface.nil? @@ -1511,7 +1511,7 @@ def self.apply_foundation_slab(model, surface, constr_name, # Create Kiva foundation for slab foundation = create_kiva_slab_foundation(model, under_r, under_width, gap_r, perimeter_r, perimeter_depth, - concrete_thick_in, soil_k_in) + concrete_thick_in, soil_k_in, ext_horiz_r, ext_horiz_width, ext_horiz_depth) else # Kiva foundation (for crawlspace/basement) exists if (under_r > 0) && (under_width > 0) @@ -2005,7 +2005,7 @@ def self.get_gap_factor(install_grade, framing_factor, cavity_r) # @param soil_k_in [TODO] TODO # @return [TODO] TODO def self.create_kiva_slab_foundation(model, int_horiz_r, int_horiz_width, int_vert_r, - ext_vert_r, ext_horiz_r = nil, ext_horiz_width = nil, ext_horiz_depth = nil, ext_vert_depth, concrete_thick_in, soil_k_in) + ext_vert_r, ext_vert_depth, concrete_thick_in, soil_k_in, ext_horiz_r, ext_horiz_width, ext_horiz_depth) # Create the Foundation:Kiva object for slab foundations foundation = OpenStudio::Model::FoundationKiva.new(model) @@ -2032,14 +2032,12 @@ def self.create_kiva_slab_foundation(model, int_horiz_r, int_horiz_width, int_ve foundation.setExteriorVerticalInsulationDepth(UnitConversions.convert(ext_vert_depth, 'ft', 'm')) end - if ext_horiz_r && ext_horiz_width && ext_horiz_depth - # Exterior horizontal insulation - if (ext_horiz_r > 0) && (ext_horiz_depth > 0) && (ext_horiz_width > 0) - ext_horiz_mat = create_insulation_material(model, 'exterior horizontal ins', ext_horiz_r) - foundation.setExteriorHorizontalInsulationMaterial(ext_horiz_mat) - foundation.setExteriorHorizontalInsulationDepth(UnitConversions.convert(ext_horiz_depth, 'ft', 'm')) - foundation.setExteriorHorizontalInsulationWidth(ext_horiz_width) - end + # Exterior horizontal insulation + if (ext_horiz_r > 0) && (ext_horiz_depth > 0) && (ext_horiz_width > 0) + ext_horiz_mat = create_insulation_material(model, 'exterior horizontal ins', ext_horiz_r) + foundation.setExteriorHorizontalInsulationMaterial(ext_horiz_mat) + foundation.setExteriorHorizontalInsulationDepth(UnitConversions.convert(ext_horiz_depth, 'ft', 'm')) + foundation.setExteriorHorizontalInsulationWidth(ext_horiz_width) end foundation.setWallHeightAboveGrade(UnitConversions.convert(concrete_thick_in, 'in', 'm')) From 7d23178aa6a2df021a95226cc84c937d00f0bf9a Mon Sep 17 00:00:00 2001 From: Prateek Shrestha Date: Tue, 16 Jul 2024 11:45:57 -0600 Subject: [PATCH 18/41] Update BuildResidentialHPXML/measure.rb Co-authored-by: Scott Horowitz --- BuildResidentialHPXML/measure.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 2bdeb0e21a..3e23a4c1e5 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -642,7 +642,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('slab_exterior_horizontal_insulation_r', true) arg.setDisplayName('Slab: Exterior Horizontal Insulation Nominal R-value') arg.setUnits('h-ft^2-R/Btu') - arg.setDescription('Nominal R-value of the slab perimeter exterior horizontal (wing/skirt) insulation. Applies to slab-on-grade foundations and basement/crawlspace floors.') + arg.setDescription('Nominal R-value of the slab exterior horizontal (wing/skirt) insulation. Applies to slab-on-grade foundations and basement/crawlspace floors.') arg.setDefaultValue(0) args << arg From 4635e7e302723f29b142fc81178ddf86288f7115 Mon Sep 17 00:00:00 2001 From: prsh5175 Date: Tue, 16 Jul 2024 17:02:30 -0600 Subject: [PATCH 19/41] Partially addressed review comments. test_slabs modification remaining. --- HPXMLtoOpenStudio/measure.rb | 6 +++++- HPXMLtoOpenStudio/measure.xml | 8 ++++---- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.rb b/HPXMLtoOpenStudio/measure.rb index 373cf9bb40..7df41ca40f 100644 --- a/HPXMLtoOpenStudio/measure.rb +++ b/HPXMLtoOpenStudio/measure.rb @@ -1320,10 +1320,14 @@ def add_foundation_slab(model, weather, spaces, slab, z_origin, exposed_length, end soil_k_in = UnitConversions.convert(@hpxml_bldg.site.ground_conductivity, 'ft', 'in') + ext_horiz_r = slab.exterior_horizontal_insulation_r_value + ext_horiz_width = slab.exterior_horizontal_insulation_width + ext_horiz_depth = slab.exterior_horizontal_insulation_depth_below_grade + Constructions.apply_foundation_slab(model, surface, "#{slab.id} construction", slab_under_r, slab_under_width, slab_gap_r, slab_perim_r, slab_perim_depth, slab_whole_r, slab.thickness, - exposed_length, mat_carpet, soil_k_in, kiva_foundation) + exposed_length, mat_carpet, soil_k_in, kiva_foundation, ext_horiz_r, ext_horiz_width, ext_horiz_depth) kiva_foundation = surface.adjacentFoundation.get diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 40ca1699f4..0a838eee5f 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 22721f65-7983-41ec-a818-55c76a744fc3 - 2024-07-15T18:11:11Z + b16921bd-0e5e-4676-b373-9b70927ae99e + 2024-07-16T22:26:11Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -183,7 +183,7 @@ measure.rb rb script - 4B9F6763 + FDB19F65 airflow.rb @@ -207,7 +207,7 @@ constructions.rb rb resource - 75DFD9C0 + 7028CBB6 data/Xing_okstate_0664D_13659_Table_A-3.csv From 2b7c80f3815dfeb2a55f61986a79f42375c0bf10 Mon Sep 17 00:00:00 2001 From: prsh5175 Date: Tue, 16 Jul 2024 17:15:11 -0600 Subject: [PATCH 20/41] Comments added with TODO identifying added parameters. --- HPXMLtoOpenStudio/resources/constructions.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/HPXMLtoOpenStudio/resources/constructions.rb b/HPXMLtoOpenStudio/resources/constructions.rb index b9435dcb62..0f87a0487c 100644 --- a/HPXMLtoOpenStudio/resources/constructions.rb +++ b/HPXMLtoOpenStudio/resources/constructions.rb @@ -2003,6 +2003,9 @@ def self.get_gap_factor(install_grade, framing_factor, cavity_r) # @param ext_vert_depth [TODO] TODO # @param concrete_thick_in [TODO] TODO # @param soil_k_in [TODO] TODO + # @param ext_horiz_r [TODO] TODO + # @param ext_horiz_width [TODO] TODO + # @param ext_horiz_depth [TODO] TODO # @return [TODO] TODO def self.create_kiva_slab_foundation(model, int_horiz_r, int_horiz_width, int_vert_r, ext_vert_r, ext_vert_depth, concrete_thick_in, soil_k_in, ext_horiz_r, ext_horiz_width, ext_horiz_depth) From 8d61af234ab5bbf494f0414db26b2d52e8a4a552 Mon Sep 17 00:00:00 2001 From: prsh5175 Date: Tue, 16 Jul 2024 17:22:19 -0600 Subject: [PATCH 21/41] Documentation comment added per review comment. --- docs/source/workflow_inputs.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 045d37a17d..e5e9ab57f3 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -1449,7 +1449,7 @@ Each space type that borders the ground (i.e., basement, crawlspace, garage, and ``UnderSlabInsulation/SystemIdentifier`` id Yes Unique identifier ``UnderSlabInsulation/Layer/NominalRValue`` double F-ft2-hr/Btu >= 0 Yes R-value of horizontal insulation (see figure below) ``UnderSlabInsulation/Layer/InsulationWidth`` double ft >= 0 See [#]_ Width from slab edge inward of horizontal insulation - ``UnderSlabInsulation/Layer/InsulationSpansEntireSlab`` boolean See [#]_ Whether horizontal insulation spans entire slab + ``UnderSlabInsulation/Layer/InsulationSpansEntireSlab`` boolean See [#]_ See [#]_ Whether horizontal insulation spans entire slab ``extension/GapInsulationRValue`` double F-ft2-hr/Btu >= 0 No See [#]_ R-value of gap insulation (see figure below) ``extension/CarpetFraction`` double frac >= 0, <= 1 No See [#]_ Fraction of slab covered by carpet ``extension/CarpetRValue`` double F-ft2-hr/Btu >= 0 No See [#]_ Carpet R-value @@ -1467,6 +1467,7 @@ Each space type that borders the ground (i.e., basement, crawlspace, garage, and For foundation types with walls, DepthBelowGrade is ignored as the slab's position relative to grade is determined by the ``FoundationWall/DepthBelowGrade`` value(s). .. [#] InsulationWidth only required if InsulationSpansEntireSlab=true is not provided. .. [#] InsulationSpansEntireSlab=true only required if InsulationWidth is not provided. + .. [#] .. [#] InsulationSpansEntireSlab=true only required if InsulationWidth is not provided. .. [#] If GapInsulationRValue not provided, defaults to 5.0 if there is under slab (horizontal) insulation, otherwise 0.0. .. [#] If CarpetFraction not provided, defaults to 0.8 when adjacent to conditioned space, otherwise 0.0. .. [#] If CarpetRValue not provided, defaults to 2.0 when adjacent to conditioned space, otherwise 0.0. From 0044ff9a4a735997174d60cbd2f2ca6605977eae Mon Sep 17 00:00:00 2001 From: prsh5175 Date: Thu, 18 Jul 2024 15:47:34 -0600 Subject: [PATCH 22/41] Temporary commit. --- HPXMLtoOpenStudio/measure.xml | 12 ++++++++--- HPXMLtoOpenStudio/tests/test_enclosure.rb | 25 ++++++++++++++--------- 2 files changed, 24 insertions(+), 13 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 348ea786e1..5a95e39b30 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 23af1bb6-dd07-404e-8edc-821b12b9352a - 2024-07-18T01:03:25Z + 228d5057-84bf-49f3-b975-4a145258d103 + 2024-07-18T21:42:50Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -629,6 +629,12 @@ resource 93120E27 + + in.schedules.csv + csv + test + 135B2F53 + test_airflow.rb rb @@ -651,7 +657,7 @@ test_enclosure.rb rb test - B98B97AD + 4AB85A69 test_generator.rb diff --git a/HPXMLtoOpenStudio/tests/test_enclosure.rb b/HPXMLtoOpenStudio/tests/test_enclosure.rb index 7f0c26cc9a..5d06e19ab2 100644 --- a/HPXMLtoOpenStudio/tests/test_enclosure.rb +++ b/HPXMLtoOpenStudio/tests/test_enclosure.rb @@ -514,16 +514,20 @@ def test_slabs args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) # Slab - slabs_values = [{ perimeter_r: 0.0, under_r: 0.0, gap_r: nil, under_span: false, layer_names: ['concrete', 'floor covering'] }, - { perimeter_r: 0.0, under_r: 0.0, gap_r: 5.0, under_span: false, layer_names: ['concrete', 'floor covering', 'interior vertical ins'] }, - { perimeter_r: 5.0, under_r: 0.0, gap_r: nil, under_span: false, layer_names: ['concrete', 'floor covering', 'exterior vertical ins'] }, - { perimeter_r: 20.0, under_r: 0.0, gap_r: nil, under_span: false, layer_names: ['concrete', 'floor covering', 'exterior vertical ins'] }, - { perimeter_r: 0.0, under_r: 5.0, gap_r: nil, under_span: false, layer_names: ['concrete', 'floor covering', 'interior horizontal ins', 'interior vertical ins'] }, - { perimeter_r: 0.0, under_r: 20.0, gap_r: nil, under_span: false, layer_names: ['concrete', 'floor covering', 'interior horizontal ins', 'interior vertical ins'] }, - { perimeter_r: 0.0, under_r: 5.0, gap_r: nil, under_span: true, layer_names: ['slab rigid ins', 'concrete', 'floor covering', 'interior vertical ins'] }, - { perimeter_r: 0.0, under_r: 20.0, gap_r: nil, under_span: true, layer_names: ['slab rigid ins', 'concrete', 'floor covering', 'interior vertical ins'] }, - { perimeter_r: 5.0, under_r: 5.0, gap_r: nil, under_span: false, layer_names: ['concrete', 'floor covering', 'interior horizontal ins', 'interior vertical ins', 'exterior vertical ins'] }, - { perimeter_r: 20.0, under_r: 20.0, gap_r: 20.0, under_span: false, layer_names: ['concrete', 'floor covering', 'interior horizontal ins', 'interior vertical ins', 'exterior vertical ins'] }] + slabs_values = [{ perimeter_r: 0.0, under_r: 0.0, gap_r: nil, under_span: false, exterior_horizontal_r: 0.0, layer_names: ['concrete', 'floor covering'] }, + { perimeter_r: 0.0, under_r: 0.0, gap_r: 5.0, under_span: false, exterior_horizontal_r: 0.0, layer_names: ['concrete', 'floor covering', 'interior vertical ins'] }, + { perimeter_r: 5.0, under_r: 0.0, gap_r: nil, under_span: false, exterior_horizontal_r: 0.0, layer_names: ['concrete', 'floor covering', 'exterior vertical ins'] }, + { perimeter_r: 5.0, under_r: 0.0, gap_r: nil, under_span: false, exterior_horizontal_r: 5.0, layer_names: ['concrete', 'floor covering', 'exterior vertical ins', 'exterior horizontal ins'] }, + { perimeter_r: 20.0, under_r: 0.0, gap_r: nil, under_span: false, exterior_horizontal_r: 0.0, layer_names: ['concrete', 'floor covering', 'exterior vertical ins'] }, + { perimeter_r: 20.0, under_r: 0.0, gap_r: nil, under_span: false, exterior_horizontal_r: 20.0, layer_names: ['concrete', 'floor covering', 'exterior vertical ins', 'exterior horizontal ins'] }, + { perimeter_r: 0.0, under_r: 5.0, gap_r: nil, under_span: false, exterior_horizontal_r: 0.0, layer_names: ['concrete', 'floor covering', 'interior horizontal ins', 'interior vertical ins'] }, + { perimeter_r: 0.0, under_r: 20.0, gap_r: nil, under_span: false, exterior_horizontal_r: 0.0, layer_names: ['concrete', 'floor covering', 'interior horizontal ins', 'interior vertical ins'] }, + { perimeter_r: 0.0, under_r: 5.0, gap_r: nil, under_span: true, exterior_horizontal_r: 0.0, layer_names: ['slab rigid ins', 'concrete', 'floor covering', 'interior vertical ins'] }, + { perimeter_r: 0.0, under_r: 20.0, gap_r: nil, under_span: true, exterior_horizontal_r: 0.0, layer_names: ['slab rigid ins', 'concrete', 'floor covering', 'interior vertical ins'] }, + { perimeter_r: 5.0, under_r: 5.0, gap_r: nil, exterior_horizontal_r: 0.0, under_span: false, layer_names: ['concrete', 'floor covering', 'interior horizontal ins', 'interior vertical ins', 'exterior vertical ins'] }, + { perimeter_r: 5.0, under_r: 5.0, gap_r: nil, exterior_horizontal_r: 5.0, under_span: false, layer_names: ['concrete', 'floor covering', 'interior horizontal ins', 'interior vertical ins', 'exterior vertical ins', 'exterior horizontal ins'] }, + { perimeter_r: 20.0, under_r: 20.0, gap_r: 20.0, under_span: false, exterior_horizontal_r: 0.0, layer_names: ['concrete', 'floor covering', 'interior horizontal ins', 'interior vertical ins', 'exterior vertical ins'] }, + { perimeter_r: 20.0, under_r: 20.0, gap_r: 20.0, under_span: false, exterior_horizontal_r: 20.0, layer_names: ['concrete', 'floor covering', 'interior horizontal ins', 'interior vertical ins', 'exterior vertical ins', 'exterior horizontal ins'] }] hpxml, hpxml_bldg = _create_hpxml('base-foundation-slab.xml') slabs_values.each do |slab_values| @@ -538,6 +542,7 @@ def test_slabs hpxml_bldg.slabs[0].under_slab_insulation_spans_entire_slab = nil end hpxml_bldg.slabs[0].gap_insulation_r_value = slab_values[:gap_r] + hpxml_bldg.slabs[0].exterior_horizontal_r_value = slab_values[:exterior_horizontal_r] XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) model, hpxml, hpxml_bldg = _test_measure(args_hash) From c013b49cc10738061018d53d4ba9c8e79fc9991c Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Tue, 23 Jul 2024 15:22:33 -0600 Subject: [PATCH 23/41] Fix tests and docs. --- HPXMLtoOpenStudio/measure.xml | 16 +-- HPXMLtoOpenStudio/resources/hpxml.rb | 97 ++++++++++--------- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 12 +++ HPXMLtoOpenStudio/tests/test_defaults.rb | 26 ++++- docs/source/workflow_inputs.rst | 12 +-- .../base-foundation-basement-garage.xml | 4 - .../sample_files/base-foundation-complex.xml | 8 -- .../sample_files/base-foundation-multiple.xml | 4 - 8 files changed, 96 insertions(+), 83 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 04e11a14ed..63b8405845 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - ed920450-e46b-4e30-8e18-2ce100e49428 - 2024-07-18T19:16:09Z + e47f0352-59ab-4153-8579-8b2c57ce0c82 + 2024-07-23T21:19:13Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -345,13 +345,13 @@ hpxml.rb rb resource - 8BED5571 + DC5C39D9 hpxml_defaults.rb rb resource - CCAD07C4 + E171B6CF hpxml_schema/HPXML.xsd @@ -629,12 +629,6 @@ resource 93120E27 - - in.schedules.csv - csv - test - 135B2F53 - test_airflow.rb rb @@ -651,7 +645,7 @@ test_defaults.rb rb test - 853CC6A0 + 0F047BE4 test_enclosure.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index fa81ccf394..c2ec0f8c19 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -5360,56 +5360,63 @@ def to_doc(building) XMLHelper.add_element(slab, 'Thickness', @thickness, :float, @thickness_isdefaulted) unless @thickness.nil? XMLHelper.add_element(slab, 'ExposedPerimeter', @exposed_perimeter, :float) unless @exposed_perimeter.nil? XMLHelper.add_element(slab, 'DepthBelowGrade', @depth_below_grade, :float, @depth_below_grade_isdefaulted) unless @depth_below_grade.nil? - insulation = XMLHelper.add_element(slab, 'PerimeterInsulation') - sys_id = XMLHelper.add_element(insulation, 'SystemIdentifier') - if not @perimeter_insulation_id.nil? - XMLHelper.add_attribute(sys_id, 'id', @perimeter_insulation_id) - else - XMLHelper.add_attribute(sys_id, 'id', @id + 'PerimeterInsulation') - end - layer = XMLHelper.add_element(insulation, 'Layer') - if not @perimeter_insulation_material.nil? - material = XMLHelper.add_element(layer, 'InsulationMaterial') - values = @perimeter_insulation_material.split('/') - XMLHelper.add_element(material, values[0], values[1], :string) - end - XMLHelper.add_element(layer, 'NominalRValue', @perimeter_insulation_r_value, :float) unless @perimeter_insulation_r_value.nil? - XMLHelper.add_element(layer, 'InsulationDepth', @perimeter_insulation_depth, :float) unless @perimeter_insulation_depth.nil? - insulation = XMLHelper.add_element(slab, 'ExteriorHorizontalInsulation') - sys_id = XMLHelper.add_element(insulation, 'SystemIdentifier') - if not @exterior_horizontal_insulation_id.nil? - XMLHelper.add_attribute(sys_id, 'id', @exterior_horizontal_insulation_id) - else - XMLHelper.add_attribute(sys_id, 'id', @id + 'ExteriorHorizontalInsulation') - end - layer = XMLHelper.add_element(insulation, 'Layer') - if not @exterior_horizontal_insulation_material.nil? - material = XMLHelper.add_element(layer, 'InsulationMaterial') - values = @exterior_horizontal_insulation_material.split('/') - XMLHelper.add_element(material, values[0], values[1], :string) + if (not @perimeter_insulation_id.nil?) || (not @perimeter_insulation_r_value.nil?) || (not @perimeter_insulation_depth.nil?) + insulation = XMLHelper.add_element(slab, 'PerimeterInsulation') + sys_id = XMLHelper.add_element(insulation, 'SystemIdentifier') + if not @perimeter_insulation_id.nil? + XMLHelper.add_attribute(sys_id, 'id', @perimeter_insulation_id) + else + XMLHelper.add_attribute(sys_id, 'id', @id + 'PerimeterInsulation') + end + layer = XMLHelper.add_element(insulation, 'Layer') + if not @perimeter_insulation_material.nil? + material = XMLHelper.add_element(layer, 'InsulationMaterial') + values = @perimeter_insulation_material.split('/') + XMLHelper.add_element(material, values[0], values[1], :string) + end + XMLHelper.add_element(layer, 'NominalRValue', @perimeter_insulation_r_value, :float, @perimeter_insulation_r_value_isdefaulted) unless @perimeter_insulation_r_value.nil? + XMLHelper.add_element(layer, 'InsulationDepth', @perimeter_insulation_depth, :float, @perimeter_insulation_depth_isdefaulted) unless @perimeter_insulation_depth.nil? end - XMLHelper.add_element(layer, 'NominalRValue', @exterior_horizontal_insulation_r_value, :float) unless @exterior_horizontal_insulation_r_value.nil? - XMLHelper.add_element(layer, 'InsulationWidth', @exterior_horizontal_insulation_width, :float) unless @exterior_horizontal_insulation_width.nil? - XMLHelper.add_element(layer, 'InsulationDepthBelowGrade', @exterior_horizontal_insulation_depth_below_grade, :float) unless @exterior_horizontal_insulation_depth_below_grade.nil? - - insulation = XMLHelper.add_element(slab, 'UnderSlabInsulation') - sys_id = XMLHelper.add_element(insulation, 'SystemIdentifier') - if not @under_slab_insulation_id.nil? - XMLHelper.add_attribute(sys_id, 'id', @under_slab_insulation_id) - else - XMLHelper.add_attribute(sys_id, 'id', @id + 'UnderSlabInsulation') + if (not @exterior_horizontal_insulation_id.nil?) || (not @exterior_horizontal_insulation_r_value.nil?) || (not @exterior_horizontal_insulation_width.nil?) || (not @exterior_horizontal_insulation_depth_below_grade.nil?) + insulation = XMLHelper.add_element(slab, 'ExteriorHorizontalInsulation') + sys_id = XMLHelper.add_element(insulation, 'SystemIdentifier') + if not @exterior_horizontal_insulation_id.nil? + XMLHelper.add_attribute(sys_id, 'id', @exterior_horizontal_insulation_id) + else + XMLHelper.add_attribute(sys_id, 'id', @id + 'ExteriorHorizontalInsulation') + end + layer = XMLHelper.add_element(insulation, 'Layer') + if not @exterior_horizontal_insulation_material.nil? + material = XMLHelper.add_element(layer, 'InsulationMaterial') + values = @exterior_horizontal_insulation_material.split('/') + XMLHelper.add_element(material, values[0], values[1], :string) + end + XMLHelper.add_element(layer, 'NominalRValue', @exterior_horizontal_insulation_r_value, :float, @exterior_horizontal_insulation_r_value_isdefaulted) unless @exterior_horizontal_insulation_r_value.nil? + XMLHelper.add_element(layer, 'InsulationWidth', @exterior_horizontal_insulation_width, :float, @exterior_horizontal_insulation_width_isdefaulted) unless @exterior_horizontal_insulation_width.nil? + XMLHelper.add_element(layer, 'InsulationDepthBelowGrade', @exterior_horizontal_insulation_depth_below_grade, :float, @exterior_horizontal_insulation_depth_below_grade_isdefaulted) unless @exterior_horizontal_insulation_depth_below_grade.nil? end - layer = XMLHelper.add_element(insulation, 'Layer') - if not @under_slab_insulation_material.nil? - material = XMLHelper.add_element(layer, 'InsulationMaterial') - values = @under_slab_insulation_material.split('/') - XMLHelper.add_element(material, values[0], values[1], :string) + + if (not @under_slab_insulation_id.nil?) || (not @under_slab_insulation_r_value.nil?) || (not @under_slab_insulation_width.nil?) || (not @under_slab_insulation_spans_entire_slab.nil?) + insulation = XMLHelper.add_element(slab, 'UnderSlabInsulation') + sys_id = XMLHelper.add_element(insulation, 'SystemIdentifier') + if not @under_slab_insulation_id.nil? + XMLHelper.add_attribute(sys_id, 'id', @under_slab_insulation_id) + else + XMLHelper.add_attribute(sys_id, 'id', @id + 'UnderSlabInsulation') + end + layer = XMLHelper.add_element(insulation, 'Layer') + if not @under_slab_insulation_material.nil? + material = XMLHelper.add_element(layer, 'InsulationMaterial') + values = @under_slab_insulation_material.split('/') + XMLHelper.add_element(material, values[0], values[1], :string) + end + XMLHelper.add_element(layer, 'NominalRValue', @under_slab_insulation_r_value, :float, @under_slab_insulation_r_value_isdefaulted) unless @under_slab_insulation_r_value.nil? + XMLHelper.add_element(layer, 'InsulationWidth', @under_slab_insulation_width, :float, @under_slab_insulation_width_isdefaulted) unless @under_slab_insulation_width.nil? + XMLHelper.add_element(layer, 'InsulationSpansEntireSlab', @under_slab_insulation_spans_entire_slab, :boolean, @under_slab_insulation_spans_entire_slab_isdefaulted) unless @under_slab_insulation_spans_entire_slab.nil? end - XMLHelper.add_element(layer, 'NominalRValue', @under_slab_insulation_r_value, :float) unless @under_slab_insulation_r_value.nil? - XMLHelper.add_element(layer, 'InsulationWidth', @under_slab_insulation_width, :float) unless @under_slab_insulation_width.nil? - XMLHelper.add_element(layer, 'InsulationSpansEntireSlab', @under_slab_insulation_spans_entire_slab, :boolean) unless @under_slab_insulation_spans_entire_slab.nil? + XMLHelper.add_extension(slab, 'GapInsulationRValue', @gap_insulation_r_value, :float, @gap_insulation_r_value_isdefaulted) unless @gap_insulation_r_value.nil? XMLHelper.add_extension(slab, 'CarpetFraction', @carpet_fraction, :float, @carpet_fraction_isdefaulted) unless @carpet_fraction.nil? XMLHelper.add_extension(slab, 'CarpetRValue', @carpet_r_value, :float, @carpet_r_value_isdefaulted) unless @carpet_r_value.nil? diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index ce54c4b729..3ba8671da1 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -1417,6 +1417,18 @@ def self.apply_slabs(hpxml_bldg) slab.depth_below_grade = nil # Ignore Slab/DepthBelowGrade; use values from adjacent foundation walls instead end end + if slab.exterior_horizontal_insulation_r_value.nil? + slab.exterior_horizontal_insulation_r_value = 0.0 + slab.exterior_horizontal_insulation_r_value_isdefaulted = true + end + if slab.exterior_horizontal_insulation_width.nil? + slab.exterior_horizontal_insulation_width = 0.0 + slab.exterior_horizontal_insulation_width_isdefaulted = true + end + if slab.exterior_horizontal_insulation_depth_below_grade.nil? + slab.exterior_horizontal_insulation_depth_below_grade = 0.0 + slab.exterior_horizontal_insulation_depth_below_grade_isdefaulted = true + end end end diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index de47cee932..25eae195c2 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -983,9 +983,12 @@ def test_slabs hpxml_bldg.slabs[0].carpet_fraction = 0.5 hpxml_bldg.slabs[0].depth_below_grade = 2.0 hpxml_bldg.slabs[0].gap_insulation_r_value = 10.0 + hpxml_bldg.slabs[0].exterior_horizontal_insulation_r_value = 9.9 + hpxml_bldg.slabs[0].exterior_horizontal_insulation_width = 8.8 + hpxml_bldg.slabs[0].exterior_horizontal_insulation_depth_below_grade = 7.7 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_slab_values(default_hpxml_bldg.slabs[0], 7.0, 1.1, 0.5, nil, 10.0) + _test_default_slab_values(default_hpxml_bldg.slabs[0], 7.0, 1.1, 0.5, nil, 10.0, 9.9, 8.8, 7.7) # Test defaults w/ conditioned basement hpxml_bldg.slabs[0].thickness = nil @@ -993,9 +996,12 @@ def test_slabs hpxml_bldg.slabs[0].carpet_fraction = nil hpxml_bldg.slabs[0].depth_below_grade = nil hpxml_bldg.slabs[0].gap_insulation_r_value = nil + hpxml_bldg.slabs[0].exterior_horizontal_insulation_r_value = nil + hpxml_bldg.slabs[0].exterior_horizontal_insulation_width = nil + hpxml_bldg.slabs[0].exterior_horizontal_insulation_depth_below_grade = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_slab_values(default_hpxml_bldg.slabs[0], 4.0, 2.0, 0.8, nil, 0.0) + _test_default_slab_values(default_hpxml_bldg.slabs[0], 4.0, 2.0, 0.8, nil, 0.0, 0.0, 0.0, 0.0) # Test defaults w/ crawlspace hpxml, hpxml_bldg = _create_hpxml('base-foundation-unvented-crawlspace.xml') @@ -1004,9 +1010,12 @@ def test_slabs hpxml_bldg.slabs[0].carpet_fraction = nil hpxml_bldg.slabs[0].depth_below_grade = nil hpxml_bldg.slabs[0].gap_insulation_r_value = nil + hpxml_bldg.slabs[0].exterior_horizontal_insulation_r_value = nil + hpxml_bldg.slabs[0].exterior_horizontal_insulation_width = nil + hpxml_bldg.slabs[0].exterior_horizontal_insulation_depth_below_grade = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_slab_values(default_hpxml_bldg.slabs[0], 0.0, 0.0, 0.0, nil, 0.0) + _test_default_slab_values(default_hpxml_bldg.slabs[0], 0.0, 0.0, 0.0, nil, 0.0, 0.0, 0.0, 0.0) # Test defaults w/ slab-on-grade hpxml, hpxml_bldg = _create_hpxml('base-foundation-slab.xml') @@ -1015,9 +1024,12 @@ def test_slabs hpxml_bldg.slabs[0].carpet_fraction = nil hpxml_bldg.slabs[0].depth_below_grade = nil hpxml_bldg.slabs[0].gap_insulation_r_value = nil + hpxml_bldg.slabs[0].exterior_horizontal_insulation_r_value = nil + hpxml_bldg.slabs[0].exterior_horizontal_insulation_width = nil + hpxml_bldg.slabs[0].exterior_horizontal_insulation_depth_below_grade = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_slab_values(default_hpxml_bldg.slabs[0], 4.0, 2.0, 0.8, 0.0, 5.0) + _test_default_slab_values(default_hpxml_bldg.slabs[0], 4.0, 2.0, 0.8, 0.0, 5.0, 0.0, 0.0, 0.0) end def test_windows @@ -4579,7 +4591,8 @@ def _test_default_floor_values(floor, int_finish_type, int_finish_thickness) end end - def _test_default_slab_values(slab, thickness, carpet_r_value, carpet_fraction, depth_below_grade, gap_rvalue) + def _test_default_slab_values(slab, thickness, carpet_r_value, carpet_fraction, depth_below_grade, gap_rvalue, + ext_horiz_r, ext_horiz_width, ext_horiz_depth) assert_equal(thickness, slab.thickness) assert_equal(carpet_r_value, slab.carpet_r_value) assert_equal(carpet_fraction, slab.carpet_fraction) @@ -4589,6 +4602,9 @@ def _test_default_slab_values(slab, thickness, carpet_r_value, carpet_fraction, assert_equal(depth_below_grade, slab.depth_below_grade) end assert_equal(gap_rvalue, slab.gap_insulation_r_value) + assert_equal(ext_horiz_r, slab.exterior_horizontal_insulation_r_value) + assert_equal(ext_horiz_width, slab.exterior_horizontal_insulation_width) + assert_equal(ext_horiz_depth, slab.exterior_horizontal_insulation_depth_below_grade) end def _test_default_window_values(hpxml_bldg, ext_summer_sfs, ext_winter_sfs, int_summer_sfs, int_winter_sfs, fraction_operable, azimuths) diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 727e885121..9479168c05 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -1442,14 +1442,14 @@ Each space type that borders the ground (i.e., basement, crawlspace, garage, and ``PerimeterInsulation/SystemIdentifier`` id Yes Unique identifier ``PerimeterInsulation/Layer/NominalRValue`` double F-ft2-hr/Btu >= 0 Yes R-value of vertical insulation (see figure below) ``PerimeterInsulation/Layer/InsulationDepth`` double ft >= 0 Yes Depth from top of slab to bottom of vertical insulation - ``ExteriorHorizontalInsulation/SystemIdentifier`` id Yes Unique identifier - ``ExteriorHorizontalInsulation/Layer/NominalRValue`` double F-ft2-hr/Btu >= 0 Yes R-value of exterior horizontal insulation (see figure below) - ``ExteriorHorizontalInsulation/Layer/InsulationWidth`` double ft >= 0 Yes Width of exterior horizontal insulation from slab edge outward - ``ExteriorHorizontalInsulation/Layer/InsulationDepthBelowGrade`` double ft >= 0 Yes Depth from grade to the top of exterior horizontal insulation + ``ExteriorHorizontalInsulation/SystemIdentifier`` id See [#]_ Unique identifier + ``ExteriorHorizontalInsulation/Layer/NominalRValue`` double F-ft2-hr/Btu >= 0 No 0 R-value of exterior horizontal insulation (see figure below) + ``ExteriorHorizontalInsulation/Layer/InsulationWidth`` double ft >= 0 No 0 Width of exterior horizontal insulation from slab edge outward + ``ExteriorHorizontalInsulation/Layer/InsulationDepthBelowGrade`` double ft >= 0 No 0 Depth from grade to the top of exterior horizontal insulation ``UnderSlabInsulation/SystemIdentifier`` id Yes Unique identifier ``UnderSlabInsulation/Layer/NominalRValue`` double F-ft2-hr/Btu >= 0 Yes R-value of horizontal insulation (see figure below) ``UnderSlabInsulation/Layer/InsulationWidth`` double ft >= 0 See [#]_ Width from slab edge inward of horizontal insulation - ``UnderSlabInsulation/Layer/InsulationSpansEntireSlab`` boolean See [#]_ See [#]_ Whether horizontal insulation spans entire slab + ``UnderSlabInsulation/Layer/InsulationSpansEntireSlab`` boolean See [#]_ Whether horizontal insulation spans entire slab ``extension/GapInsulationRValue`` double F-ft2-hr/Btu >= 0 No See [#]_ R-value of gap insulation (see figure below) ``extension/CarpetFraction`` double frac >= 0, <= 1 No See [#]_ Fraction of slab covered by carpet ``extension/CarpetRValue`` double F-ft2-hr/Btu >= 0 No See [#]_ Carpet R-value @@ -1465,9 +1465,9 @@ Each space type that borders the ground (i.e., basement, crawlspace, garage, and So a basement slab edge adjacent to a garage or crawlspace, for example, should not be included. .. [#] If DepthBelowGrade not provided, defaults to zero for foundation types without walls. For foundation types with walls, DepthBelowGrade is ignored as the slab's position relative to grade is determined by the ``FoundationWall/DepthBelowGrade`` value(s). + .. [#] SystemIdentifier only required if ExteriorHorizontalInsulation is provided. .. [#] InsulationWidth only required if InsulationSpansEntireSlab=true is not provided. .. [#] InsulationSpansEntireSlab=true only required if InsulationWidth is not provided. - .. [#] .. [#] InsulationSpansEntireSlab=true only required if InsulationWidth is not provided. .. [#] If GapInsulationRValue not provided, defaults to 5.0 if there is under slab (horizontal) insulation, otherwise 0.0. .. [#] If CarpetFraction not provided, defaults to 0.8 when adjacent to conditioned space, otherwise 0.0. .. [#] If CarpetRValue not provided, defaults to 2.0 when adjacent to conditioned space, otherwise 0.0. diff --git a/workflow/sample_files/base-foundation-basement-garage.xml b/workflow/sample_files/base-foundation-basement-garage.xml index c533d094a7..6f41352252 100644 --- a/workflow/sample_files/base-foundation-basement-garage.xml +++ b/workflow/sample_files/base-foundation-basement-garage.xml @@ -314,10 +314,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-foundation-complex.xml b/workflow/sample_files/base-foundation-complex.xml index 93ae6fce33..2b053bd907 100644 --- a/workflow/sample_files/base-foundation-complex.xml +++ b/workflow/sample_files/base-foundation-complex.xml @@ -307,10 +307,6 @@ 0.0 - - - - @@ -336,10 +332,6 @@ 1.0 - - - - diff --git a/workflow/sample_files/base-foundation-multiple.xml b/workflow/sample_files/base-foundation-multiple.xml index d6513e3f36..10c331d868 100644 --- a/workflow/sample_files/base-foundation-multiple.xml +++ b/workflow/sample_files/base-foundation-multiple.xml @@ -353,10 +353,6 @@ 0.0 - - - - From 8b6aec152d3e9442d04844d65e21222e64e99ffe Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Tue, 23 Jul 2024 15:35:57 -0600 Subject: [PATCH 24/41] Change measure arguments to be optional. --- BuildResidentialHPXML/README.md | 6 +++--- BuildResidentialHPXML/measure.rb | 9 +++------ BuildResidentialHPXML/measure.xml | 17 +++++++---------- workflow/hpxml_inputs.json | 6 ------ workflow/sample_files/base-appliances-coal.xml | 6 +----- ...se-appliances-dehumidifier-ief-portable.xml | 6 +----- ...-appliances-dehumidifier-ief-whole-home.xml | 6 +----- .../base-appliances-dehumidifier-multiple.xml | 6 +----- .../base-appliances-dehumidifier.xml | 6 +----- ...-freezer-temperature-dependent-schedule.xml | 6 +----- workflow/sample_files/base-appliances-gas.xml | 6 +----- .../sample_files/base-appliances-modified.xml | 6 +----- workflow/sample_files/base-appliances-none.xml | 6 +----- workflow/sample_files/base-appliances-oil.xml | 6 +----- .../sample_files/base-appliances-propane.xml | 6 +----- ...igerator-temperature-dependent-schedule.xml | 6 +----- workflow/sample_files/base-appliances-wood.xml | 6 +----- .../sample_files/base-atticroof-cathedral.xml | 6 +----- .../base-atticroof-conditioned.xml | 6 +----- workflow/sample_files/base-atticroof-flat.xml | 6 +----- .../base-atticroof-radiant-barrier-ceiling.xml | 6 +----- .../base-atticroof-radiant-barrier.xml | 6 +----- .../base-atticroof-unvented-insulated-roof.xml | 6 +----- .../sample_files/base-atticroof-vented.xml | 6 +----- .../sample_files/base-battery-scheduled.xml | 6 +----- workflow/sample_files/base-battery.xml | 6 +----- .../base-bldgtype-mf-whole-building.xml | 12 ++---------- .../base-bldgtype-sfa-unit-2stories.xml | 6 +----- ...e-bldgtype-sfa-unit-atticroof-cathedral.xml | 6 +----- ...fa-unit-infil-compartmentalization-test.xml | 6 +----- .../sample_files/base-bldgtype-sfa-unit.xml | 6 +----- .../base-dhw-combi-tankless-outside.xml | 6 +----- .../sample_files/base-dhw-combi-tankless.xml | 6 +----- .../base-dhw-desuperheater-2-speed.xml | 6 +----- .../base-dhw-desuperheater-gshp.xml | 6 +----- .../base-dhw-desuperheater-hpwh.xml | 6 +----- .../base-dhw-desuperheater-tankless.xml | 6 +----- .../base-dhw-desuperheater-var-speed.xml | 6 +----- .../sample_files/base-dhw-desuperheater.xml | 6 +----- workflow/sample_files/base-dhw-dwhr.xml | 6 +----- .../base-dhw-indirect-detailed-setpoints.xml | 6 +----- .../sample_files/base-dhw-indirect-dse.xml | 6 +----- .../sample_files/base-dhw-indirect-outside.xml | 6 +----- .../base-dhw-indirect-standbyloss.xml | 6 +----- .../base-dhw-indirect-with-solar-fraction.xml | 6 +----- workflow/sample_files/base-dhw-indirect.xml | 6 +----- .../sample_files/base-dhw-jacket-electric.xml | 6 +----- workflow/sample_files/base-dhw-jacket-gas.xml | 6 +----- workflow/sample_files/base-dhw-jacket-hpwh.xml | 6 +----- .../sample_files/base-dhw-jacket-indirect.xml | 6 +----- .../base-dhw-low-flow-fixtures.xml | 6 +----- workflow/sample_files/base-dhw-multiple.xml | 6 +----- workflow/sample_files/base-dhw-none.xml | 6 +----- .../base-dhw-recirc-demand-scheduled.xml | 6 +----- .../sample_files/base-dhw-recirc-demand.xml | 6 +----- .../sample_files/base-dhw-recirc-manual.xml | 6 +----- .../sample_files/base-dhw-recirc-nocontrol.xml | 6 +----- .../base-dhw-recirc-temperature.xml | 6 +----- .../sample_files/base-dhw-recirc-timer.xml | 6 +----- .../base-dhw-solar-direct-evacuated-tube.xml | 6 +----- .../base-dhw-solar-direct-flat-plate.xml | 6 +----- .../sample_files/base-dhw-solar-direct-ics.xml | 6 +----- .../sample_files/base-dhw-solar-fraction.xml | 6 +----- .../base-dhw-solar-indirect-flat-plate.xml | 6 +----- .../base-dhw-solar-thermosyphon-flat-plate.xml | 6 +----- workflow/sample_files/base-dhw-tank-coal.xml | 6 +----- .../base-dhw-tank-detailed-setpoints.xml | 6 +----- .../sample_files/base-dhw-tank-elec-uef.xml | 6 +----- .../sample_files/base-dhw-tank-gas-outside.xml | 6 +----- .../sample_files/base-dhw-tank-gas-uef-fhr.xml | 6 +----- .../sample_files/base-dhw-tank-gas-uef.xml | 6 +----- workflow/sample_files/base-dhw-tank-gas.xml | 6 +----- ...e-dhw-tank-heat-pump-detailed-schedules.xml | 6 +----- ...heat-pump-operating-mode-heat-pump-only.xml | 6 +----- .../base-dhw-tank-heat-pump-outside.xml | 6 +----- .../base-dhw-tank-heat-pump-uef.xml | 6 +----- ...-dhw-tank-heat-pump-with-solar-fraction.xml | 6 +----- .../base-dhw-tank-heat-pump-with-solar.xml | 6 +----- .../sample_files/base-dhw-tank-heat-pump.xml | 6 +----- ...tratified-detailed-occupancy-stochastic.xml | 6 +----- .../base-dhw-tank-model-type-stratified.xml | 6 +----- workflow/sample_files/base-dhw-tank-oil.xml | 6 +----- workflow/sample_files/base-dhw-tank-wood.xml | 6 +----- .../base-dhw-tankless-detailed-setpoints.xml | 6 +----- .../base-dhw-tankless-electric-outside.xml | 6 +----- .../base-dhw-tankless-electric-uef.xml | 6 +----- .../base-dhw-tankless-electric.xml | 6 +----- .../sample_files/base-dhw-tankless-gas-uef.xml | 6 +----- ...se-dhw-tankless-gas-with-solar-fraction.xml | 6 +----- .../base-dhw-tankless-gas-with-solar.xml | 6 +----- .../sample_files/base-dhw-tankless-gas.xml | 6 +----- .../sample_files/base-dhw-tankless-propane.xml | 6 +----- .../base-enclosure-2stories-garage.xml | 12 ++---------- ...re-2stories-infil-leakiness-description.xml | 6 +----- .../sample_files/base-enclosure-2stories.xml | 6 +----- .../sample_files/base-enclosure-beds-1.xml | 6 +----- .../sample_files/base-enclosure-beds-2.xml | 6 +----- .../sample_files/base-enclosure-beds-4.xml | 6 +----- .../sample_files/base-enclosure-beds-5.xml | 6 +----- .../base-enclosure-ceilingtypes.xml | 6 +----- .../sample_files/base-enclosure-garage.xml | 12 ++---------- ...base-enclosure-infil-ach-house-pressure.xml | 6 +----- ...base-enclosure-infil-cfm-house-pressure.xml | 6 +----- .../base-enclosure-infil-cfm50.xml | 6 +----- .../sample_files/base-enclosure-infil-ela.xml | 6 +----- .../sample_files/base-enclosure-infil-flue.xml | 6 +----- ...e-enclosure-infil-leakiness-description.xml | 6 +----- .../base-enclosure-infil-natural-ach.xml | 6 +----- .../base-enclosure-infil-natural-cfm.xml | 6 +----- .../base-enclosure-orientations.xml | 6 +----- .../sample_files/base-enclosure-overhangs.xml | 6 +----- .../sample_files/base-enclosure-rooftypes.xml | 6 +----- .../base-enclosure-skylights-cathedral.xml | 6 +----- ...enclosure-skylights-physical-properties.xml | 6 +----- .../base-enclosure-skylights-shading.xml | 6 +----- .../base-enclosure-skylights-storms.xml | 6 +----- .../sample_files/base-enclosure-skylights.xml | 6 +----- .../base-enclosure-split-level.xml | 6 +----- .../base-enclosure-thermal-mass.xml | 6 +----- .../sample_files/base-enclosure-walltypes.xml | 6 +----- ...indows-natural-ventilation-availability.xml | 6 +----- .../base-enclosure-windows-none.xml | 6 +----- ...e-enclosure-windows-physical-properties.xml | 6 +----- .../base-enclosure-windows-shading-seasons.xml | 6 +----- .../base-enclosure-windows-shading.xml | 6 +----- .../base-enclosure-windows-storms.xml | 6 +----- .../base-foundation-basement-garage.xml | 6 +----- ...nditioned-basement-slab-insulation-full.xml | 6 +----- ...on-conditioned-basement-slab-insulation.xml | 6 +----- ...on-conditioned-basement-wall-insulation.xml | 6 +----- .../base-foundation-conditioned-crawlspace.xml | 6 +----- .../sample_files/base-foundation-multiple.xml | 6 +----- workflow/sample_files/base-foundation-slab.xml | 6 +----- ...tion-unconditioned-basement-above-grade.xml | 6 +----- ...ation-unconditioned-basement-assembly-r.xml | 6 +----- ...-unconditioned-basement-wall-insulation.xml | 6 +----- .../base-foundation-unconditioned-basement.xml | 6 +----- .../base-foundation-unvented-crawlspace.xml | 6 +----- ...oundation-vented-crawlspace-above-grade.xml | 6 +----- .../base-foundation-vented-crawlspace.xml | 6 +----- .../base-foundation-walkout-basement.xml | 6 +----- ...o-air-heat-pump-1-speed-autosize-factor.xml | 6 +----- ...r-to-air-heat-pump-1-speed-cooling-only.xml | 6 +----- ...-heat-pump-1-speed-heating-capacity-17f.xml | 6 +----- ...r-to-air-heat-pump-1-speed-heating-only.xml | 6 +----- ...-lockout-temperatures-research-features.xml | 6 +----- ...-heat-pump-1-speed-lockout-temperatures.xml | 6 +----- ...air-heat-pump-1-speed-research-features.xml | 6 +----- ...ir-to-air-heat-pump-1-speed-seer2-hspf2.xml | 6 +----- .../base-hvac-air-to-air-heat-pump-1-speed.xml | 6 +----- ...air-heat-pump-2-speed-research-features.xml | 6 +----- .../base-hvac-air-to-air-heat-pump-2-speed.xml | 6 +----- ...ir-heat-pump-var-speed-autosize-maxload.xml | 6 +----- ...ar-speed-backup-boiler-advanced-defrost.xml | 6 +----- ...mp-var-speed-backup-boiler-hvac-seasons.xml | 6 +----- ...ed-backup-boiler-switchover-temperature.xml | 6 +----- ...o-air-heat-pump-var-speed-backup-boiler.xml | 6 +----- ...ar-speed-backup-furnace-autosize-factor.xml | 6 +----- ...-air-heat-pump-var-speed-backup-furnace.xml | 6 +----- ...var-speed-detailed-performance-autosize.xml | 6 +----- ...speed-detailed-performance-heating-only.xml | 6 +----- ...ailed-performance-normalized-capacities.xml | 6 +----- ...detailed-performance-other-temperatures.xml | 6 +----- ...eat-pump-var-speed-detailed-performance.xml | 6 +----- ...-speed-max-power-ratio-schedule-10-mins.xml | 6 +----- ...ed-max-power-ratio-schedule-two-systems.xml | 6 +----- ...r-heat-pump-var-speed-research-features.xml | 6 +----- ...ase-hvac-air-to-air-heat-pump-var-speed.xml | 6 +----- .../base-hvac-autosize-sizing-controls.xml | 6 +----- workflow/sample_files/base-hvac-autosize.xml | 6 +----- .../base-hvac-boiler-coal-only.xml | 6 +----- .../base-hvac-boiler-elec-only.xml | 6 +----- ...base-hvac-boiler-gas-central-ac-1-speed.xml | 6 +----- .../base-hvac-boiler-gas-only-pilot.xml | 6 +----- .../sample_files/base-hvac-boiler-gas-only.xml | 6 +----- .../sample_files/base-hvac-boiler-oil-only.xml | 6 +----- .../base-hvac-boiler-propane-only.xml | 6 +----- .../base-hvac-boiler-wood-only.xml | 6 +----- ...central-ac-only-1-speed-autosize-factor.xml | 6 +----- ...base-hvac-central-ac-only-1-speed-seer2.xml | 6 +----- .../base-hvac-central-ac-only-1-speed.xml | 6 +----- ...ntral-ac-only-2-speed-research-features.xml | 6 +----- .../base-hvac-central-ac-only-2-speed.xml | 6 +----- ...var-speed-detailed-performance-autosize.xml | 6 +----- ...-ac-only-var-speed-detailed-performance.xml | 6 +----- ...only-var-speed-max-power-ratio-schedule.xml | 6 +----- .../base-hvac-central-ac-only-var-speed.xml | 6 +----- ...al-ac-plus-air-to-air-heat-pump-heating.xml | 6 +----- workflow/sample_files/base-hvac-dse.xml | 6 +----- ...-heat-pump-1-speed-lockout-temperatures.xml | 6 +----- ...-dual-fuel-air-to-air-heat-pump-1-speed.xml | 6 +----- ...-air-heat-pump-2-speed-advanced-defrost.xml | 6 +----- ...-dual-fuel-air-to-air-heat-pump-2-speed.xml | 6 +----- ...ual-fuel-air-to-air-heat-pump-var-speed.xml | 6 +----- ...c-dual-fuel-mini-split-heat-pump-ducted.xml | 6 +----- .../base-hvac-ducts-area-fractions.xml | 6 +----- .../base-hvac-ducts-area-multipliers.xml | 6 +----- .../sample_files/base-hvac-ducts-buried.xml | 6 +----- .../sample_files/base-hvac-ducts-defaults.xml | 6 +----- .../base-hvac-ducts-effective-rvalue.xml | 6 +----- .../base-hvac-ducts-leakage-cfm50.xml | 6 +----- .../base-hvac-ducts-leakage-percent.xml | 6 +----- .../base-hvac-ducts-shape-mixed.xml | 6 +----- .../base-hvac-ducts-shape-rectangular.xml | 6 +----- .../base-hvac-ducts-shape-round.xml | 6 +----- .../base-hvac-elec-resistance-only.xml | 6 +----- .../base-hvac-evap-cooler-furnace-gas.xml | 6 +----- .../base-hvac-evap-cooler-only-ducted.xml | 6 +----- .../base-hvac-evap-cooler-only.xml | 6 +----- .../base-hvac-fireplace-wood-only.xml | 6 +----- .../base-hvac-floor-furnace-propane-only.xml | 6 +----- .../base-hvac-furnace-coal-only.xml | 6 +----- ...se-hvac-furnace-elec-central-ac-1-speed.xml | 6 +----- .../base-hvac-furnace-elec-only.xml | 6 +----- ...ase-hvac-furnace-gas-central-ac-2-speed.xml | 6 +----- ...l-ac-var-speed-max-power-ratio-schedule.xml | 6 +----- ...e-hvac-furnace-gas-central-ac-var-speed.xml | 6 +----- ...e-hvac-furnace-gas-only-autosize-factor.xml | 6 +----- ...vac-furnace-gas-only-detailed-setpoints.xml | 6 +----- .../base-hvac-furnace-gas-only-pilot.xml | 6 +----- .../base-hvac-furnace-gas-only.xml | 6 +----- .../base-hvac-furnace-gas-room-ac.xml | 6 +----- .../base-hvac-furnace-oil-only.xml | 6 +----- .../base-hvac-furnace-propane-only.xml | 6 +----- .../base-hvac-furnace-wood-only.xml | 6 +----- .../sample_files/base-hvac-furnace-x3-dse.xml | 6 +----- ...ac-ground-to-air-heat-pump-cooling-only.xml | 6 +----- ...-air-heat-pump-detailed-geothermal-loop.xml | 6 +----- ...ac-ground-to-air-heat-pump-heating-only.xml | 6 +----- .../base-hvac-ground-to-air-heat-pump.xml | 6 +----- ...ll-quality-air-to-air-heat-pump-1-speed.xml | 6 +----- ...ll-quality-air-to-air-heat-pump-2-speed.xml | 6 +----- ...eat-pump-var-speed-detailed-performance.xml | 6 +----- ...-quality-air-to-air-heat-pump-var-speed.xml | 6 +----- ...-quality-furnace-gas-central-ac-1-speed.xml | 6 +----- ...-quality-furnace-gas-central-ac-2-speed.xml | 6 +----- ...uality-furnace-gas-central-ac-var-speed.xml | 6 +----- ...e-hvac-install-quality-furnace-gas-only.xml | 6 +----- ...install-quality-ground-to-air-heat-pump.xml | 6 +----- ...-mini-split-air-conditioner-only-ducted.xml | 6 +----- ...all-quality-mini-split-heat-pump-ducted.xml | 6 +----- ...-mini-split-air-conditioner-only-ducted.xml | 6 +----- ...-ductless-detailed-performance-autosize.xml | 6 +----- ...oner-only-ductless-detailed-performance.xml | 6 +----- ...ini-split-air-conditioner-only-ductless.xml | 6 +----- ...ini-split-heat-pump-ducted-cooling-only.xml | 6 +----- ...mp-ducted-detailed-performance-autosize.xml | 6 +----- ...t-heat-pump-ducted-detailed-performance.xml | 6 +----- ...d-heating-only-max-power-ratio-schedule.xml | 6 +----- ...ini-split-heat-pump-ducted-heating-only.xml | 6 +----- ...at-pump-ducted-max-power-ratio-schedule.xml | 6 +----- .../base-hvac-mini-split-heat-pump-ducted.xml | 6 +----- ...lit-heat-pump-ductless-advanced-defrost.xml | 6 +----- ...plit-heat-pump-ductless-autosize-factor.xml | 6 +----- ...t-pump-ductless-backup-advanced-defrost.xml | 6 +----- ...lit-heat-pump-ductless-backup-baseboard.xml | 6 +----- ...-ductless-backup-furnace-ducts-defaults.xml | 6 +----- ...split-heat-pump-ductless-backup-furnace.xml | 6 +----- ...i-split-heat-pump-ductless-backup-stove.xml | 6 +----- ...-ductless-detailed-performance-autosize.xml | 6 +----- ...heat-pump-ductless-detailed-performance.xml | 6 +----- ...heat-pump-ductless-heating-capacity-17f.xml | 6 +----- ...base-hvac-mini-split-heat-pump-ductless.xml | 6 +----- workflow/sample_files/base-hvac-multiple.xml | 6 +----- workflow/sample_files/base-hvac-none.xml | 6 +----- ...base-hvac-ptac-with-heating-electricity.xml | 6 +----- ...base-hvac-ptac-with-heating-natural-gas.xml | 6 +----- workflow/sample_files/base-hvac-ptac.xml | 6 +----- .../base-hvac-pthp-heating-capacity-17f.xml | 6 +----- workflow/sample_files/base-hvac-pthp.xml | 6 +----- .../base-hvac-room-ac-only-33percent.xml | 6 +----- .../base-hvac-room-ac-only-ceer.xml | 6 +----- ...se-hvac-room-ac-only-detailed-setpoints.xml | 6 +----- ...ly-research-features-detailed-setpoints.xml | 6 +----- ...ase-hvac-room-ac-only-research-features.xml | 6 +----- .../sample_files/base-hvac-room-ac-only.xml | 6 +----- .../base-hvac-room-ac-with-heating.xml | 6 +----- .../base-hvac-room-ac-with-reverse-cycle.xml | 6 +----- workflow/sample_files/base-hvac-seasons.xml | 6 +----- .../base-hvac-setpoints-daily-schedules.xml | 6 +----- .../base-hvac-setpoints-daily-setbacks.xml | 6 +----- workflow/sample_files/base-hvac-setpoints.xml | 6 +----- .../base-hvac-space-heater-gas-only.xml | 6 +----- .../sample_files/base-hvac-stove-oil-only.xml | 6 +----- .../base-hvac-stove-wood-pellets-only.xml | 6 +----- workflow/sample_files/base-hvac-undersized.xml | 6 +----- .../base-hvac-wall-furnace-elec-only.xml | 6 +----- ...-lighting-ceiling-fans-label-energy-use.xml | 6 +----- .../base-lighting-ceiling-fans.xml | 6 +----- .../sample_files/base-lighting-holiday.xml | 6 +----- .../base-lighting-kwh-per-year.xml | 6 +----- workflow/sample_files/base-lighting-mixed.xml | 6 +----- .../base-lighting-none-ceiling-fans.xml | 6 +----- workflow/sample_files/base-lighting-none.xml | 6 +----- .../sample_files/base-location-AMY-2012.xml | 6 +----- .../base-location-baltimore-md.xml | 6 +----- .../base-location-capetown-zaf.xml | 6 +----- .../sample_files/base-location-dallas-tx.xml | 6 +----- .../sample_files/base-location-detailed.xml | 6 +----- .../sample_files/base-location-duluth-mn.xml | 6 +----- .../sample_files/base-location-helena-mt.xml | 6 +----- .../sample_files/base-location-honolulu-hi.xml | 6 +----- .../sample_files/base-location-miami-fl.xml | 6 +----- .../sample_files/base-location-phoenix-az.xml | 6 +----- .../sample_files/base-location-portland-or.xml | 6 +----- .../sample_files/base-mechvent-balanced.xml | 6 +----- .../base-mechvent-bath-kitchen-fans.xml | 6 +----- ...ase-mechvent-cfis-airflow-fraction-zero.xml | 6 +----- .../sample_files/base-mechvent-cfis-dse.xml | 6 +----- ...e-mechvent-cfis-evap-cooler-only-ducted.xml | 6 +----- ...ase-mechvent-cfis-no-additional-runtime.xml | 6 +----- ...-mechvent-cfis-supplemental-fan-exhaust.xml | 6 +----- ...e-mechvent-cfis-supplemental-fan-supply.xml | 6 +----- workflow/sample_files/base-mechvent-cfis.xml | 6 +----- .../base-mechvent-erv-atre-asre.xml | 6 +----- workflow/sample_files/base-mechvent-erv.xml | 6 +----- .../base-mechvent-exhaust-rated-flow-rate.xml | 6 +----- .../sample_files/base-mechvent-exhaust.xml | 6 +----- .../sample_files/base-mechvent-hrv-asre.xml | 6 +----- workflow/sample_files/base-mechvent-hrv.xml | 6 +----- .../sample_files/base-mechvent-multiple.xml | 6 +----- workflow/sample_files/base-mechvent-supply.xml | 6 +----- .../base-mechvent-whole-house-fan.xml | 6 +----- .../base-misc-additional-properties.xml | 6 +----- ...c-bills-battery-scheduled-detailed-only.xml | 6 +----- .../base-misc-bills-detailed-only.xml | 6 +----- .../base-misc-bills-pv-detailed-only.xml | 6 +----- .../sample_files/base-misc-bills-pv-mixed.xml | 6 +----- workflow/sample_files/base-misc-bills-pv.xml | 6 +----- workflow/sample_files/base-misc-bills.xml | 6 +----- workflow/sample_files/base-misc-defaults.xml | 6 +----- workflow/sample_files/base-misc-emissions.xml | 6 +----- .../base-misc-generators-battery-scheduled.xml | 6 +----- .../base-misc-generators-battery.xml | 6 +----- workflow/sample_files/base-misc-generators.xml | 6 +----- .../base-misc-ground-conductivity.xml | 6 +----- .../base-misc-loads-large-uncommon.xml | 6 +----- .../base-misc-loads-large-uncommon2.xml | 6 +----- workflow/sample_files/base-misc-loads-none.xml | 6 +----- .../base-misc-neighbor-shading.xml | 6 +----- .../base-misc-shielding-of-home.xml | 6 +----- .../sample_files/base-misc-unit-multiplier.xml | 6 +----- .../base-misc-usage-multiplier.xml | 6 +----- workflow/sample_files/base-pv-battery-ah.xml | 6 +----- .../sample_files/base-pv-battery-garage.xml | 12 ++---------- .../base-pv-battery-round-trip-efficiency.xml | 6 +----- .../sample_files/base-pv-battery-scheduled.xml | 6 +----- workflow/sample_files/base-pv-battery.xml | 6 +----- .../base-pv-generators-battery-scheduled.xml | 6 +----- .../base-pv-generators-battery.xml | 6 +----- workflow/sample_files/base-pv-generators.xml | 6 +----- workflow/sample_files/base-pv.xml | 6 +----- .../base-residents-0-runperiod-1-month.xml | 6 +----- workflow/sample_files/base-residents-0.xml | 6 +----- ...e-residents-1-misc-loads-large-uncommon.xml | 6 +----- ...-residents-1-misc-loads-large-uncommon2.xml | 6 +----- workflow/sample_files/base-residents-1.xml | 6 +----- workflow/sample_files/base-residents-5.xml | 6 +----- .../base-schedules-detailed-all-10-mins.xml | 6 +----- ...s-detailed-mixed-timesteps-power-outage.xml | 6 +----- ...base-schedules-detailed-mixed-timesteps.xml | 6 +----- ...s-detailed-occupancy-stochastic-10-mins.xml | 6 +----- ...ailed-occupancy-stochastic-power-outage.xml | 6 +----- ...s-detailed-occupancy-stochastic-vacancy.xml | 6 +----- ...schedules-detailed-occupancy-stochastic.xml | 6 +----- ...ules-detailed-setpoints-daily-schedules.xml | 6 +----- ...dules-detailed-setpoints-daily-setbacks.xml | 6 +----- .../base-schedules-detailed-setpoints.xml | 6 +----- .../base-schedules-simple-power-outage.xml | 6 +----- .../base-schedules-simple-vacancy.xml | 6 +----- .../sample_files/base-schedules-simple.xml | 6 +----- .../base-simcontrol-calendar-year-custom.xml | 6 +----- .../base-simcontrol-daylight-saving-custom.xml | 6 +----- ...ase-simcontrol-daylight-saving-disabled.xml | 6 +----- .../base-simcontrol-runperiod-1-month.xml | 6 +----- ...trol-temperature-capacitance-multiplier.xml | 6 +----- ...ep-10-mins-occupancy-stochastic-10-mins.xml | 6 +----- ...ep-10-mins-occupancy-stochastic-60-mins.xml | 6 +----- .../base-simcontrol-timestep-10-mins.xml | 6 +----- .../base-simcontrol-timestep-30-mins.xml | 6 +----- .../base-zones-spaces-multiple.xml | 18 +++--------------- workflow/sample_files/base-zones-spaces.xml | 18 +++--------------- workflow/sample_files/base.xml | 6 +----- workflow/tests/ASHRAE_Standard_140/L302XC.xml | 6 +----- workflow/tests/ASHRAE_Standard_140/L304XC.xml | 6 +----- workflow/tests/ASHRAE_Standard_140/L322XC.xml | 6 +----- workflow/tests/ASHRAE_Standard_140/L324XC.xml | 6 +----- workflow/tests/HERS_DSE/HVAC3a.xml | 6 +----- workflow/tests/HERS_DSE/HVAC3b.xml | 6 +----- workflow/tests/HERS_DSE/HVAC3c.xml | 6 +----- workflow/tests/HERS_DSE/HVAC3d.xml | 6 +----- 391 files changed, 408 insertions(+), 2000 deletions(-) diff --git a/BuildResidentialHPXML/README.md b/BuildResidentialHPXML/README.md index df14e6924b..ddc05ff3f4 100644 --- a/BuildResidentialHPXML/README.md +++ b/BuildResidentialHPXML/README.md @@ -1029,7 +1029,7 @@ Nominal R-value of the slab exterior horizontal (wing/skirt) insulation. Applies - **Units:** ``h-ft^2-R/Btu`` -- **Required:** ``true`` +- **Required:** ``false``
@@ -1042,7 +1042,7 @@ Width of the slab exterior horizontal (wing/skirt) insulation measured from the - **Units:** ``ft`` -- **Required:** ``true`` +- **Required:** ``false``
@@ -1055,7 +1055,7 @@ Depth of the slab exterior horizontal (wing/skirt) insulation measured from the - **Units:** ``ft`` -- **Required:** ``true`` +- **Required:** ``false``
diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 3fd1220270..9fc48f5211 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -639,25 +639,22 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setDefaultValue(0) args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('slab_exterior_horizontal_insulation_r', true) + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('slab_exterior_horizontal_insulation_r', false) arg.setDisplayName('Slab: Exterior Horizontal Insulation Nominal R-value') arg.setUnits('h-ft^2-R/Btu') arg.setDescription('Nominal R-value of the slab exterior horizontal (wing/skirt) insulation. Applies to slab-on-grade foundations and basement/crawlspace floors.') - arg.setDefaultValue(0) args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('slab_exterior_horizontal_insulation_width', true) + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('slab_exterior_horizontal_insulation_width', false) arg.setDisplayName('Slab: Exterior Horizontal Insulation Width') arg.setUnits('ft') arg.setDescription('Width of the slab exterior horizontal (wing/skirt) insulation measured from the exterior surface of the vertical slab perimeter insulation. Applies to slab-on-grade foundations and basement/crawlspace floors.') - arg.setDefaultValue(0) args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('slab_exterior_horizontal_insulation_depth_below_grade', true) + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('slab_exterior_horizontal_insulation_depth_below_grade', false) arg.setDisplayName('Slab: Exterior Horizontal Insulation Depth Below Grade') arg.setUnits('ft') arg.setDescription('Depth of the slab exterior horizontal (wing/skirt) insulation measured from the top surface of the slab exterior horizontal insulation. Applies to slab-on-grade foundations and basement/crawlspace floors.') - arg.setDefaultValue(0) args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('slab_under_insulation_r', true) diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 3cc350f15b..5656a67c19 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 93f5dfbd-af8c-49eb-81f8-8827bf51acc5 - 2024-07-18T01:03:22Z + bb1b70fe-f5e1-41f8-8396-904eae991f71 + 2024-07-23T21:31:32Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -1418,9 +1418,8 @@ Nominal R-value of the slab exterior horizontal (wing/skirt) insulation. Applies to slab-on-grade foundations and basement/crawlspace floors. Double h-ft^2-R/Btu - true + false false - 0
slab_exterior_horizontal_insulation_width @@ -1428,9 +1427,8 @@ Width of the slab exterior horizontal (wing/skirt) insulation measured from the exterior surface of the vertical slab perimeter insulation. Applies to slab-on-grade foundations and basement/crawlspace floors. Double ft - true + false false - 0 slab_exterior_horizontal_insulation_depth_below_grade @@ -1438,9 +1436,8 @@ Depth of the slab exterior horizontal (wing/skirt) insulation measured from the top surface of the slab exterior horizontal insulation. Applies to slab-on-grade foundations and basement/crawlspace floors. Double ft - true + false false - 0 slab_under_insulation_r @@ -7419,7 +7416,7 @@ README.md md readme - 641D9734 + C6959AE5 README.md.erb @@ -7436,7 +7433,7 @@ measure.rb rb script - D88472D9 + 93D75E06 geometry.rb diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index 547692c6fb..08c12625da 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -35,9 +35,6 @@ "rim_joist_assembly_r": 5.01, "slab_perimeter_insulation_r": 0, "slab_perimeter_insulation_depth": 0, - "slab_exterior_horizontal_insulation_r": 0, - "slab_exterior_horizontal_insulation_width": 0, - "slab_exterior_horizontal_insulation_depth_below_grade": 0, "slab_perimeter_insulation_depth": 0, "slab_under_insulation_r": 0, "slab_under_insulation_width": 0, @@ -644,9 +641,6 @@ "rim_joist_assembly_r": 23, "slab_perimeter_insulation_r": 0, "slab_perimeter_insulation_depth": 0, - "slab_exterior_horizontal_insulation_r": 0, - "slab_exterior_horizontal_insulation_width": 0, - "slab_exterior_horizontal_insulation_depth_below_grade": 0, "slab_perimeter_insulation_depth": 0, "slab_under_insulation_r": 0, "slab_under_insulation_width": 0, diff --git a/workflow/sample_files/base-appliances-coal.xml b/workflow/sample_files/base-appliances-coal.xml index c27f79300e..9916a7a377 100644 --- a/workflow/sample_files/base-appliances-coal.xml +++ b/workflow/sample_files/base-appliances-coal.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml b/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml index 525a4bb253..0f8e8a9e0e 100644 --- a/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml +++ b/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml @@ -188,11 +188,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml b/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml index 90a4fd35f6..9fc9e22a47 100644 --- a/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml +++ b/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml @@ -188,11 +188,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-appliances-dehumidifier-multiple.xml b/workflow/sample_files/base-appliances-dehumidifier-multiple.xml index db77d6cc5e..b60fdacafc 100644 --- a/workflow/sample_files/base-appliances-dehumidifier-multiple.xml +++ b/workflow/sample_files/base-appliances-dehumidifier-multiple.xml @@ -188,11 +188,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-appliances-dehumidifier.xml b/workflow/sample_files/base-appliances-dehumidifier.xml index e13e8fb507..f88c252265 100644 --- a/workflow/sample_files/base-appliances-dehumidifier.xml +++ b/workflow/sample_files/base-appliances-dehumidifier.xml @@ -188,11 +188,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-appliances-freezer-temperature-dependent-schedule.xml b/workflow/sample_files/base-appliances-freezer-temperature-dependent-schedule.xml index 515c853f55..b0ff69b16a 100644 --- a/workflow/sample_files/base-appliances-freezer-temperature-dependent-schedule.xml +++ b/workflow/sample_files/base-appliances-freezer-temperature-dependent-schedule.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-appliances-gas.xml b/workflow/sample_files/base-appliances-gas.xml index 669a9d92fc..5772b26b9d 100644 --- a/workflow/sample_files/base-appliances-gas.xml +++ b/workflow/sample_files/base-appliances-gas.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-appliances-modified.xml b/workflow/sample_files/base-appliances-modified.xml index 9279b5fc97..866c5d476c 100644 --- a/workflow/sample_files/base-appliances-modified.xml +++ b/workflow/sample_files/base-appliances-modified.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-appliances-none.xml b/workflow/sample_files/base-appliances-none.xml index 9378e912d9..7968aa7ad8 100644 --- a/workflow/sample_files/base-appliances-none.xml +++ b/workflow/sample_files/base-appliances-none.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-appliances-oil.xml b/workflow/sample_files/base-appliances-oil.xml index ea27bbcd22..be7975c37d 100644 --- a/workflow/sample_files/base-appliances-oil.xml +++ b/workflow/sample_files/base-appliances-oil.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-appliances-propane.xml b/workflow/sample_files/base-appliances-propane.xml index fb8e8c5967..5a4a67541f 100644 --- a/workflow/sample_files/base-appliances-propane.xml +++ b/workflow/sample_files/base-appliances-propane.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-appliances-refrigerator-temperature-dependent-schedule.xml b/workflow/sample_files/base-appliances-refrigerator-temperature-dependent-schedule.xml index 6ef3005849..7e028b4edb 100644 --- a/workflow/sample_files/base-appliances-refrigerator-temperature-dependent-schedule.xml +++ b/workflow/sample_files/base-appliances-refrigerator-temperature-dependent-schedule.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-appliances-wood.xml b/workflow/sample_files/base-appliances-wood.xml index 0c4f9cc85b..39b8a08dd8 100644 --- a/workflow/sample_files/base-appliances-wood.xml +++ b/workflow/sample_files/base-appliances-wood.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-atticroof-cathedral.xml b/workflow/sample_files/base-atticroof-cathedral.xml index 737f43caa5..3302120a19 100644 --- a/workflow/sample_files/base-atticroof-cathedral.xml +++ b/workflow/sample_files/base-atticroof-cathedral.xml @@ -196,11 +196,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-atticroof-conditioned.xml b/workflow/sample_files/base-atticroof-conditioned.xml index 30ec4b6b79..b45b760404 100644 --- a/workflow/sample_files/base-atticroof-conditioned.xml +++ b/workflow/sample_files/base-atticroof-conditioned.xml @@ -295,11 +295,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-atticroof-flat.xml b/workflow/sample_files/base-atticroof-flat.xml index ed486bbec8..f53239bdb0 100644 --- a/workflow/sample_files/base-atticroof-flat.xml +++ b/workflow/sample_files/base-atticroof-flat.xml @@ -196,11 +196,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-atticroof-radiant-barrier-ceiling.xml b/workflow/sample_files/base-atticroof-radiant-barrier-ceiling.xml index fe0b18952e..cafb34be8e 100644 --- a/workflow/sample_files/base-atticroof-radiant-barrier-ceiling.xml +++ b/workflow/sample_files/base-atticroof-radiant-barrier-ceiling.xml @@ -190,11 +190,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-atticroof-radiant-barrier.xml b/workflow/sample_files/base-atticroof-radiant-barrier.xml index 10b4f7f612..51d45c9588 100644 --- a/workflow/sample_files/base-atticroof-radiant-barrier.xml +++ b/workflow/sample_files/base-atticroof-radiant-barrier.xml @@ -192,11 +192,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml b/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml index 4312dc748c..6e617f931d 100644 --- a/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml +++ b/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-atticroof-vented.xml b/workflow/sample_files/base-atticroof-vented.xml index 9563991116..b539f56373 100644 --- a/workflow/sample_files/base-atticroof-vented.xml +++ b/workflow/sample_files/base-atticroof-vented.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-battery-scheduled.xml b/workflow/sample_files/base-battery-scheduled.xml index f0144f5300..ee3d4bb690 100644 --- a/workflow/sample_files/base-battery-scheduled.xml +++ b/workflow/sample_files/base-battery-scheduled.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-battery.xml b/workflow/sample_files/base-battery.xml index 65cfa8bfcf..858d56de64 100644 --- a/workflow/sample_files/base-battery.xml +++ b/workflow/sample_files/base-battery.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-bldgtype-mf-whole-building.xml b/workflow/sample_files/base-bldgtype-mf-whole-building.xml index d4ccb578ca..4f90706e06 100644 --- a/workflow/sample_files/base-bldgtype-mf-whole-building.xml +++ b/workflow/sample_files/base-bldgtype-mf-whole-building.xml @@ -271,11 +271,7 @@ - - 0.0 - 0.0 - 0.0 - + @@ -782,11 +778,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-bldgtype-sfa-unit-2stories.xml b/workflow/sample_files/base-bldgtype-sfa-unit-2stories.xml index 5aa6503eae..0217269a07 100644 --- a/workflow/sample_files/base-bldgtype-sfa-unit-2stories.xml +++ b/workflow/sample_files/base-bldgtype-sfa-unit-2stories.xml @@ -307,11 +307,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-bldgtype-sfa-unit-atticroof-cathedral.xml b/workflow/sample_files/base-bldgtype-sfa-unit-atticroof-cathedral.xml index 63088ebeea..f049174c05 100644 --- a/workflow/sample_files/base-bldgtype-sfa-unit-atticroof-cathedral.xml +++ b/workflow/sample_files/base-bldgtype-sfa-unit-atticroof-cathedral.xml @@ -255,11 +255,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-bldgtype-sfa-unit-infil-compartmentalization-test.xml b/workflow/sample_files/base-bldgtype-sfa-unit-infil-compartmentalization-test.xml index bea8b78c7a..41a51af43d 100644 --- a/workflow/sample_files/base-bldgtype-sfa-unit-infil-compartmentalization-test.xml +++ b/workflow/sample_files/base-bldgtype-sfa-unit-infil-compartmentalization-test.xml @@ -307,11 +307,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-bldgtype-sfa-unit.xml b/workflow/sample_files/base-bldgtype-sfa-unit.xml index 617bd2a69c..5046b5c1ea 100644 --- a/workflow/sample_files/base-bldgtype-sfa-unit.xml +++ b/workflow/sample_files/base-bldgtype-sfa-unit.xml @@ -307,11 +307,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-combi-tankless-outside.xml b/workflow/sample_files/base-dhw-combi-tankless-outside.xml index c0ce5454b3..e742390e79 100644 --- a/workflow/sample_files/base-dhw-combi-tankless-outside.xml +++ b/workflow/sample_files/base-dhw-combi-tankless-outside.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-combi-tankless.xml b/workflow/sample_files/base-dhw-combi-tankless.xml index 4b31464eeb..b3fa8ce2ee 100644 --- a/workflow/sample_files/base-dhw-combi-tankless.xml +++ b/workflow/sample_files/base-dhw-combi-tankless.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-desuperheater-2-speed.xml b/workflow/sample_files/base-dhw-desuperheater-2-speed.xml index fafc688279..c492f987ed 100644 --- a/workflow/sample_files/base-dhw-desuperheater-2-speed.xml +++ b/workflow/sample_files/base-dhw-desuperheater-2-speed.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-desuperheater-gshp.xml b/workflow/sample_files/base-dhw-desuperheater-gshp.xml index d0d72bdbc5..426a32181c 100644 --- a/workflow/sample_files/base-dhw-desuperheater-gshp.xml +++ b/workflow/sample_files/base-dhw-desuperheater-gshp.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-desuperheater-hpwh.xml b/workflow/sample_files/base-dhw-desuperheater-hpwh.xml index 3d4f7d27e8..f85303724e 100644 --- a/workflow/sample_files/base-dhw-desuperheater-hpwh.xml +++ b/workflow/sample_files/base-dhw-desuperheater-hpwh.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-desuperheater-tankless.xml b/workflow/sample_files/base-dhw-desuperheater-tankless.xml index 929344263a..6b41f3fb36 100644 --- a/workflow/sample_files/base-dhw-desuperheater-tankless.xml +++ b/workflow/sample_files/base-dhw-desuperheater-tankless.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-desuperheater-var-speed.xml b/workflow/sample_files/base-dhw-desuperheater-var-speed.xml index 94dac994a5..61e5ff0d08 100644 --- a/workflow/sample_files/base-dhw-desuperheater-var-speed.xml +++ b/workflow/sample_files/base-dhw-desuperheater-var-speed.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-desuperheater.xml b/workflow/sample_files/base-dhw-desuperheater.xml index 4a1c545804..66f67647e4 100644 --- a/workflow/sample_files/base-dhw-desuperheater.xml +++ b/workflow/sample_files/base-dhw-desuperheater.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-dwhr.xml b/workflow/sample_files/base-dhw-dwhr.xml index bcbdb85fec..ae5cde4ea6 100644 --- a/workflow/sample_files/base-dhw-dwhr.xml +++ b/workflow/sample_files/base-dhw-dwhr.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml b/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml index efc30c6719..a24d24b831 100644 --- a/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml +++ b/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-indirect-dse.xml b/workflow/sample_files/base-dhw-indirect-dse.xml index dd17d89cec..ae734348b6 100644 --- a/workflow/sample_files/base-dhw-indirect-dse.xml +++ b/workflow/sample_files/base-dhw-indirect-dse.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-indirect-outside.xml b/workflow/sample_files/base-dhw-indirect-outside.xml index 59db13161a..a1da245d3f 100644 --- a/workflow/sample_files/base-dhw-indirect-outside.xml +++ b/workflow/sample_files/base-dhw-indirect-outside.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-indirect-standbyloss.xml b/workflow/sample_files/base-dhw-indirect-standbyloss.xml index 54a5438f60..0c877e54ef 100644 --- a/workflow/sample_files/base-dhw-indirect-standbyloss.xml +++ b/workflow/sample_files/base-dhw-indirect-standbyloss.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml b/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml index 663a8914e8..3db5eec1b7 100644 --- a/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml +++ b/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-indirect.xml b/workflow/sample_files/base-dhw-indirect.xml index f9dab84e47..3508f2e229 100644 --- a/workflow/sample_files/base-dhw-indirect.xml +++ b/workflow/sample_files/base-dhw-indirect.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-jacket-electric.xml b/workflow/sample_files/base-dhw-jacket-electric.xml index f4264ecf7c..93537e378e 100644 --- a/workflow/sample_files/base-dhw-jacket-electric.xml +++ b/workflow/sample_files/base-dhw-jacket-electric.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-jacket-gas.xml b/workflow/sample_files/base-dhw-jacket-gas.xml index e9ad0d97f6..52b4035f0f 100644 --- a/workflow/sample_files/base-dhw-jacket-gas.xml +++ b/workflow/sample_files/base-dhw-jacket-gas.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-jacket-hpwh.xml b/workflow/sample_files/base-dhw-jacket-hpwh.xml index 1e9e2656cd..3019b40cc8 100644 --- a/workflow/sample_files/base-dhw-jacket-hpwh.xml +++ b/workflow/sample_files/base-dhw-jacket-hpwh.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-jacket-indirect.xml b/workflow/sample_files/base-dhw-jacket-indirect.xml index e9b8db17cd..4560fd145e 100644 --- a/workflow/sample_files/base-dhw-jacket-indirect.xml +++ b/workflow/sample_files/base-dhw-jacket-indirect.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-low-flow-fixtures.xml b/workflow/sample_files/base-dhw-low-flow-fixtures.xml index 45a74debb5..66a65c3a32 100644 --- a/workflow/sample_files/base-dhw-low-flow-fixtures.xml +++ b/workflow/sample_files/base-dhw-low-flow-fixtures.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-multiple.xml b/workflow/sample_files/base-dhw-multiple.xml index a31a5ba77e..1d3d3c0809 100644 --- a/workflow/sample_files/base-dhw-multiple.xml +++ b/workflow/sample_files/base-dhw-multiple.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-none.xml b/workflow/sample_files/base-dhw-none.xml index d25a4d93ab..44c86d886b 100644 --- a/workflow/sample_files/base-dhw-none.xml +++ b/workflow/sample_files/base-dhw-none.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-recirc-demand-scheduled.xml b/workflow/sample_files/base-dhw-recirc-demand-scheduled.xml index 6484ccbb46..3d3486d7ac 100644 --- a/workflow/sample_files/base-dhw-recirc-demand-scheduled.xml +++ b/workflow/sample_files/base-dhw-recirc-demand-scheduled.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-recirc-demand.xml b/workflow/sample_files/base-dhw-recirc-demand.xml index 85b9970b2a..18fd0dea93 100644 --- a/workflow/sample_files/base-dhw-recirc-demand.xml +++ b/workflow/sample_files/base-dhw-recirc-demand.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-recirc-manual.xml b/workflow/sample_files/base-dhw-recirc-manual.xml index 5552f5f612..99704eda91 100644 --- a/workflow/sample_files/base-dhw-recirc-manual.xml +++ b/workflow/sample_files/base-dhw-recirc-manual.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-recirc-nocontrol.xml b/workflow/sample_files/base-dhw-recirc-nocontrol.xml index 5bb8d5466a..43ad5742c5 100644 --- a/workflow/sample_files/base-dhw-recirc-nocontrol.xml +++ b/workflow/sample_files/base-dhw-recirc-nocontrol.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-recirc-temperature.xml b/workflow/sample_files/base-dhw-recirc-temperature.xml index f21e9668a2..f206ca1e47 100644 --- a/workflow/sample_files/base-dhw-recirc-temperature.xml +++ b/workflow/sample_files/base-dhw-recirc-temperature.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-recirc-timer.xml b/workflow/sample_files/base-dhw-recirc-timer.xml index 2c61f8526d..2c3a861f67 100644 --- a/workflow/sample_files/base-dhw-recirc-timer.xml +++ b/workflow/sample_files/base-dhw-recirc-timer.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml b/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml index 79814bfd26..7f1b2ce758 100644 --- a/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml +++ b/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml b/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml index a166dad018..a3b0b1f9e7 100644 --- a/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml +++ b/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-solar-direct-ics.xml b/workflow/sample_files/base-dhw-solar-direct-ics.xml index 6a10399cba..06316a9407 100644 --- a/workflow/sample_files/base-dhw-solar-direct-ics.xml +++ b/workflow/sample_files/base-dhw-solar-direct-ics.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-solar-fraction.xml b/workflow/sample_files/base-dhw-solar-fraction.xml index d8b508c9ec..453bf5a351 100644 --- a/workflow/sample_files/base-dhw-solar-fraction.xml +++ b/workflow/sample_files/base-dhw-solar-fraction.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml b/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml index 66aedda5c5..444fef7a9e 100644 --- a/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml +++ b/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml b/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml index f289b21000..a2ee68a18d 100644 --- a/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml +++ b/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-tank-coal.xml b/workflow/sample_files/base-dhw-tank-coal.xml index abb8d11233..9c26a4b599 100644 --- a/workflow/sample_files/base-dhw-tank-coal.xml +++ b/workflow/sample_files/base-dhw-tank-coal.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml b/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml index e84f179140..a4a816cde8 100644 --- a/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml +++ b/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-tank-elec-uef.xml b/workflow/sample_files/base-dhw-tank-elec-uef.xml index 2a99d57c6c..657527f43a 100644 --- a/workflow/sample_files/base-dhw-tank-elec-uef.xml +++ b/workflow/sample_files/base-dhw-tank-elec-uef.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-tank-gas-outside.xml b/workflow/sample_files/base-dhw-tank-gas-outside.xml index 5acc1e8cbe..fb707fb803 100644 --- a/workflow/sample_files/base-dhw-tank-gas-outside.xml +++ b/workflow/sample_files/base-dhw-tank-gas-outside.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml b/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml index dde092e055..f6cbb5f927 100644 --- a/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml +++ b/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-tank-gas-uef.xml b/workflow/sample_files/base-dhw-tank-gas-uef.xml index 52f0188aff..b5379724ee 100644 --- a/workflow/sample_files/base-dhw-tank-gas-uef.xml +++ b/workflow/sample_files/base-dhw-tank-gas-uef.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-tank-gas.xml b/workflow/sample_files/base-dhw-tank-gas.xml index 9a91bb6ef9..4d5a114622 100644 --- a/workflow/sample_files/base-dhw-tank-gas.xml +++ b/workflow/sample_files/base-dhw-tank-gas.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml b/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml index b1abc92c5f..118827bc1a 100644 --- a/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml +++ b/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml @@ -238,11 +238,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml b/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml index 3e0d071ec0..e9c7a7a69e 100644 --- a/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml +++ b/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml b/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml index 62f1c1d03a..3c9bd7994e 100644 --- a/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml +++ b/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml b/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml index 94f61abfd9..fc761cc862 100644 --- a/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml +++ b/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml b/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml index d41584bdfe..08afb78620 100644 --- a/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml +++ b/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml b/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml index 77a48fe8e0..6f5ff26106 100644 --- a/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml +++ b/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-tank-heat-pump.xml b/workflow/sample_files/base-dhw-tank-heat-pump.xml index 92abb66c53..cafa514c6e 100644 --- a/workflow/sample_files/base-dhw-tank-heat-pump.xml +++ b/workflow/sample_files/base-dhw-tank-heat-pump.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml b/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml index 657494bc89..3f2673925e 100644 --- a/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml +++ b/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-tank-model-type-stratified.xml b/workflow/sample_files/base-dhw-tank-model-type-stratified.xml index d8a6c6aa30..2af5d1f297 100644 --- a/workflow/sample_files/base-dhw-tank-model-type-stratified.xml +++ b/workflow/sample_files/base-dhw-tank-model-type-stratified.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-tank-oil.xml b/workflow/sample_files/base-dhw-tank-oil.xml index 12cc7c9667..f5b7779989 100644 --- a/workflow/sample_files/base-dhw-tank-oil.xml +++ b/workflow/sample_files/base-dhw-tank-oil.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-tank-wood.xml b/workflow/sample_files/base-dhw-tank-wood.xml index 35255791b5..69afd1a34c 100644 --- a/workflow/sample_files/base-dhw-tank-wood.xml +++ b/workflow/sample_files/base-dhw-tank-wood.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml b/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml index f37265e52d..8b54b041a3 100644 --- a/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml +++ b/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-tankless-electric-outside.xml b/workflow/sample_files/base-dhw-tankless-electric-outside.xml index 079d58831e..32ad60e88a 100644 --- a/workflow/sample_files/base-dhw-tankless-electric-outside.xml +++ b/workflow/sample_files/base-dhw-tankless-electric-outside.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-tankless-electric-uef.xml b/workflow/sample_files/base-dhw-tankless-electric-uef.xml index 1873d70fc2..db16fc602c 100644 --- a/workflow/sample_files/base-dhw-tankless-electric-uef.xml +++ b/workflow/sample_files/base-dhw-tankless-electric-uef.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-tankless-electric.xml b/workflow/sample_files/base-dhw-tankless-electric.xml index 87bdfd6621..f11c26bcc9 100644 --- a/workflow/sample_files/base-dhw-tankless-electric.xml +++ b/workflow/sample_files/base-dhw-tankless-electric.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-tankless-gas-uef.xml b/workflow/sample_files/base-dhw-tankless-gas-uef.xml index 4483e5ae1e..b0377dd713 100644 --- a/workflow/sample_files/base-dhw-tankless-gas-uef.xml +++ b/workflow/sample_files/base-dhw-tankless-gas-uef.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml b/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml index 1a8b989694..90b020e219 100644 --- a/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml +++ b/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml b/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml index 6d3726dc15..2bc29833cb 100644 --- a/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml +++ b/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-tankless-gas.xml b/workflow/sample_files/base-dhw-tankless-gas.xml index cb484a609f..673ee81694 100644 --- a/workflow/sample_files/base-dhw-tankless-gas.xml +++ b/workflow/sample_files/base-dhw-tankless-gas.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-dhw-tankless-propane.xml b/workflow/sample_files/base-dhw-tankless-propane.xml index 76c51b556d..ba1a5b8f73 100644 --- a/workflow/sample_files/base-dhw-tankless-propane.xml +++ b/workflow/sample_files/base-dhw-tankless-propane.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-2stories-garage.xml b/workflow/sample_files/base-enclosure-2stories-garage.xml index b187e2c359..9b67e07511 100644 --- a/workflow/sample_files/base-enclosure-2stories-garage.xml +++ b/workflow/sample_files/base-enclosure-2stories-garage.xml @@ -295,11 +295,7 @@ - - 0.0 - 0.0 - 0.0 - + @@ -328,11 +324,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-2stories-infil-leakiness-description.xml b/workflow/sample_files/base-enclosure-2stories-infil-leakiness-description.xml index 3e17665910..cebc654087 100644 --- a/workflow/sample_files/base-enclosure-2stories-infil-leakiness-description.xml +++ b/workflow/sample_files/base-enclosure-2stories-infil-leakiness-description.xml @@ -231,11 +231,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-2stories.xml b/workflow/sample_files/base-enclosure-2stories.xml index c1b087b3e9..8764400366 100644 --- a/workflow/sample_files/base-enclosure-2stories.xml +++ b/workflow/sample_files/base-enclosure-2stories.xml @@ -247,11 +247,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-beds-1.xml b/workflow/sample_files/base-enclosure-beds-1.xml index ea49c3bb71..d0c4fc2995 100644 --- a/workflow/sample_files/base-enclosure-beds-1.xml +++ b/workflow/sample_files/base-enclosure-beds-1.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-beds-2.xml b/workflow/sample_files/base-enclosure-beds-2.xml index 5989afaec5..06bd15c463 100644 --- a/workflow/sample_files/base-enclosure-beds-2.xml +++ b/workflow/sample_files/base-enclosure-beds-2.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-beds-4.xml b/workflow/sample_files/base-enclosure-beds-4.xml index 011d724106..3d6f7f925d 100644 --- a/workflow/sample_files/base-enclosure-beds-4.xml +++ b/workflow/sample_files/base-enclosure-beds-4.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-beds-5.xml b/workflow/sample_files/base-enclosure-beds-5.xml index e62e33e928..ad8160dde5 100644 --- a/workflow/sample_files/base-enclosure-beds-5.xml +++ b/workflow/sample_files/base-enclosure-beds-5.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-ceilingtypes.xml b/workflow/sample_files/base-enclosure-ceilingtypes.xml index 43b46189b8..b97e7ce073 100644 --- a/workflow/sample_files/base-enclosure-ceilingtypes.xml +++ b/workflow/sample_files/base-enclosure-ceilingtypes.xml @@ -258,11 +258,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-garage.xml b/workflow/sample_files/base-enclosure-garage.xml index 20dc0e688e..b847715551 100644 --- a/workflow/sample_files/base-enclosure-garage.xml +++ b/workflow/sample_files/base-enclosure-garage.xml @@ -283,11 +283,7 @@ - - 0.0 - 0.0 - 0.0 - + @@ -316,11 +312,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml b/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml index bd415a25c1..0fc7261104 100644 --- a/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml +++ b/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml b/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml index 8d01d361a6..c63e3c533b 100644 --- a/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml +++ b/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-infil-cfm50.xml b/workflow/sample_files/base-enclosure-infil-cfm50.xml index b420fd5499..27e7ab939a 100644 --- a/workflow/sample_files/base-enclosure-infil-cfm50.xml +++ b/workflow/sample_files/base-enclosure-infil-cfm50.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-infil-ela.xml b/workflow/sample_files/base-enclosure-infil-ela.xml index b02c98cf53..dfcb0f313d 100644 --- a/workflow/sample_files/base-enclosure-infil-ela.xml +++ b/workflow/sample_files/base-enclosure-infil-ela.xml @@ -230,11 +230,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-infil-flue.xml b/workflow/sample_files/base-enclosure-infil-flue.xml index 9dfbd55dd1..5def1d2664 100644 --- a/workflow/sample_files/base-enclosure-infil-flue.xml +++ b/workflow/sample_files/base-enclosure-infil-flue.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-infil-leakiness-description.xml b/workflow/sample_files/base-enclosure-infil-leakiness-description.xml index 724cc0920a..ebd7a71509 100644 --- a/workflow/sample_files/base-enclosure-infil-leakiness-description.xml +++ b/workflow/sample_files/base-enclosure-infil-leakiness-description.xml @@ -231,11 +231,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-infil-natural-ach.xml b/workflow/sample_files/base-enclosure-infil-natural-ach.xml index 68b545095a..7b73ffcffc 100644 --- a/workflow/sample_files/base-enclosure-infil-natural-ach.xml +++ b/workflow/sample_files/base-enclosure-infil-natural-ach.xml @@ -233,11 +233,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-infil-natural-cfm.xml b/workflow/sample_files/base-enclosure-infil-natural-cfm.xml index 4d051e3d42..395d2873bd 100644 --- a/workflow/sample_files/base-enclosure-infil-natural-cfm.xml +++ b/workflow/sample_files/base-enclosure-infil-natural-cfm.xml @@ -233,11 +233,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-orientations.xml b/workflow/sample_files/base-enclosure-orientations.xml index d0bed2c511..e2924cfd68 100644 --- a/workflow/sample_files/base-enclosure-orientations.xml +++ b/workflow/sample_files/base-enclosure-orientations.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-overhangs.xml b/workflow/sample_files/base-enclosure-overhangs.xml index a3b9b648bb..9bad2ac3e8 100644 --- a/workflow/sample_files/base-enclosure-overhangs.xml +++ b/workflow/sample_files/base-enclosure-overhangs.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-rooftypes.xml b/workflow/sample_files/base-enclosure-rooftypes.xml index df4583776e..8c497373f7 100644 --- a/workflow/sample_files/base-enclosure-rooftypes.xml +++ b/workflow/sample_files/base-enclosure-rooftypes.xml @@ -372,11 +372,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-skylights-cathedral.xml b/workflow/sample_files/base-enclosure-skylights-cathedral.xml index 0c672c3f89..ce9d3beb73 100644 --- a/workflow/sample_files/base-enclosure-skylights-cathedral.xml +++ b/workflow/sample_files/base-enclosure-skylights-cathedral.xml @@ -198,11 +198,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-skylights-physical-properties.xml b/workflow/sample_files/base-enclosure-skylights-physical-properties.xml index 5d57df0fda..0f29047a77 100644 --- a/workflow/sample_files/base-enclosure-skylights-physical-properties.xml +++ b/workflow/sample_files/base-enclosure-skylights-physical-properties.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-skylights-shading.xml b/workflow/sample_files/base-enclosure-skylights-shading.xml index bfeaf8d8f2..62e425f47d 100644 --- a/workflow/sample_files/base-enclosure-skylights-shading.xml +++ b/workflow/sample_files/base-enclosure-skylights-shading.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-skylights-storms.xml b/workflow/sample_files/base-enclosure-skylights-storms.xml index 7c1a3c952e..06917c857d 100644 --- a/workflow/sample_files/base-enclosure-skylights-storms.xml +++ b/workflow/sample_files/base-enclosure-skylights-storms.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-skylights.xml b/workflow/sample_files/base-enclosure-skylights.xml index 0d9c25e3d9..0d7d11ef2a 100644 --- a/workflow/sample_files/base-enclosure-skylights.xml +++ b/workflow/sample_files/base-enclosure-skylights.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-split-level.xml b/workflow/sample_files/base-enclosure-split-level.xml index 7bbf061e53..5c6327c02d 100644 --- a/workflow/sample_files/base-enclosure-split-level.xml +++ b/workflow/sample_files/base-enclosure-split-level.xml @@ -188,11 +188,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-thermal-mass.xml b/workflow/sample_files/base-enclosure-thermal-mass.xml index 8c85ec4633..0a02a8f26d 100644 --- a/workflow/sample_files/base-enclosure-thermal-mass.xml +++ b/workflow/sample_files/base-enclosure-thermal-mass.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-walltypes.xml b/workflow/sample_files/base-enclosure-walltypes.xml index be3ac8e2cb..8958ef624c 100644 --- a/workflow/sample_files/base-enclosure-walltypes.xml +++ b/workflow/sample_files/base-enclosure-walltypes.xml @@ -560,11 +560,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml b/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml index 6eaf75305f..cfcfa37cc9 100644 --- a/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml +++ b/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-windows-none.xml b/workflow/sample_files/base-enclosure-windows-none.xml index 0498702b6e..eee6b65164 100644 --- a/workflow/sample_files/base-enclosure-windows-none.xml +++ b/workflow/sample_files/base-enclosure-windows-none.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-windows-physical-properties.xml b/workflow/sample_files/base-enclosure-windows-physical-properties.xml index 0caa4dafd0..ee64fdaa75 100644 --- a/workflow/sample_files/base-enclosure-windows-physical-properties.xml +++ b/workflow/sample_files/base-enclosure-windows-physical-properties.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-windows-shading-seasons.xml b/workflow/sample_files/base-enclosure-windows-shading-seasons.xml index eb6436deac..829a6f3593 100644 --- a/workflow/sample_files/base-enclosure-windows-shading-seasons.xml +++ b/workflow/sample_files/base-enclosure-windows-shading-seasons.xml @@ -242,11 +242,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-windows-shading.xml b/workflow/sample_files/base-enclosure-windows-shading.xml index 666025eb67..674bdeb880 100644 --- a/workflow/sample_files/base-enclosure-windows-shading.xml +++ b/workflow/sample_files/base-enclosure-windows-shading.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-enclosure-windows-storms.xml b/workflow/sample_files/base-enclosure-windows-storms.xml index 42b2a950a0..de9a868fae 100644 --- a/workflow/sample_files/base-enclosure-windows-storms.xml +++ b/workflow/sample_files/base-enclosure-windows-storms.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-foundation-basement-garage.xml b/workflow/sample_files/base-foundation-basement-garage.xml index 6f41352252..8ed9ad4305 100644 --- a/workflow/sample_files/base-foundation-basement-garage.xml +++ b/workflow/sample_files/base-foundation-basement-garage.xml @@ -283,11 +283,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation-full.xml b/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation-full.xml index 3008c7658f..8d2732f6ec 100644 --- a/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation-full.xml +++ b/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation-full.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml b/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml index 947c1f4091..f534b737b3 100644 --- a/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml +++ b/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml b/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml index 530de4648d..bcacd5bc12 100644 --- a/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml +++ b/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-foundation-conditioned-crawlspace.xml b/workflow/sample_files/base-foundation-conditioned-crawlspace.xml index cb35e29811..847a3f253f 100644 --- a/workflow/sample_files/base-foundation-conditioned-crawlspace.xml +++ b/workflow/sample_files/base-foundation-conditioned-crawlspace.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-foundation-multiple.xml b/workflow/sample_files/base-foundation-multiple.xml index 10c331d868..9116c9b807 100644 --- a/workflow/sample_files/base-foundation-multiple.xml +++ b/workflow/sample_files/base-foundation-multiple.xml @@ -322,11 +322,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-foundation-slab.xml b/workflow/sample_files/base-foundation-slab.xml index f539b4376e..0b555b8800 100644 --- a/workflow/sample_files/base-foundation-slab.xml +++ b/workflow/sample_files/base-foundation-slab.xml @@ -188,11 +188,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml b/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml index 2bf59b6c58..a77feb58cb 100644 --- a/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml +++ b/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml @@ -247,11 +247,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml b/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml index d86369daf9..43669b7196 100644 --- a/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml +++ b/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml @@ -240,11 +240,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml b/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml index 36619ebfc3..a2b9ba091e 100644 --- a/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml +++ b/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml @@ -249,11 +249,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-foundation-unconditioned-basement.xml b/workflow/sample_files/base-foundation-unconditioned-basement.xml index db72c585e2..70cb21a533 100644 --- a/workflow/sample_files/base-foundation-unconditioned-basement.xml +++ b/workflow/sample_files/base-foundation-unconditioned-basement.xml @@ -248,11 +248,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-foundation-unvented-crawlspace.xml b/workflow/sample_files/base-foundation-unvented-crawlspace.xml index 1c2711cca2..46b01c0b0b 100644 --- a/workflow/sample_files/base-foundation-unvented-crawlspace.xml +++ b/workflow/sample_files/base-foundation-unvented-crawlspace.xml @@ -250,11 +250,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-foundation-vented-crawlspace-above-grade.xml b/workflow/sample_files/base-foundation-vented-crawlspace-above-grade.xml index 9c1084f8bb..1e062d2abd 100644 --- a/workflow/sample_files/base-foundation-vented-crawlspace-above-grade.xml +++ b/workflow/sample_files/base-foundation-vented-crawlspace-above-grade.xml @@ -239,11 +239,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-foundation-vented-crawlspace.xml b/workflow/sample_files/base-foundation-vented-crawlspace.xml index 75d49819a1..4260913659 100644 --- a/workflow/sample_files/base-foundation-vented-crawlspace.xml +++ b/workflow/sample_files/base-foundation-vented-crawlspace.xml @@ -253,11 +253,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-foundation-walkout-basement.xml b/workflow/sample_files/base-foundation-walkout-basement.xml index 4700761f87..83f476d2ba 100644 --- a/workflow/sample_files/base-foundation-walkout-basement.xml +++ b/workflow/sample_files/base-foundation-walkout-basement.xml @@ -286,11 +286,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml index cd3b7de147..d15be80c5a 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml index 899276333a..e1fc8f4d69 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml index a365eb92ca..0668a038bd 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml index 49e580b344..b7829bc618 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures-research-features.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures-research-features.xml index 88105eef2d..3f0b14b300 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures-research-features.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures-research-features.xml @@ -239,11 +239,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml index a53c073d84..9b7173c203 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-research-features.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-research-features.xml index 1e7ab906a9..95a5d5c43b 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-research-features.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-research-features.xml @@ -239,11 +239,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml index f20e5c7551..114d47cb11 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml index cf61747ec8..35014fe8b7 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed-research-features.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed-research-features.xml index b9fbd02775..d36e0e8aeb 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed-research-features.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed-research-features.xml @@ -239,11 +239,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml index 4e2de365b0..289e4b6b29 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml index d2215fc784..1724f7c420 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml @@ -240,11 +240,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-advanced-defrost.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-advanced-defrost.xml index 4d22ccf0b6..a790037be3 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-advanced-defrost.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-advanced-defrost.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml index cab7099af5..ec67f874fc 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml index 1cb3e983d2..2fe102267d 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml index f78a91e5a7..d503cc571d 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml index 683a84af12..1dcedefab3 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml index 96421fc2f4..5ef21515e1 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml index fe2299ca39..a416abcafa 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml index 05af2db067..ddfd9110d5 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml index 0d0259724a..261f7d6beb 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml index 0a00e9d291..21e8d5b578 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml index b43b9d7189..10cc883a95 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml index 308f260aca..f1077a2982 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml index dec8dd63ef..c0d2345bc6 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-research-features.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-research-features.xml index 7294bb3aec..701c10bcd0 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-research-features.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-research-features.xml @@ -241,11 +241,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml index aa8cfd58ec..456861c53f 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-autosize-sizing-controls.xml b/workflow/sample_files/base-hvac-autosize-sizing-controls.xml index e77e90393c..c6445899e0 100644 --- a/workflow/sample_files/base-hvac-autosize-sizing-controls.xml +++ b/workflow/sample_files/base-hvac-autosize-sizing-controls.xml @@ -253,11 +253,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-autosize.xml b/workflow/sample_files/base-hvac-autosize.xml index 0c22716098..f8328d2a90 100644 --- a/workflow/sample_files/base-hvac-autosize.xml +++ b/workflow/sample_files/base-hvac-autosize.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-boiler-coal-only.xml b/workflow/sample_files/base-hvac-boiler-coal-only.xml index 663c8cc9e4..132db52d85 100644 --- a/workflow/sample_files/base-hvac-boiler-coal-only.xml +++ b/workflow/sample_files/base-hvac-boiler-coal-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-boiler-elec-only.xml b/workflow/sample_files/base-hvac-boiler-elec-only.xml index 51fe3df38a..d6fa6bd2ae 100644 --- a/workflow/sample_files/base-hvac-boiler-elec-only.xml +++ b/workflow/sample_files/base-hvac-boiler-elec-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml b/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml index a6e27d8d63..6ccf6430c3 100644 --- a/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml +++ b/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-boiler-gas-only-pilot.xml b/workflow/sample_files/base-hvac-boiler-gas-only-pilot.xml index b82ac38340..7b5633d380 100644 --- a/workflow/sample_files/base-hvac-boiler-gas-only-pilot.xml +++ b/workflow/sample_files/base-hvac-boiler-gas-only-pilot.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-boiler-gas-only.xml b/workflow/sample_files/base-hvac-boiler-gas-only.xml index 3008526018..954b7a2881 100644 --- a/workflow/sample_files/base-hvac-boiler-gas-only.xml +++ b/workflow/sample_files/base-hvac-boiler-gas-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-boiler-oil-only.xml b/workflow/sample_files/base-hvac-boiler-oil-only.xml index a8c4220eea..8b9ad322b0 100644 --- a/workflow/sample_files/base-hvac-boiler-oil-only.xml +++ b/workflow/sample_files/base-hvac-boiler-oil-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-boiler-propane-only.xml b/workflow/sample_files/base-hvac-boiler-propane-only.xml index 07e4230d9e..f18fa600ca 100644 --- a/workflow/sample_files/base-hvac-boiler-propane-only.xml +++ b/workflow/sample_files/base-hvac-boiler-propane-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-boiler-wood-only.xml b/workflow/sample_files/base-hvac-boiler-wood-only.xml index c5cc88011d..0e6640b5d7 100644 --- a/workflow/sample_files/base-hvac-boiler-wood-only.xml +++ b/workflow/sample_files/base-hvac-boiler-wood-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-central-ac-only-1-speed-autosize-factor.xml b/workflow/sample_files/base-hvac-central-ac-only-1-speed-autosize-factor.xml index 93a35c9be6..3e32bdd7ab 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-1-speed-autosize-factor.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-1-speed-autosize-factor.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml b/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml index 6d491711cc..c477610936 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml b/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml index 8d0e50b642..b1c41d29ac 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-central-ac-only-2-speed-research-features.xml b/workflow/sample_files/base-hvac-central-ac-only-2-speed-research-features.xml index 558cfdb405..5c77819704 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-2-speed-research-features.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-2-speed-research-features.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml b/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml index aa085cbe76..616e066339 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml b/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml index 867ad2d9d9..857c49e394 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml b/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml index 1ce74f1fa7..8bcacabc6f 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml b/workflow/sample_files/base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml index 836ca11b7b..57417a8d98 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml b/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml index 3f15525cc2..44c8e24ee7 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml b/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml index 5f4f803135..13e42f5264 100644 --- a/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml +++ b/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-dse.xml b/workflow/sample_files/base-hvac-dse.xml index 7557ae607a..9ab6ff2793 100644 --- a/workflow/sample_files/base-hvac-dse.xml +++ b/workflow/sample_files/base-hvac-dse.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml index c2e22fa6f3..af4cc25fab 100644 --- a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml +++ b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml index 6edc262c9b..682fef5272 100644 --- a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml +++ b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed-advanced-defrost.xml b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed-advanced-defrost.xml index 4676ef3b38..80e002275c 100644 --- a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed-advanced-defrost.xml +++ b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed-advanced-defrost.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml index 81107eb13b..96749c5389 100644 --- a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml +++ b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml index d3f4468d97..78097efc04 100644 --- a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml +++ b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml b/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml index ece66b6770..acb2c0cbab 100644 --- a/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml +++ b/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-ducts-area-fractions.xml b/workflow/sample_files/base-hvac-ducts-area-fractions.xml index c900b51bab..ebbb289e17 100644 --- a/workflow/sample_files/base-hvac-ducts-area-fractions.xml +++ b/workflow/sample_files/base-hvac-ducts-area-fractions.xml @@ -247,11 +247,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-ducts-area-multipliers.xml b/workflow/sample_files/base-hvac-ducts-area-multipliers.xml index a5d7f5e3c0..780504cf6d 100644 --- a/workflow/sample_files/base-hvac-ducts-area-multipliers.xml +++ b/workflow/sample_files/base-hvac-ducts-area-multipliers.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-ducts-buried.xml b/workflow/sample_files/base-hvac-ducts-buried.xml index 9471463b49..6fe503fb9f 100644 --- a/workflow/sample_files/base-hvac-ducts-buried.xml +++ b/workflow/sample_files/base-hvac-ducts-buried.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-ducts-defaults.xml b/workflow/sample_files/base-hvac-ducts-defaults.xml index 09774f0f68..46811250d0 100644 --- a/workflow/sample_files/base-hvac-ducts-defaults.xml +++ b/workflow/sample_files/base-hvac-ducts-defaults.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-ducts-effective-rvalue.xml b/workflow/sample_files/base-hvac-ducts-effective-rvalue.xml index 13ec27a4f5..eaff1b9420 100644 --- a/workflow/sample_files/base-hvac-ducts-effective-rvalue.xml +++ b/workflow/sample_files/base-hvac-ducts-effective-rvalue.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml b/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml index 58ffc8f19c..d11e48c114 100644 --- a/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml +++ b/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-ducts-leakage-percent.xml b/workflow/sample_files/base-hvac-ducts-leakage-percent.xml index d8e40a555a..06e914f94d 100644 --- a/workflow/sample_files/base-hvac-ducts-leakage-percent.xml +++ b/workflow/sample_files/base-hvac-ducts-leakage-percent.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-ducts-shape-mixed.xml b/workflow/sample_files/base-hvac-ducts-shape-mixed.xml index 9596916265..4acc19e38c 100644 --- a/workflow/sample_files/base-hvac-ducts-shape-mixed.xml +++ b/workflow/sample_files/base-hvac-ducts-shape-mixed.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-ducts-shape-rectangular.xml b/workflow/sample_files/base-hvac-ducts-shape-rectangular.xml index 7f65d98902..60bb94b44b 100644 --- a/workflow/sample_files/base-hvac-ducts-shape-rectangular.xml +++ b/workflow/sample_files/base-hvac-ducts-shape-rectangular.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-ducts-shape-round.xml b/workflow/sample_files/base-hvac-ducts-shape-round.xml index bfde27ae42..d97d5c682d 100644 --- a/workflow/sample_files/base-hvac-ducts-shape-round.xml +++ b/workflow/sample_files/base-hvac-ducts-shape-round.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-elec-resistance-only.xml b/workflow/sample_files/base-hvac-elec-resistance-only.xml index 24c82720d4..3d202eeaf5 100644 --- a/workflow/sample_files/base-hvac-elec-resistance-only.xml +++ b/workflow/sample_files/base-hvac-elec-resistance-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml b/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml index d98953281d..6503e7eb8e 100644 --- a/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml +++ b/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml b/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml index b663f77ac0..0c0457063a 100644 --- a/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml +++ b/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-evap-cooler-only.xml b/workflow/sample_files/base-hvac-evap-cooler-only.xml index 1b6d681f78..eef814d094 100644 --- a/workflow/sample_files/base-hvac-evap-cooler-only.xml +++ b/workflow/sample_files/base-hvac-evap-cooler-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-fireplace-wood-only.xml b/workflow/sample_files/base-hvac-fireplace-wood-only.xml index b5ecdff453..f9b294c44a 100644 --- a/workflow/sample_files/base-hvac-fireplace-wood-only.xml +++ b/workflow/sample_files/base-hvac-fireplace-wood-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml b/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml index 94a5b85846..2f7464500f 100644 --- a/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml +++ b/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-furnace-coal-only.xml b/workflow/sample_files/base-hvac-furnace-coal-only.xml index 67e82d4cd8..b6600c6a64 100644 --- a/workflow/sample_files/base-hvac-furnace-coal-only.xml +++ b/workflow/sample_files/base-hvac-furnace-coal-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml b/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml index 79e32141e5..cf83e0db98 100644 --- a/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml +++ b/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-furnace-elec-only.xml b/workflow/sample_files/base-hvac-furnace-elec-only.xml index 38d7952873..2b17fc10b7 100644 --- a/workflow/sample_files/base-hvac-furnace-elec-only.xml +++ b/workflow/sample_files/base-hvac-furnace-elec-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml b/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml index 2305eef24a..332da8a9a6 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml b/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml index a14c5ba0cf..7094660817 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml b/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml index a976c276d9..bbd3d9c2ba 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-furnace-gas-only-autosize-factor.xml b/workflow/sample_files/base-hvac-furnace-gas-only-autosize-factor.xml index c0827526f7..d4d4530074 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-only-autosize-factor.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-only-autosize-factor.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml b/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml index 67196d8a98..f697932cf2 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-furnace-gas-only-pilot.xml b/workflow/sample_files/base-hvac-furnace-gas-only-pilot.xml index e910c0c382..3a6c151c6a 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-only-pilot.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-only-pilot.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-furnace-gas-only.xml b/workflow/sample_files/base-hvac-furnace-gas-only.xml index 25e3f1988e..aa6ee052c7 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-only.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml b/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml index 6095599a50..9d06896716 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-furnace-oil-only.xml b/workflow/sample_files/base-hvac-furnace-oil-only.xml index 13a6f866c1..bc8eeb6db5 100644 --- a/workflow/sample_files/base-hvac-furnace-oil-only.xml +++ b/workflow/sample_files/base-hvac-furnace-oil-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-furnace-propane-only.xml b/workflow/sample_files/base-hvac-furnace-propane-only.xml index ba99100a8d..b1b65774b0 100644 --- a/workflow/sample_files/base-hvac-furnace-propane-only.xml +++ b/workflow/sample_files/base-hvac-furnace-propane-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-furnace-wood-only.xml b/workflow/sample_files/base-hvac-furnace-wood-only.xml index f3aece7d6f..57c6f9b9f9 100644 --- a/workflow/sample_files/base-hvac-furnace-wood-only.xml +++ b/workflow/sample_files/base-hvac-furnace-wood-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-furnace-x3-dse.xml b/workflow/sample_files/base-hvac-furnace-x3-dse.xml index c172a574d3..5d054489bb 100644 --- a/workflow/sample_files/base-hvac-furnace-x3-dse.xml +++ b/workflow/sample_files/base-hvac-furnace-x3-dse.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml index fa7eb4df17..14a8e77039 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml index b78a86244b..69e8514988 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml @@ -241,11 +241,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml index 7b32b05772..22e865cf50 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml index 82bf77ef95..e7ff203b37 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml index 951bd184a2..13691ff473 100644 --- a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml +++ b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml index 03a3a3d0a2..3bfd55e176 100644 --- a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml +++ b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml index 6f89d926ae..8f1952ca89 100644 --- a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml +++ b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml index cac6e36055..97794a6b60 100644 --- a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml +++ b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml b/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml index 419625a4ec..2e4c2f56ed 100644 --- a/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml +++ b/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml b/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml index d2ecd0c0c7..84bcf8f3ee 100644 --- a/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml +++ b/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml b/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml index b2102a8760..bd799988e6 100644 --- a/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml +++ b/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml b/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml index c0eaae9adf..06a8df93c0 100644 --- a/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml +++ b/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml b/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml index c8fe7d9f7f..b2397ae147 100644 --- a/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml +++ b/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml b/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml index cfecd5e8a7..1d21f16d60 100644 --- a/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml +++ b/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml b/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml index 81c5a07584..2e97f53bdc 100644 --- a/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml +++ b/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml index 8bd463fdf8..a1e0e158c6 100644 --- a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml +++ b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml index a6e9ce9bb0..8b6164c6fc 100644 --- a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml +++ b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml index bfd31b4778..39c2dcf522 100644 --- a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml +++ b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml index 5e8aa2e66c..8e1d55f8b6 100644 --- a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml +++ b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml index f772967e4c..bcf51b0648 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml index c38f38b5fe..6482887e05 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml index ea77721c25..73e1c538a1 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml index e4ea80580e..08bfbdba6c 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml index 89900f2898..1d53c8d603 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml index 8ab585c94e..f02c9f5d5a 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml index 3473bc621f..cb97dc0d2b 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-advanced-defrost.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-advanced-defrost.xml index 35264474da..b24afe768f 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-advanced-defrost.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-advanced-defrost.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-autosize-factor.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-autosize-factor.xml index f562867f43..0ad53fb6c4 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-autosize-factor.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-autosize-factor.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-advanced-defrost.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-advanced-defrost.xml index db28c89f73..82067736ac 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-advanced-defrost.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-advanced-defrost.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml index 08cdf0d66f..7a297c929e 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml index 12b3087eb3..a2fdb84594 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml index 3471483ed7..eddd73eb8e 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml index 5ada1ee53a..9402b52fbe 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml index ed056ba8ba..9a6b72daa2 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml index d96bf5d060..3e40c28285 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml index cceb07ba76..aed44ea9d9 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml index 4f88520749..8f91ea86ea 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-multiple.xml b/workflow/sample_files/base-hvac-multiple.xml index 4781238e06..c29746ae19 100644 --- a/workflow/sample_files/base-hvac-multiple.xml +++ b/workflow/sample_files/base-hvac-multiple.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-none.xml b/workflow/sample_files/base-hvac-none.xml index 8fa512f9a9..5c1d7a7637 100644 --- a/workflow/sample_files/base-hvac-none.xml +++ b/workflow/sample_files/base-hvac-none.xml @@ -188,11 +188,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml b/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml index 4fbcfc67fb..cece20b2d5 100644 --- a/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml +++ b/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml b/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml index eb6211644c..76603aaebc 100644 --- a/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml +++ b/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-ptac.xml b/workflow/sample_files/base-hvac-ptac.xml index 30a33696e4..c213922e02 100644 --- a/workflow/sample_files/base-hvac-ptac.xml +++ b/workflow/sample_files/base-hvac-ptac.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-pthp-heating-capacity-17f.xml b/workflow/sample_files/base-hvac-pthp-heating-capacity-17f.xml index 09a5936cfa..ac16fbb053 100644 --- a/workflow/sample_files/base-hvac-pthp-heating-capacity-17f.xml +++ b/workflow/sample_files/base-hvac-pthp-heating-capacity-17f.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-pthp.xml b/workflow/sample_files/base-hvac-pthp.xml index 643169439b..d13b2092f5 100644 --- a/workflow/sample_files/base-hvac-pthp.xml +++ b/workflow/sample_files/base-hvac-pthp.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-room-ac-only-33percent.xml b/workflow/sample_files/base-hvac-room-ac-only-33percent.xml index cba6ad1682..ac9b157623 100644 --- a/workflow/sample_files/base-hvac-room-ac-only-33percent.xml +++ b/workflow/sample_files/base-hvac-room-ac-only-33percent.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-room-ac-only-ceer.xml b/workflow/sample_files/base-hvac-room-ac-only-ceer.xml index a5b9e5e8a2..01cec58222 100644 --- a/workflow/sample_files/base-hvac-room-ac-only-ceer.xml +++ b/workflow/sample_files/base-hvac-room-ac-only-ceer.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml b/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml index faa1df59b3..c02ef38116 100644 --- a/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml +++ b/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-room-ac-only-research-features-detailed-setpoints.xml b/workflow/sample_files/base-hvac-room-ac-only-research-features-detailed-setpoints.xml index 8bf43091ea..053435599c 100644 --- a/workflow/sample_files/base-hvac-room-ac-only-research-features-detailed-setpoints.xml +++ b/workflow/sample_files/base-hvac-room-ac-only-research-features-detailed-setpoints.xml @@ -240,11 +240,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-room-ac-only-research-features.xml b/workflow/sample_files/base-hvac-room-ac-only-research-features.xml index cd6c7558f5..4851ed2ef0 100644 --- a/workflow/sample_files/base-hvac-room-ac-only-research-features.xml +++ b/workflow/sample_files/base-hvac-room-ac-only-research-features.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-room-ac-only.xml b/workflow/sample_files/base-hvac-room-ac-only.xml index 94f8e2b822..c59efdd66e 100644 --- a/workflow/sample_files/base-hvac-room-ac-only.xml +++ b/workflow/sample_files/base-hvac-room-ac-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-room-ac-with-heating.xml b/workflow/sample_files/base-hvac-room-ac-with-heating.xml index 9ef6aff2a8..90d4cd9e7c 100644 --- a/workflow/sample_files/base-hvac-room-ac-with-heating.xml +++ b/workflow/sample_files/base-hvac-room-ac-with-heating.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml b/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml index 1935b9004d..2a7f03d138 100644 --- a/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml +++ b/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-seasons.xml b/workflow/sample_files/base-hvac-seasons.xml index 75d0edc182..18bb763a11 100644 --- a/workflow/sample_files/base-hvac-seasons.xml +++ b/workflow/sample_files/base-hvac-seasons.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml b/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml index cc08ef9c7d..b5a88a491c 100644 --- a/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml +++ b/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml b/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml index 2f9d71d281..5a63aca3df 100644 --- a/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml +++ b/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-setpoints.xml b/workflow/sample_files/base-hvac-setpoints.xml index 757c92fd20..4027c6b472 100644 --- a/workflow/sample_files/base-hvac-setpoints.xml +++ b/workflow/sample_files/base-hvac-setpoints.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-space-heater-gas-only.xml b/workflow/sample_files/base-hvac-space-heater-gas-only.xml index de118a6dec..822d61c3e0 100644 --- a/workflow/sample_files/base-hvac-space-heater-gas-only.xml +++ b/workflow/sample_files/base-hvac-space-heater-gas-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-stove-oil-only.xml b/workflow/sample_files/base-hvac-stove-oil-only.xml index e08bfad27e..d655033697 100644 --- a/workflow/sample_files/base-hvac-stove-oil-only.xml +++ b/workflow/sample_files/base-hvac-stove-oil-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml b/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml index 0e7dfcb8aa..b356a164da 100644 --- a/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml +++ b/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-undersized.xml b/workflow/sample_files/base-hvac-undersized.xml index f63e5aa596..0f50464ae4 100644 --- a/workflow/sample_files/base-hvac-undersized.xml +++ b/workflow/sample_files/base-hvac-undersized.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml b/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml index e75f5d1521..cca4619917 100644 --- a/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml +++ b/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-lighting-ceiling-fans-label-energy-use.xml b/workflow/sample_files/base-lighting-ceiling-fans-label-energy-use.xml index 83aac69b33..4cfd0c7817 100644 --- a/workflow/sample_files/base-lighting-ceiling-fans-label-energy-use.xml +++ b/workflow/sample_files/base-lighting-ceiling-fans-label-energy-use.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-lighting-ceiling-fans.xml b/workflow/sample_files/base-lighting-ceiling-fans.xml index c22a4d933b..52b8b880bb 100644 --- a/workflow/sample_files/base-lighting-ceiling-fans.xml +++ b/workflow/sample_files/base-lighting-ceiling-fans.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-lighting-holiday.xml b/workflow/sample_files/base-lighting-holiday.xml index e19e735e22..f94edd8dff 100644 --- a/workflow/sample_files/base-lighting-holiday.xml +++ b/workflow/sample_files/base-lighting-holiday.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-lighting-kwh-per-year.xml b/workflow/sample_files/base-lighting-kwh-per-year.xml index 6ac1c7d990..6c51e7b315 100644 --- a/workflow/sample_files/base-lighting-kwh-per-year.xml +++ b/workflow/sample_files/base-lighting-kwh-per-year.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-lighting-mixed.xml b/workflow/sample_files/base-lighting-mixed.xml index 6a48fe5892..1c859b9bff 100644 --- a/workflow/sample_files/base-lighting-mixed.xml +++ b/workflow/sample_files/base-lighting-mixed.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-lighting-none-ceiling-fans.xml b/workflow/sample_files/base-lighting-none-ceiling-fans.xml index 6d52d3cee7..a3e38d1151 100644 --- a/workflow/sample_files/base-lighting-none-ceiling-fans.xml +++ b/workflow/sample_files/base-lighting-none-ceiling-fans.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-lighting-none.xml b/workflow/sample_files/base-lighting-none.xml index 578e944db0..6fc1bc7916 100644 --- a/workflow/sample_files/base-lighting-none.xml +++ b/workflow/sample_files/base-lighting-none.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-location-AMY-2012.xml b/workflow/sample_files/base-location-AMY-2012.xml index 30c61d7132..e1d8897abf 100644 --- a/workflow/sample_files/base-location-AMY-2012.xml +++ b/workflow/sample_files/base-location-AMY-2012.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-location-baltimore-md.xml b/workflow/sample_files/base-location-baltimore-md.xml index 770473591c..c1c4aa9730 100644 --- a/workflow/sample_files/base-location-baltimore-md.xml +++ b/workflow/sample_files/base-location-baltimore-md.xml @@ -250,11 +250,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-location-capetown-zaf.xml b/workflow/sample_files/base-location-capetown-zaf.xml index c13e6cc400..b888233c44 100644 --- a/workflow/sample_files/base-location-capetown-zaf.xml +++ b/workflow/sample_files/base-location-capetown-zaf.xml @@ -243,11 +243,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-location-dallas-tx.xml b/workflow/sample_files/base-location-dallas-tx.xml index 232ce981c8..9d6cc4385c 100644 --- a/workflow/sample_files/base-location-dallas-tx.xml +++ b/workflow/sample_files/base-location-dallas-tx.xml @@ -188,11 +188,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-location-detailed.xml b/workflow/sample_files/base-location-detailed.xml index 8553434837..ab274fd495 100644 --- a/workflow/sample_files/base-location-detailed.xml +++ b/workflow/sample_files/base-location-detailed.xml @@ -244,11 +244,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-location-duluth-mn.xml b/workflow/sample_files/base-location-duluth-mn.xml index 58b0e36263..2380e5d3a8 100644 --- a/workflow/sample_files/base-location-duluth-mn.xml +++ b/workflow/sample_files/base-location-duluth-mn.xml @@ -247,11 +247,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-location-helena-mt.xml b/workflow/sample_files/base-location-helena-mt.xml index 5b5a33d2bb..8d2bbb145c 100644 --- a/workflow/sample_files/base-location-helena-mt.xml +++ b/workflow/sample_files/base-location-helena-mt.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-location-honolulu-hi.xml b/workflow/sample_files/base-location-honolulu-hi.xml index 27750cff8d..36c2206cb8 100644 --- a/workflow/sample_files/base-location-honolulu-hi.xml +++ b/workflow/sample_files/base-location-honolulu-hi.xml @@ -188,11 +188,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-location-miami-fl.xml b/workflow/sample_files/base-location-miami-fl.xml index 0f40548a13..8d7dd7f29d 100644 --- a/workflow/sample_files/base-location-miami-fl.xml +++ b/workflow/sample_files/base-location-miami-fl.xml @@ -188,11 +188,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-location-phoenix-az.xml b/workflow/sample_files/base-location-phoenix-az.xml index 22ee635496..cb0d41f421 100644 --- a/workflow/sample_files/base-location-phoenix-az.xml +++ b/workflow/sample_files/base-location-phoenix-az.xml @@ -188,11 +188,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-location-portland-or.xml b/workflow/sample_files/base-location-portland-or.xml index 742bcc7833..c01e9481b2 100644 --- a/workflow/sample_files/base-location-portland-or.xml +++ b/workflow/sample_files/base-location-portland-or.xml @@ -253,11 +253,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-mechvent-balanced.xml b/workflow/sample_files/base-mechvent-balanced.xml index d884a57463..88f6409c47 100644 --- a/workflow/sample_files/base-mechvent-balanced.xml +++ b/workflow/sample_files/base-mechvent-balanced.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml b/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml index 556866a3ad..a8b3a3096d 100644 --- a/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml +++ b/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml b/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml index ed9d6af360..2be5d2d1cd 100644 --- a/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml +++ b/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-mechvent-cfis-dse.xml b/workflow/sample_files/base-mechvent-cfis-dse.xml index 321e29a221..59fbbebbd6 100644 --- a/workflow/sample_files/base-mechvent-cfis-dse.xml +++ b/workflow/sample_files/base-mechvent-cfis-dse.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml b/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml index 700aaf2162..70a653759d 100644 --- a/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml +++ b/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-mechvent-cfis-no-additional-runtime.xml b/workflow/sample_files/base-mechvent-cfis-no-additional-runtime.xml index ec12f7d259..2e194df42b 100644 --- a/workflow/sample_files/base-mechvent-cfis-no-additional-runtime.xml +++ b/workflow/sample_files/base-mechvent-cfis-no-additional-runtime.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml b/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml index 97e8bc1674..7f1b7963d9 100644 --- a/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml +++ b/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml b/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml index c7c46cd783..3f42bcf436 100644 --- a/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml +++ b/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-mechvent-cfis.xml b/workflow/sample_files/base-mechvent-cfis.xml index 029e301415..d933b0c9ab 100644 --- a/workflow/sample_files/base-mechvent-cfis.xml +++ b/workflow/sample_files/base-mechvent-cfis.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-mechvent-erv-atre-asre.xml b/workflow/sample_files/base-mechvent-erv-atre-asre.xml index 66704aa86b..956a397a96 100644 --- a/workflow/sample_files/base-mechvent-erv-atre-asre.xml +++ b/workflow/sample_files/base-mechvent-erv-atre-asre.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-mechvent-erv.xml b/workflow/sample_files/base-mechvent-erv.xml index 031dec2410..4d9cea1eee 100644 --- a/workflow/sample_files/base-mechvent-erv.xml +++ b/workflow/sample_files/base-mechvent-erv.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml b/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml index c97e960b77..b8756fdfdd 100644 --- a/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml +++ b/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-mechvent-exhaust.xml b/workflow/sample_files/base-mechvent-exhaust.xml index c97e960b77..b8756fdfdd 100644 --- a/workflow/sample_files/base-mechvent-exhaust.xml +++ b/workflow/sample_files/base-mechvent-exhaust.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-mechvent-hrv-asre.xml b/workflow/sample_files/base-mechvent-hrv-asre.xml index 7fb905c3af..2f34c37c5b 100644 --- a/workflow/sample_files/base-mechvent-hrv-asre.xml +++ b/workflow/sample_files/base-mechvent-hrv-asre.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-mechvent-hrv.xml b/workflow/sample_files/base-mechvent-hrv.xml index a5c48e482a..d4ac8ea184 100644 --- a/workflow/sample_files/base-mechvent-hrv.xml +++ b/workflow/sample_files/base-mechvent-hrv.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-mechvent-multiple.xml b/workflow/sample_files/base-mechvent-multiple.xml index 53979619eb..7d1b65a96f 100644 --- a/workflow/sample_files/base-mechvent-multiple.xml +++ b/workflow/sample_files/base-mechvent-multiple.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-mechvent-supply.xml b/workflow/sample_files/base-mechvent-supply.xml index e1409bd2bb..85fafe6b59 100644 --- a/workflow/sample_files/base-mechvent-supply.xml +++ b/workflow/sample_files/base-mechvent-supply.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-mechvent-whole-house-fan.xml b/workflow/sample_files/base-mechvent-whole-house-fan.xml index 4907a07cdb..3fe0cc773c 100644 --- a/workflow/sample_files/base-mechvent-whole-house-fan.xml +++ b/workflow/sample_files/base-mechvent-whole-house-fan.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-misc-additional-properties.xml b/workflow/sample_files/base-misc-additional-properties.xml index 3b2c5245d4..89c59af18d 100644 --- a/workflow/sample_files/base-misc-additional-properties.xml +++ b/workflow/sample_files/base-misc-additional-properties.xml @@ -246,11 +246,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-misc-bills-battery-scheduled-detailed-only.xml b/workflow/sample_files/base-misc-bills-battery-scheduled-detailed-only.xml index a9298ea58b..28c383e6fc 100644 --- a/workflow/sample_files/base-misc-bills-battery-scheduled-detailed-only.xml +++ b/workflow/sample_files/base-misc-bills-battery-scheduled-detailed-only.xml @@ -262,11 +262,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-misc-bills-detailed-only.xml b/workflow/sample_files/base-misc-bills-detailed-only.xml index d6229fc58f..6bac962dac 100644 --- a/workflow/sample_files/base-misc-bills-detailed-only.xml +++ b/workflow/sample_files/base-misc-bills-detailed-only.xml @@ -259,11 +259,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-misc-bills-pv-detailed-only.xml b/workflow/sample_files/base-misc-bills-pv-detailed-only.xml index 843fe71287..d561af62e9 100644 --- a/workflow/sample_files/base-misc-bills-pv-detailed-only.xml +++ b/workflow/sample_files/base-misc-bills-pv-detailed-only.xml @@ -259,11 +259,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-misc-bills-pv-mixed.xml b/workflow/sample_files/base-misc-bills-pv-mixed.xml index 627cedec24..d3e8a359d0 100644 --- a/workflow/sample_files/base-misc-bills-pv-mixed.xml +++ b/workflow/sample_files/base-misc-bills-pv-mixed.xml @@ -241,11 +241,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-misc-bills-pv.xml b/workflow/sample_files/base-misc-bills-pv.xml index 6023a47fea..cd5c995f1e 100644 --- a/workflow/sample_files/base-misc-bills-pv.xml +++ b/workflow/sample_files/base-misc-bills-pv.xml @@ -304,11 +304,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-misc-bills.xml b/workflow/sample_files/base-misc-bills.xml index 61b4b52271..689978d05f 100644 --- a/workflow/sample_files/base-misc-bills.xml +++ b/workflow/sample_files/base-misc-bills.xml @@ -244,11 +244,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-misc-defaults.xml b/workflow/sample_files/base-misc-defaults.xml index 6d45703b2c..da5ff46492 100644 --- a/workflow/sample_files/base-misc-defaults.xml +++ b/workflow/sample_files/base-misc-defaults.xml @@ -167,11 +167,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-misc-emissions.xml b/workflow/sample_files/base-misc-emissions.xml index 7287b9bbf2..2b293c181e 100644 --- a/workflow/sample_files/base-misc-emissions.xml +++ b/workflow/sample_files/base-misc-emissions.xml @@ -288,11 +288,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-misc-generators-battery-scheduled.xml b/workflow/sample_files/base-misc-generators-battery-scheduled.xml index 0b2bf9aab7..57025c446b 100644 --- a/workflow/sample_files/base-misc-generators-battery-scheduled.xml +++ b/workflow/sample_files/base-misc-generators-battery-scheduled.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-misc-generators-battery.xml b/workflow/sample_files/base-misc-generators-battery.xml index 00e1fa330c..2345f99460 100644 --- a/workflow/sample_files/base-misc-generators-battery.xml +++ b/workflow/sample_files/base-misc-generators-battery.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-misc-generators.xml b/workflow/sample_files/base-misc-generators.xml index f5e62b45ae..1db13370b2 100644 --- a/workflow/sample_files/base-misc-generators.xml +++ b/workflow/sample_files/base-misc-generators.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-misc-ground-conductivity.xml b/workflow/sample_files/base-misc-ground-conductivity.xml index e796251625..f574a76e3b 100644 --- a/workflow/sample_files/base-misc-ground-conductivity.xml +++ b/workflow/sample_files/base-misc-ground-conductivity.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-misc-loads-large-uncommon.xml b/workflow/sample_files/base-misc-loads-large-uncommon.xml index 498a6005f7..35bcfb3007 100644 --- a/workflow/sample_files/base-misc-loads-large-uncommon.xml +++ b/workflow/sample_files/base-misc-loads-large-uncommon.xml @@ -244,11 +244,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-misc-loads-large-uncommon2.xml b/workflow/sample_files/base-misc-loads-large-uncommon2.xml index 3ce4ef1210..7b99408614 100644 --- a/workflow/sample_files/base-misc-loads-large-uncommon2.xml +++ b/workflow/sample_files/base-misc-loads-large-uncommon2.xml @@ -244,11 +244,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-misc-loads-none.xml b/workflow/sample_files/base-misc-loads-none.xml index 590a039f63..b2bd5794ad 100644 --- a/workflow/sample_files/base-misc-loads-none.xml +++ b/workflow/sample_files/base-misc-loads-none.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-misc-neighbor-shading.xml b/workflow/sample_files/base-misc-neighbor-shading.xml index f126a6afdf..e0201adb73 100644 --- a/workflow/sample_files/base-misc-neighbor-shading.xml +++ b/workflow/sample_files/base-misc-neighbor-shading.xml @@ -247,11 +247,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-misc-shielding-of-home.xml b/workflow/sample_files/base-misc-shielding-of-home.xml index ae799d1f2b..7fe40b70af 100644 --- a/workflow/sample_files/base-misc-shielding-of-home.xml +++ b/workflow/sample_files/base-misc-shielding-of-home.xml @@ -235,11 +235,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-misc-unit-multiplier.xml b/workflow/sample_files/base-misc-unit-multiplier.xml index 1f906d4fea..708c3a2fc2 100644 --- a/workflow/sample_files/base-misc-unit-multiplier.xml +++ b/workflow/sample_files/base-misc-unit-multiplier.xml @@ -235,11 +235,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-misc-usage-multiplier.xml b/workflow/sample_files/base-misc-usage-multiplier.xml index 3faa73408d..6d26c99c61 100644 --- a/workflow/sample_files/base-misc-usage-multiplier.xml +++ b/workflow/sample_files/base-misc-usage-multiplier.xml @@ -239,11 +239,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-pv-battery-ah.xml b/workflow/sample_files/base-pv-battery-ah.xml index 8a26c95824..6934e3f4ec 100644 --- a/workflow/sample_files/base-pv-battery-ah.xml +++ b/workflow/sample_files/base-pv-battery-ah.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-pv-battery-garage.xml b/workflow/sample_files/base-pv-battery-garage.xml index def8383c0b..84245362b3 100644 --- a/workflow/sample_files/base-pv-battery-garage.xml +++ b/workflow/sample_files/base-pv-battery-garage.xml @@ -283,11 +283,7 @@ - - 0.0 - 0.0 - 0.0 - + @@ -316,11 +312,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-pv-battery-round-trip-efficiency.xml b/workflow/sample_files/base-pv-battery-round-trip-efficiency.xml index ac3f01fc73..db9cedfae4 100644 --- a/workflow/sample_files/base-pv-battery-round-trip-efficiency.xml +++ b/workflow/sample_files/base-pv-battery-round-trip-efficiency.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-pv-battery-scheduled.xml b/workflow/sample_files/base-pv-battery-scheduled.xml index 58339f06a6..d68a81d378 100644 --- a/workflow/sample_files/base-pv-battery-scheduled.xml +++ b/workflow/sample_files/base-pv-battery-scheduled.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-pv-battery.xml b/workflow/sample_files/base-pv-battery.xml index 07ed5ab412..f40f95672d 100644 --- a/workflow/sample_files/base-pv-battery.xml +++ b/workflow/sample_files/base-pv-battery.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-pv-generators-battery-scheduled.xml b/workflow/sample_files/base-pv-generators-battery-scheduled.xml index 455a275ec7..55af7803ef 100644 --- a/workflow/sample_files/base-pv-generators-battery-scheduled.xml +++ b/workflow/sample_files/base-pv-generators-battery-scheduled.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-pv-generators-battery.xml b/workflow/sample_files/base-pv-generators-battery.xml index 4cb72ca6c1..3b1bf634ff 100644 --- a/workflow/sample_files/base-pv-generators-battery.xml +++ b/workflow/sample_files/base-pv-generators-battery.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-pv-generators.xml b/workflow/sample_files/base-pv-generators.xml index 7531eac49f..74e3f29495 100644 --- a/workflow/sample_files/base-pv-generators.xml +++ b/workflow/sample_files/base-pv-generators.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-pv.xml b/workflow/sample_files/base-pv.xml index ea9c1b78c6..90b8950e8c 100644 --- a/workflow/sample_files/base-pv.xml +++ b/workflow/sample_files/base-pv.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-residents-0-runperiod-1-month.xml b/workflow/sample_files/base-residents-0-runperiod-1-month.xml index 50ab53f700..d52e1f0bb7 100644 --- a/workflow/sample_files/base-residents-0-runperiod-1-month.xml +++ b/workflow/sample_files/base-residents-0-runperiod-1-month.xml @@ -241,11 +241,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-residents-0.xml b/workflow/sample_files/base-residents-0.xml index 80923fb249..995536f983 100644 --- a/workflow/sample_files/base-residents-0.xml +++ b/workflow/sample_files/base-residents-0.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-residents-1-misc-loads-large-uncommon.xml b/workflow/sample_files/base-residents-1-misc-loads-large-uncommon.xml index 5828583624..954fe69aa7 100644 --- a/workflow/sample_files/base-residents-1-misc-loads-large-uncommon.xml +++ b/workflow/sample_files/base-residents-1-misc-loads-large-uncommon.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-residents-1-misc-loads-large-uncommon2.xml b/workflow/sample_files/base-residents-1-misc-loads-large-uncommon2.xml index 371b6ac35c..47decf013e 100644 --- a/workflow/sample_files/base-residents-1-misc-loads-large-uncommon2.xml +++ b/workflow/sample_files/base-residents-1-misc-loads-large-uncommon2.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-residents-1.xml b/workflow/sample_files/base-residents-1.xml index ed81b4f6a5..3b33343007 100644 --- a/workflow/sample_files/base-residents-1.xml +++ b/workflow/sample_files/base-residents-1.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-residents-5.xml b/workflow/sample_files/base-residents-5.xml index 47264e91ed..ad6a79f021 100644 --- a/workflow/sample_files/base-residents-5.xml +++ b/workflow/sample_files/base-residents-5.xml @@ -214,11 +214,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-schedules-detailed-all-10-mins.xml b/workflow/sample_files/base-schedules-detailed-all-10-mins.xml index b97fc2f11b..8b82b9f442 100644 --- a/workflow/sample_files/base-schedules-detailed-all-10-mins.xml +++ b/workflow/sample_files/base-schedules-detailed-all-10-mins.xml @@ -239,11 +239,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-schedules-detailed-mixed-timesteps-power-outage.xml b/workflow/sample_files/base-schedules-detailed-mixed-timesteps-power-outage.xml index bc7f7ac060..aec3621a22 100644 --- a/workflow/sample_files/base-schedules-detailed-mixed-timesteps-power-outage.xml +++ b/workflow/sample_files/base-schedules-detailed-mixed-timesteps-power-outage.xml @@ -250,11 +250,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-schedules-detailed-mixed-timesteps.xml b/workflow/sample_files/base-schedules-detailed-mixed-timesteps.xml index 17c1fdb69c..1f3b880d83 100644 --- a/workflow/sample_files/base-schedules-detailed-mixed-timesteps.xml +++ b/workflow/sample_files/base-schedules-detailed-mixed-timesteps.xml @@ -239,11 +239,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml index 0e50b4c3ea..9c837c4c89 100644 --- a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml +++ b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml index 31165c7136..e02405603c 100644 --- a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml +++ b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml @@ -248,11 +248,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml index 827295a04a..5a85844e37 100644 --- a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml +++ b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml @@ -247,11 +247,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml index ecc6d83afd..c6f1d035ee 100644 --- a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml +++ b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml b/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml index 4ca7718d4b..2ef0570e5f 100644 --- a/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml +++ b/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml b/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml index 79f804d2d7..30c4eb702c 100644 --- a/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml +++ b/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-schedules-detailed-setpoints.xml b/workflow/sample_files/base-schedules-detailed-setpoints.xml index 8afeffb73c..3ca0ae44d1 100644 --- a/workflow/sample_files/base-schedules-detailed-setpoints.xml +++ b/workflow/sample_files/base-schedules-detailed-setpoints.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-schedules-simple-power-outage.xml b/workflow/sample_files/base-schedules-simple-power-outage.xml index 8c70298ba0..5df8906bbe 100644 --- a/workflow/sample_files/base-schedules-simple-power-outage.xml +++ b/workflow/sample_files/base-schedules-simple-power-outage.xml @@ -255,11 +255,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-schedules-simple-vacancy.xml b/workflow/sample_files/base-schedules-simple-vacancy.xml index f6817b8966..a85421d7ae 100644 --- a/workflow/sample_files/base-schedules-simple-vacancy.xml +++ b/workflow/sample_files/base-schedules-simple-vacancy.xml @@ -254,11 +254,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-schedules-simple.xml b/workflow/sample_files/base-schedules-simple.xml index 29d87b3aac..40ad0f92cf 100644 --- a/workflow/sample_files/base-schedules-simple.xml +++ b/workflow/sample_files/base-schedules-simple.xml @@ -244,11 +244,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-simcontrol-calendar-year-custom.xml b/workflow/sample_files/base-simcontrol-calendar-year-custom.xml index 4f7dd6f530..960ec9d3a9 100644 --- a/workflow/sample_files/base-simcontrol-calendar-year-custom.xml +++ b/workflow/sample_files/base-simcontrol-calendar-year-custom.xml @@ -235,11 +235,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml b/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml index 771f5aae13..b003d5abc6 100644 --- a/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml +++ b/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml @@ -243,11 +243,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml b/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml index e0e8e10299..18430d2e99 100644 --- a/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml +++ b/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-simcontrol-runperiod-1-month.xml b/workflow/sample_files/base-simcontrol-runperiod-1-month.xml index 06884d7f7a..8becd67920 100644 --- a/workflow/sample_files/base-simcontrol-runperiod-1-month.xml +++ b/workflow/sample_files/base-simcontrol-runperiod-1-month.xml @@ -289,11 +289,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-simcontrol-temperature-capacitance-multiplier.xml b/workflow/sample_files/base-simcontrol-temperature-capacitance-multiplier.xml index baaf433470..7233ccc602 100644 --- a/workflow/sample_files/base-simcontrol-temperature-capacitance-multiplier.xml +++ b/workflow/sample_files/base-simcontrol-temperature-capacitance-multiplier.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml b/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml index 6c6ba089a1..8f171beb56 100644 --- a/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml +++ b/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml b/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml index 31bb1f8c7a..9b4bef1018 100644 --- a/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml +++ b/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml @@ -237,11 +237,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-simcontrol-timestep-10-mins.xml b/workflow/sample_files/base-simcontrol-timestep-10-mins.xml index 850fd08898..c0b143a44e 100644 --- a/workflow/sample_files/base-simcontrol-timestep-10-mins.xml +++ b/workflow/sample_files/base-simcontrol-timestep-10-mins.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-simcontrol-timestep-30-mins.xml b/workflow/sample_files/base-simcontrol-timestep-30-mins.xml index 0ef358508a..45148eebbf 100644 --- a/workflow/sample_files/base-simcontrol-timestep-30-mins.xml +++ b/workflow/sample_files/base-simcontrol-timestep-30-mins.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-zones-spaces-multiple.xml b/workflow/sample_files/base-zones-spaces-multiple.xml index cadc718a69..ae5defa41a 100644 --- a/workflow/sample_files/base-zones-spaces-multiple.xml +++ b/workflow/sample_files/base-zones-spaces-multiple.xml @@ -460,11 +460,7 @@ - - 0.0 - 0.0 - 0.0 - + @@ -494,11 +490,7 @@ - - 0.0 - 0.0 - 0.0 - + @@ -528,11 +520,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base-zones-spaces.xml b/workflow/sample_files/base-zones-spaces.xml index 4a4c3b62c0..a982fbc6b8 100644 --- a/workflow/sample_files/base-zones-spaces.xml +++ b/workflow/sample_files/base-zones-spaces.xml @@ -454,11 +454,7 @@ - - 0.0 - 0.0 - 0.0 - + @@ -488,11 +484,7 @@ - - 0.0 - 0.0 - 0.0 - + @@ -522,11 +514,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/sample_files/base.xml b/workflow/sample_files/base.xml index 4245ea1cc9..cd2724248d 100644 --- a/workflow/sample_files/base.xml +++ b/workflow/sample_files/base.xml @@ -234,11 +234,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/tests/ASHRAE_Standard_140/L302XC.xml b/workflow/tests/ASHRAE_Standard_140/L302XC.xml index 094189051f..c2b110f2ae 100644 --- a/workflow/tests/ASHRAE_Standard_140/L302XC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L302XC.xml @@ -262,11 +262,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/tests/ASHRAE_Standard_140/L304XC.xml b/workflow/tests/ASHRAE_Standard_140/L304XC.xml index 1aec7ad60e..2ec01884bf 100644 --- a/workflow/tests/ASHRAE_Standard_140/L304XC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L304XC.xml @@ -262,11 +262,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/tests/ASHRAE_Standard_140/L322XC.xml b/workflow/tests/ASHRAE_Standard_140/L322XC.xml index 27d1e768df..766b5ed1cc 100644 --- a/workflow/tests/ASHRAE_Standard_140/L322XC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L322XC.xml @@ -418,11 +418,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/tests/ASHRAE_Standard_140/L324XC.xml b/workflow/tests/ASHRAE_Standard_140/L324XC.xml index fb98faefa7..c050b0b3af 100644 --- a/workflow/tests/ASHRAE_Standard_140/L324XC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L324XC.xml @@ -430,11 +430,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/tests/HERS_DSE/HVAC3a.xml b/workflow/tests/HERS_DSE/HVAC3a.xml index 4ccf63a211..057ff891c6 100644 --- a/workflow/tests/HERS_DSE/HVAC3a.xml +++ b/workflow/tests/HERS_DSE/HVAC3a.xml @@ -432,11 +432,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/tests/HERS_DSE/HVAC3b.xml b/workflow/tests/HERS_DSE/HVAC3b.xml index 88dbc11633..36e7fa9cec 100644 --- a/workflow/tests/HERS_DSE/HVAC3b.xml +++ b/workflow/tests/HERS_DSE/HVAC3b.xml @@ -432,11 +432,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/tests/HERS_DSE/HVAC3c.xml b/workflow/tests/HERS_DSE/HVAC3c.xml index 4a9f93e627..79b97b24eb 100644 --- a/workflow/tests/HERS_DSE/HVAC3c.xml +++ b/workflow/tests/HERS_DSE/HVAC3c.xml @@ -432,11 +432,7 @@ - - 0.0 - 0.0 - 0.0 - + diff --git a/workflow/tests/HERS_DSE/HVAC3d.xml b/workflow/tests/HERS_DSE/HVAC3d.xml index 79dd37b953..8ee2aef9c9 100644 --- a/workflow/tests/HERS_DSE/HVAC3d.xml +++ b/workflow/tests/HERS_DSE/HVAC3d.xml @@ -432,11 +432,7 @@ - - 0.0 - 0.0 - 0.0 - + From d2f37f369be9405f1614dfeb17d3eb09324e2e2e Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Tue, 23 Jul 2024 15:56:00 -0600 Subject: [PATCH 25/41] Remove empty elements from sample HPXML files and misc cleanup. --- BuildResidentialHPXML/measure.rb | 10 ++--- BuildResidentialHPXML/measure.xml | 6 +-- HPXMLtoOpenStudio/measure.xml | 18 ++++++-- HPXMLtoOpenStudio/tests/test_enclosure.rb | 41 +++++++++++-------- tasks.rb | 4 +- .../sample_files/base-appliances-coal.xml | 4 -- ...e-appliances-dehumidifier-ief-portable.xml | 4 -- ...appliances-dehumidifier-ief-whole-home.xml | 4 -- .../base-appliances-dehumidifier-multiple.xml | 4 -- .../base-appliances-dehumidifier.xml | 4 -- ...freezer-temperature-dependent-schedule.xml | 4 -- workflow/sample_files/base-appliances-gas.xml | 4 -- .../sample_files/base-appliances-modified.xml | 4 -- .../sample_files/base-appliances-none.xml | 4 -- workflow/sample_files/base-appliances-oil.xml | 4 -- .../sample_files/base-appliances-propane.xml | 4 -- ...gerator-temperature-dependent-schedule.xml | 4 -- .../sample_files/base-appliances-wood.xml | 4 -- .../sample_files/base-atticroof-cathedral.xml | 4 -- .../base-atticroof-conditioned.xml | 4 -- workflow/sample_files/base-atticroof-flat.xml | 4 -- ...base-atticroof-radiant-barrier-ceiling.xml | 4 -- .../base-atticroof-radiant-barrier.xml | 4 -- ...base-atticroof-unvented-insulated-roof.xml | 4 -- .../sample_files/base-atticroof-vented.xml | 4 -- .../sample_files/base-battery-scheduled.xml | 4 -- workflow/sample_files/base-battery.xml | 4 -- .../base-bldgtype-mf-whole-building.xml | 8 ---- .../base-bldgtype-sfa-unit-2stories.xml | 4 -- ...-bldgtype-sfa-unit-atticroof-cathedral.xml | 4 -- ...a-unit-infil-compartmentalization-test.xml | 4 -- .../sample_files/base-bldgtype-sfa-unit.xml | 4 -- .../base-dhw-combi-tankless-outside.xml | 4 -- .../sample_files/base-dhw-combi-tankless.xml | 4 -- .../base-dhw-desuperheater-2-speed.xml | 4 -- .../base-dhw-desuperheater-gshp.xml | 4 -- .../base-dhw-desuperheater-hpwh.xml | 4 -- .../base-dhw-desuperheater-tankless.xml | 4 -- .../base-dhw-desuperheater-var-speed.xml | 4 -- .../sample_files/base-dhw-desuperheater.xml | 4 -- workflow/sample_files/base-dhw-dwhr.xml | 4 -- .../base-dhw-indirect-detailed-setpoints.xml | 4 -- .../sample_files/base-dhw-indirect-dse.xml | 4 -- .../base-dhw-indirect-outside.xml | 4 -- .../base-dhw-indirect-standbyloss.xml | 4 -- .../base-dhw-indirect-with-solar-fraction.xml | 4 -- workflow/sample_files/base-dhw-indirect.xml | 4 -- .../sample_files/base-dhw-jacket-electric.xml | 4 -- workflow/sample_files/base-dhw-jacket-gas.xml | 4 -- .../sample_files/base-dhw-jacket-hpwh.xml | 4 -- .../sample_files/base-dhw-jacket-indirect.xml | 4 -- .../base-dhw-low-flow-fixtures.xml | 4 -- workflow/sample_files/base-dhw-multiple.xml | 4 -- workflow/sample_files/base-dhw-none.xml | 4 -- .../base-dhw-recirc-demand-scheduled.xml | 4 -- .../sample_files/base-dhw-recirc-demand.xml | 4 -- .../sample_files/base-dhw-recirc-manual.xml | 4 -- .../base-dhw-recirc-nocontrol.xml | 4 -- .../base-dhw-recirc-temperature.xml | 4 -- .../sample_files/base-dhw-recirc-timer.xml | 4 -- .../base-dhw-solar-direct-evacuated-tube.xml | 4 -- .../base-dhw-solar-direct-flat-plate.xml | 4 -- .../base-dhw-solar-direct-ics.xml | 4 -- .../sample_files/base-dhw-solar-fraction.xml | 4 -- .../base-dhw-solar-indirect-flat-plate.xml | 4 -- ...base-dhw-solar-thermosyphon-flat-plate.xml | 4 -- workflow/sample_files/base-dhw-tank-coal.xml | 4 -- .../base-dhw-tank-detailed-setpoints.xml | 4 -- .../sample_files/base-dhw-tank-elec-uef.xml | 4 -- .../base-dhw-tank-gas-outside.xml | 4 -- .../base-dhw-tank-gas-uef-fhr.xml | 4 -- .../sample_files/base-dhw-tank-gas-uef.xml | 4 -- workflow/sample_files/base-dhw-tank-gas.xml | 4 -- ...-dhw-tank-heat-pump-detailed-schedules.xml | 4 -- ...eat-pump-operating-mode-heat-pump-only.xml | 4 -- .../base-dhw-tank-heat-pump-outside.xml | 4 -- .../base-dhw-tank-heat-pump-uef.xml | 4 -- ...dhw-tank-heat-pump-with-solar-fraction.xml | 4 -- .../base-dhw-tank-heat-pump-with-solar.xml | 4 -- .../sample_files/base-dhw-tank-heat-pump.xml | 4 -- ...ratified-detailed-occupancy-stochastic.xml | 4 -- .../base-dhw-tank-model-type-stratified.xml | 4 -- workflow/sample_files/base-dhw-tank-oil.xml | 4 -- workflow/sample_files/base-dhw-tank-wood.xml | 4 -- .../base-dhw-tankless-detailed-setpoints.xml | 4 -- .../base-dhw-tankless-electric-outside.xml | 4 -- .../base-dhw-tankless-electric-uef.xml | 4 -- .../base-dhw-tankless-electric.xml | 4 -- .../base-dhw-tankless-gas-uef.xml | 4 -- ...e-dhw-tankless-gas-with-solar-fraction.xml | 4 -- .../base-dhw-tankless-gas-with-solar.xml | 4 -- .../sample_files/base-dhw-tankless-gas.xml | 4 -- .../base-dhw-tankless-propane.xml | 4 -- .../base-enclosure-2stories-garage.xml | 8 ---- ...e-2stories-infil-leakiness-description.xml | 4 -- .../sample_files/base-enclosure-2stories.xml | 4 -- .../sample_files/base-enclosure-beds-1.xml | 4 -- .../sample_files/base-enclosure-beds-2.xml | 4 -- .../sample_files/base-enclosure-beds-4.xml | 4 -- .../sample_files/base-enclosure-beds-5.xml | 4 -- .../base-enclosure-ceilingtypes.xml | 4 -- .../sample_files/base-enclosure-garage.xml | 8 ---- ...ase-enclosure-infil-ach-house-pressure.xml | 4 -- ...ase-enclosure-infil-cfm-house-pressure.xml | 4 -- .../base-enclosure-infil-cfm50.xml | 4 -- .../sample_files/base-enclosure-infil-ela.xml | 4 -- .../base-enclosure-infil-flue.xml | 4 -- ...-enclosure-infil-leakiness-description.xml | 4 -- .../base-enclosure-infil-natural-ach.xml | 4 -- .../base-enclosure-infil-natural-cfm.xml | 4 -- .../base-enclosure-orientations.xml | 4 -- .../sample_files/base-enclosure-overhangs.xml | 4 -- .../sample_files/base-enclosure-rooftypes.xml | 4 -- .../base-enclosure-skylights-cathedral.xml | 4 -- ...nclosure-skylights-physical-properties.xml | 4 -- .../base-enclosure-skylights-shading.xml | 4 -- .../base-enclosure-skylights-storms.xml | 4 -- .../sample_files/base-enclosure-skylights.xml | 4 -- .../base-enclosure-split-level.xml | 4 -- .../base-enclosure-thermal-mass.xml | 4 -- .../sample_files/base-enclosure-walltypes.xml | 4 -- ...ndows-natural-ventilation-availability.xml | 4 -- .../base-enclosure-windows-none.xml | 4 -- ...-enclosure-windows-physical-properties.xml | 4 -- ...base-enclosure-windows-shading-seasons.xml | 4 -- .../base-enclosure-windows-shading.xml | 4 -- .../base-enclosure-windows-storms.xml | 4 -- .../base-foundation-basement-garage.xml | 4 -- ...ditioned-basement-slab-insulation-full.xml | 4 -- ...n-conditioned-basement-slab-insulation.xml | 4 -- ...n-conditioned-basement-wall-insulation.xml | 4 -- ...base-foundation-conditioned-crawlspace.xml | 4 -- .../sample_files/base-foundation-multiple.xml | 4 -- .../sample_files/base-foundation-slab.xml | 4 -- ...ion-unconditioned-basement-above-grade.xml | 4 -- ...tion-unconditioned-basement-assembly-r.xml | 4 -- ...unconditioned-basement-wall-insulation.xml | 4 -- ...base-foundation-unconditioned-basement.xml | 4 -- .../base-foundation-unvented-crawlspace.xml | 4 -- ...undation-vented-crawlspace-above-grade.xml | 4 -- .../base-foundation-vented-crawlspace.xml | 4 -- .../base-foundation-walkout-basement.xml | 4 -- ...-air-heat-pump-1-speed-autosize-factor.xml | 4 -- ...-to-air-heat-pump-1-speed-cooling-only.xml | 4 -- ...heat-pump-1-speed-heating-capacity-17f.xml | 4 -- ...-to-air-heat-pump-1-speed-heating-only.xml | 4 -- ...lockout-temperatures-research-features.xml | 4 -- ...heat-pump-1-speed-lockout-temperatures.xml | 4 -- ...ir-heat-pump-1-speed-research-features.xml | 4 -- ...r-to-air-heat-pump-1-speed-seer2-hspf2.xml | 4 -- ...base-hvac-air-to-air-heat-pump-1-speed.xml | 4 -- ...ir-heat-pump-2-speed-research-features.xml | 4 -- ...base-hvac-air-to-air-heat-pump-2-speed.xml | 4 -- ...r-heat-pump-var-speed-autosize-maxload.xml | 4 -- ...r-speed-backup-boiler-advanced-defrost.xml | 4 -- ...p-var-speed-backup-boiler-hvac-seasons.xml | 4 -- ...d-backup-boiler-switchover-temperature.xml | 4 -- ...-air-heat-pump-var-speed-backup-boiler.xml | 4 -- ...r-speed-backup-furnace-autosize-factor.xml | 4 -- ...air-heat-pump-var-speed-backup-furnace.xml | 4 -- ...ar-speed-detailed-performance-autosize.xml | 4 -- ...peed-detailed-performance-heating-only.xml | 4 -- ...iled-performance-normalized-capacities.xml | 4 -- ...etailed-performance-other-temperatures.xml | 4 -- ...at-pump-var-speed-detailed-performance.xml | 4 -- ...speed-max-power-ratio-schedule-10-mins.xml | 4 -- ...d-max-power-ratio-schedule-two-systems.xml | 4 -- ...-heat-pump-var-speed-research-features.xml | 4 -- ...se-hvac-air-to-air-heat-pump-var-speed.xml | 4 -- .../base-hvac-autosize-sizing-controls.xml | 4 -- workflow/sample_files/base-hvac-autosize.xml | 4 -- .../base-hvac-boiler-coal-only.xml | 4 -- .../base-hvac-boiler-elec-only.xml | 4 -- ...ase-hvac-boiler-gas-central-ac-1-speed.xml | 4 -- .../base-hvac-boiler-gas-only-pilot.xml | 4 -- .../base-hvac-boiler-gas-only.xml | 4 -- .../base-hvac-boiler-oil-only.xml | 4 -- .../base-hvac-boiler-propane-only.xml | 4 -- .../base-hvac-boiler-wood-only.xml | 4 -- ...entral-ac-only-1-speed-autosize-factor.xml | 4 -- ...ase-hvac-central-ac-only-1-speed-seer2.xml | 4 -- .../base-hvac-central-ac-only-1-speed.xml | 4 -- ...tral-ac-only-2-speed-research-features.xml | 4 -- .../base-hvac-central-ac-only-2-speed.xml | 4 -- ...ar-speed-detailed-performance-autosize.xml | 4 -- ...ac-only-var-speed-detailed-performance.xml | 4 -- ...nly-var-speed-max-power-ratio-schedule.xml | 4 -- .../base-hvac-central-ac-only-var-speed.xml | 4 -- ...l-ac-plus-air-to-air-heat-pump-heating.xml | 4 -- workflow/sample_files/base-hvac-dse.xml | 4 -- ...heat-pump-1-speed-lockout-temperatures.xml | 4 -- ...dual-fuel-air-to-air-heat-pump-1-speed.xml | 4 -- ...air-heat-pump-2-speed-advanced-defrost.xml | 4 -- ...dual-fuel-air-to-air-heat-pump-2-speed.xml | 4 -- ...al-fuel-air-to-air-heat-pump-var-speed.xml | 4 -- ...-dual-fuel-mini-split-heat-pump-ducted.xml | 4 -- .../base-hvac-ducts-area-fractions.xml | 4 -- .../base-hvac-ducts-area-multipliers.xml | 4 -- .../sample_files/base-hvac-ducts-buried.xml | 4 -- .../sample_files/base-hvac-ducts-defaults.xml | 4 -- .../base-hvac-ducts-effective-rvalue.xml | 4 -- .../base-hvac-ducts-leakage-cfm50.xml | 4 -- .../base-hvac-ducts-leakage-percent.xml | 4 -- .../base-hvac-ducts-shape-mixed.xml | 4 -- .../base-hvac-ducts-shape-rectangular.xml | 4 -- .../base-hvac-ducts-shape-round.xml | 4 -- .../base-hvac-elec-resistance-only.xml | 4 -- .../base-hvac-evap-cooler-furnace-gas.xml | 4 -- .../base-hvac-evap-cooler-only-ducted.xml | 4 -- .../base-hvac-evap-cooler-only.xml | 4 -- .../base-hvac-fireplace-wood-only.xml | 4 -- .../base-hvac-floor-furnace-propane-only.xml | 4 -- .../base-hvac-furnace-coal-only.xml | 4 -- ...e-hvac-furnace-elec-central-ac-1-speed.xml | 4 -- .../base-hvac-furnace-elec-only.xml | 4 -- ...se-hvac-furnace-gas-central-ac-2-speed.xml | 4 -- ...-ac-var-speed-max-power-ratio-schedule.xml | 4 -- ...-hvac-furnace-gas-central-ac-var-speed.xml | 4 -- ...-hvac-furnace-gas-only-autosize-factor.xml | 4 -- ...ac-furnace-gas-only-detailed-setpoints.xml | 4 -- .../base-hvac-furnace-gas-only-pilot.xml | 4 -- .../base-hvac-furnace-gas-only.xml | 4 -- .../base-hvac-furnace-gas-room-ac.xml | 4 -- .../base-hvac-furnace-oil-only.xml | 4 -- .../base-hvac-furnace-propane-only.xml | 4 -- .../base-hvac-furnace-wood-only.xml | 4 -- .../sample_files/base-hvac-furnace-x3-dse.xml | 4 -- ...c-ground-to-air-heat-pump-cooling-only.xml | 4 -- ...air-heat-pump-detailed-geothermal-loop.xml | 4 -- ...c-ground-to-air-heat-pump-heating-only.xml | 4 -- .../base-hvac-ground-to-air-heat-pump.xml | 4 -- ...l-quality-air-to-air-heat-pump-1-speed.xml | 4 -- ...l-quality-air-to-air-heat-pump-2-speed.xml | 4 -- ...at-pump-var-speed-detailed-performance.xml | 4 -- ...quality-air-to-air-heat-pump-var-speed.xml | 4 -- ...quality-furnace-gas-central-ac-1-speed.xml | 4 -- ...quality-furnace-gas-central-ac-2-speed.xml | 4 -- ...ality-furnace-gas-central-ac-var-speed.xml | 4 -- ...-hvac-install-quality-furnace-gas-only.xml | 4 -- ...nstall-quality-ground-to-air-heat-pump.xml | 4 -- ...mini-split-air-conditioner-only-ducted.xml | 4 -- ...ll-quality-mini-split-heat-pump-ducted.xml | 4 -- ...mini-split-air-conditioner-only-ducted.xml | 4 -- ...ductless-detailed-performance-autosize.xml | 4 -- ...ner-only-ductless-detailed-performance.xml | 4 -- ...ni-split-air-conditioner-only-ductless.xml | 4 -- ...ni-split-heat-pump-ducted-cooling-only.xml | 4 -- ...p-ducted-detailed-performance-autosize.xml | 4 -- ...-heat-pump-ducted-detailed-performance.xml | 4 -- ...-heating-only-max-power-ratio-schedule.xml | 4 -- ...ni-split-heat-pump-ducted-heating-only.xml | 4 -- ...t-pump-ducted-max-power-ratio-schedule.xml | 4 -- .../base-hvac-mini-split-heat-pump-ducted.xml | 4 -- ...it-heat-pump-ductless-advanced-defrost.xml | 4 -- ...lit-heat-pump-ductless-autosize-factor.xml | 4 -- ...-pump-ductless-backup-advanced-defrost.xml | 4 -- ...it-heat-pump-ductless-backup-baseboard.xml | 4 -- ...ductless-backup-furnace-ducts-defaults.xml | 4 -- ...plit-heat-pump-ductless-backup-furnace.xml | 4 -- ...-split-heat-pump-ductless-backup-stove.xml | 4 -- ...ductless-detailed-performance-autosize.xml | 4 -- ...eat-pump-ductless-detailed-performance.xml | 4 -- ...eat-pump-ductless-heating-capacity-17f.xml | 4 -- ...ase-hvac-mini-split-heat-pump-ductless.xml | 4 -- workflow/sample_files/base-hvac-multiple.xml | 4 -- workflow/sample_files/base-hvac-none.xml | 4 -- ...ase-hvac-ptac-with-heating-electricity.xml | 4 -- ...ase-hvac-ptac-with-heating-natural-gas.xml | 4 -- workflow/sample_files/base-hvac-ptac.xml | 4 -- .../base-hvac-pthp-heating-capacity-17f.xml | 4 -- workflow/sample_files/base-hvac-pthp.xml | 4 -- .../base-hvac-room-ac-only-33percent.xml | 4 -- .../base-hvac-room-ac-only-ceer.xml | 4 -- ...e-hvac-room-ac-only-detailed-setpoints.xml | 4 -- ...y-research-features-detailed-setpoints.xml | 4 -- ...se-hvac-room-ac-only-research-features.xml | 4 -- .../sample_files/base-hvac-room-ac-only.xml | 4 -- .../base-hvac-room-ac-with-heating.xml | 4 -- .../base-hvac-room-ac-with-reverse-cycle.xml | 4 -- workflow/sample_files/base-hvac-seasons.xml | 4 -- .../base-hvac-setpoints-daily-schedules.xml | 4 -- .../base-hvac-setpoints-daily-setbacks.xml | 4 -- workflow/sample_files/base-hvac-setpoints.xml | 4 -- .../base-hvac-space-heater-gas-only.xml | 4 -- .../sample_files/base-hvac-stove-oil-only.xml | 4 -- .../base-hvac-stove-wood-pellets-only.xml | 4 -- .../sample_files/base-hvac-undersized.xml | 4 -- .../base-hvac-wall-furnace-elec-only.xml | 4 -- ...lighting-ceiling-fans-label-energy-use.xml | 4 -- .../base-lighting-ceiling-fans.xml | 4 -- .../sample_files/base-lighting-holiday.xml | 4 -- .../base-lighting-kwh-per-year.xml | 4 -- workflow/sample_files/base-lighting-mixed.xml | 4 -- .../base-lighting-none-ceiling-fans.xml | 4 -- workflow/sample_files/base-lighting-none.xml | 4 -- .../sample_files/base-location-AMY-2012.xml | 4 -- .../base-location-baltimore-md.xml | 4 -- .../base-location-capetown-zaf.xml | 4 -- .../sample_files/base-location-dallas-tx.xml | 4 -- .../sample_files/base-location-detailed.xml | 4 -- .../sample_files/base-location-duluth-mn.xml | 4 -- .../sample_files/base-location-helena-mt.xml | 4 -- .../base-location-honolulu-hi.xml | 4 -- .../sample_files/base-location-miami-fl.xml | 4 -- .../sample_files/base-location-phoenix-az.xml | 4 -- .../base-location-portland-or.xml | 4 -- .../sample_files/base-mechvent-balanced.xml | 4 -- .../base-mechvent-bath-kitchen-fans.xml | 4 -- ...se-mechvent-cfis-airflow-fraction-zero.xml | 4 -- .../sample_files/base-mechvent-cfis-dse.xml | 4 -- ...-mechvent-cfis-evap-cooler-only-ducted.xml | 4 -- ...se-mechvent-cfis-no-additional-runtime.xml | 4 -- ...mechvent-cfis-supplemental-fan-exhaust.xml | 4 -- ...-mechvent-cfis-supplemental-fan-supply.xml | 4 -- workflow/sample_files/base-mechvent-cfis.xml | 4 -- .../base-mechvent-erv-atre-asre.xml | 4 -- workflow/sample_files/base-mechvent-erv.xml | 4 -- .../base-mechvent-exhaust-rated-flow-rate.xml | 4 -- .../sample_files/base-mechvent-exhaust.xml | 4 -- .../sample_files/base-mechvent-hrv-asre.xml | 4 -- workflow/sample_files/base-mechvent-hrv.xml | 4 -- .../sample_files/base-mechvent-multiple.xml | 4 -- .../sample_files/base-mechvent-supply.xml | 4 -- .../base-mechvent-whole-house-fan.xml | 4 -- .../base-misc-additional-properties.xml | 4 -- ...-bills-battery-scheduled-detailed-only.xml | 4 -- .../base-misc-bills-detailed-only.xml | 4 -- .../base-misc-bills-pv-detailed-only.xml | 4 -- .../sample_files/base-misc-bills-pv-mixed.xml | 4 -- workflow/sample_files/base-misc-bills-pv.xml | 4 -- workflow/sample_files/base-misc-bills.xml | 4 -- workflow/sample_files/base-misc-defaults.xml | 4 -- workflow/sample_files/base-misc-emissions.xml | 4 -- ...base-misc-generators-battery-scheduled.xml | 4 -- .../base-misc-generators-battery.xml | 4 -- .../sample_files/base-misc-generators.xml | 4 -- .../base-misc-ground-conductivity.xml | 4 -- .../base-misc-loads-large-uncommon.xml | 4 -- .../base-misc-loads-large-uncommon2.xml | 4 -- .../sample_files/base-misc-loads-none.xml | 4 -- .../base-misc-neighbor-shading.xml | 4 -- .../base-misc-shielding-of-home.xml | 4 -- .../base-misc-unit-multiplier.xml | 4 -- .../base-misc-usage-multiplier.xml | 4 -- workflow/sample_files/base-pv-battery-ah.xml | 4 -- .../sample_files/base-pv-battery-garage.xml | 8 ---- .../base-pv-battery-round-trip-efficiency.xml | 4 -- .../base-pv-battery-scheduled.xml | 4 -- workflow/sample_files/base-pv-battery.xml | 4 -- .../base-pv-generators-battery-scheduled.xml | 4 -- .../base-pv-generators-battery.xml | 4 -- workflow/sample_files/base-pv-generators.xml | 4 -- workflow/sample_files/base-pv.xml | 4 -- .../base-residents-0-runperiod-1-month.xml | 4 -- workflow/sample_files/base-residents-0.xml | 4 -- ...-residents-1-misc-loads-large-uncommon.xml | 4 -- ...residents-1-misc-loads-large-uncommon2.xml | 4 -- workflow/sample_files/base-residents-1.xml | 4 -- workflow/sample_files/base-residents-5.xml | 4 -- .../base-schedules-detailed-all-10-mins.xml | 4 -- ...-detailed-mixed-timesteps-power-outage.xml | 4 -- ...ase-schedules-detailed-mixed-timesteps.xml | 4 -- ...-detailed-occupancy-stochastic-10-mins.xml | 4 -- ...iled-occupancy-stochastic-power-outage.xml | 4 -- ...-detailed-occupancy-stochastic-vacancy.xml | 4 -- ...chedules-detailed-occupancy-stochastic.xml | 4 -- ...les-detailed-setpoints-daily-schedules.xml | 4 -- ...ules-detailed-setpoints-daily-setbacks.xml | 4 -- .../base-schedules-detailed-setpoints.xml | 4 -- .../base-schedules-simple-power-outage.xml | 4 -- .../base-schedules-simple-vacancy.xml | 4 -- .../sample_files/base-schedules-simple.xml | 4 -- .../base-simcontrol-calendar-year-custom.xml | 4 -- ...base-simcontrol-daylight-saving-custom.xml | 4 -- ...se-simcontrol-daylight-saving-disabled.xml | 4 -- .../base-simcontrol-runperiod-1-month.xml | 4 -- ...rol-temperature-capacitance-multiplier.xml | 4 -- ...p-10-mins-occupancy-stochastic-10-mins.xml | 4 -- ...p-10-mins-occupancy-stochastic-60-mins.xml | 4 -- .../base-simcontrol-timestep-10-mins.xml | 4 -- .../base-simcontrol-timestep-30-mins.xml | 4 -- .../base-zones-spaces-multiple.xml | 12 ------ workflow/sample_files/base-zones-spaces.xml | 12 ------ workflow/sample_files/base.xml | 4 -- workflow/tests/ASHRAE_Standard_140/L302XC.xml | 4 -- workflow/tests/ASHRAE_Standard_140/L304XC.xml | 4 -- workflow/tests/ASHRAE_Standard_140/L322XC.xml | 4 -- workflow/tests/ASHRAE_Standard_140/L324XC.xml | 4 -- workflow/tests/HERS_DSE/HVAC3a.xml | 4 -- workflow/tests/HERS_DSE/HVAC3b.xml | 4 -- workflow/tests/HERS_DSE/HVAC3c.xml | 4 -- workflow/tests/HERS_DSE/HVAC3d.xml | 4 -- 392 files changed, 49 insertions(+), 1610 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 9fc48f5211..00def3c02b 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -5186,12 +5186,12 @@ def self.set_slabs(hpxml_bldg, model, args, sorted_surfaces) area: UnitConversions.convert(surface.grossArea, 'm^2', 'ft^2'), thickness: args[:slab_thickness], exposed_perimeter: exposed_perimeter, + perimeter_insulation_r_value: args[:slab_perimeter_insulation_r], perimeter_insulation_depth: args[:slab_perimeter_insulation_depth], exterior_horizontal_insulation_r_value: args[:slab_exterior_horizontal_insulation_r], exterior_horizontal_insulation_width: args[:slab_exterior_horizontal_insulation_width], exterior_horizontal_insulation_depth_below_grade: args[:slab_exterior_horizontal_insulation_depth_below_grade], under_slab_insulation_width: under_slab_insulation_width, - perimeter_insulation_r_value: args[:slab_perimeter_insulation_r], under_slab_insulation_r_value: args[:slab_under_insulation_r], under_slab_insulation_spans_entire_slab: under_slab_insulation_spans_entire_slab, carpet_fraction: args[:slab_carpet_fraction], @@ -7345,16 +7345,16 @@ def self.renumber_hpxml_ids(hpxml_bldg) end end surf.id = "#{surf_name}#{indexes[surf_name]}" - if surf.respond_to? :insulation_id + if surf.respond_to?(:insulation_id) && (not surf.insulation_id.nil?) surf.insulation_id = "#{surf_name}#{indexes[surf_name]}Insulation" end - if surf.respond_to? :perimeter_insulation_id + if surf.respond_to?(:perimeter_insulation_id) && (not surf.perimeter_insulation_id.nil?) surf.perimeter_insulation_id = "#{surf_name}#{indexes[surf_name]}PerimeterInsulation" end - if surf.respond_to? :exterior_horizontal_insulation_id + if surf.respond_to?(:exterior_horizontal_insulation_id) && (not surf.exterior_horizontal_insulation_id.nil?) surf.exterior_horizontal_insulation_id = "#{surf_name}#{indexes[surf_name]}ExteriorHorizontalInsulation" end - if surf.respond_to? :under_slab_insulation_id + if surf.respond_to?(:under_slab_insulation_id) && (not surf.under_slab_insulation_id.nil?) surf.under_slab_insulation_id = "#{surf_name}#{indexes[surf_name]}UnderSlabInsulation" end end diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 5656a67c19..b08f2269da 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - bb1b70fe-f5e1-41f8-8396-904eae991f71 - 2024-07-23T21:31:32Z + d891b175-fd43-4909-a14b-e55300fab941 + 2024-07-23T21:55:24Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -7433,7 +7433,7 @@ measure.rb rb script - 93D75E06 + 6E92CEA5 geometry.rb diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index e162d7296e..a14b029a5c 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 9b4cc7e5-9698-48e5-9ac9-f0921f788076 - 2024-07-23T21:23:11Z + d5114868-bdca-4c47-937e-2b8e9d946d6c + 2024-07-23T21:55:28Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -629,6 +629,18 @@ resource 93120E27 + + results_annual.csv + csv + test + 99D358D6 + + + results_design_load_details.csv + csv + test + 65664C6E + test_airflow.rb rb @@ -651,7 +663,7 @@ test_enclosure.rb rb test - 4AB85A69 + 949DD045 test_generator.rb diff --git a/HPXMLtoOpenStudio/tests/test_enclosure.rb b/HPXMLtoOpenStudio/tests/test_enclosure.rb index 5d06e19ab2..122afbfdc6 100644 --- a/HPXMLtoOpenStudio/tests/test_enclosure.rb +++ b/HPXMLtoOpenStudio/tests/test_enclosure.rb @@ -514,25 +514,26 @@ def test_slabs args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) # Slab - slabs_values = [{ perimeter_r: 0.0, under_r: 0.0, gap_r: nil, under_span: false, exterior_horizontal_r: 0.0, layer_names: ['concrete', 'floor covering'] }, - { perimeter_r: 0.0, under_r: 0.0, gap_r: 5.0, under_span: false, exterior_horizontal_r: 0.0, layer_names: ['concrete', 'floor covering', 'interior vertical ins'] }, - { perimeter_r: 5.0, under_r: 0.0, gap_r: nil, under_span: false, exterior_horizontal_r: 0.0, layer_names: ['concrete', 'floor covering', 'exterior vertical ins'] }, - { perimeter_r: 5.0, under_r: 0.0, gap_r: nil, under_span: false, exterior_horizontal_r: 5.0, layer_names: ['concrete', 'floor covering', 'exterior vertical ins', 'exterior horizontal ins'] }, - { perimeter_r: 20.0, under_r: 0.0, gap_r: nil, under_span: false, exterior_horizontal_r: 0.0, layer_names: ['concrete', 'floor covering', 'exterior vertical ins'] }, - { perimeter_r: 20.0, under_r: 0.0, gap_r: nil, under_span: false, exterior_horizontal_r: 20.0, layer_names: ['concrete', 'floor covering', 'exterior vertical ins', 'exterior horizontal ins'] }, - { perimeter_r: 0.0, under_r: 5.0, gap_r: nil, under_span: false, exterior_horizontal_r: 0.0, layer_names: ['concrete', 'floor covering', 'interior horizontal ins', 'interior vertical ins'] }, - { perimeter_r: 0.0, under_r: 20.0, gap_r: nil, under_span: false, exterior_horizontal_r: 0.0, layer_names: ['concrete', 'floor covering', 'interior horizontal ins', 'interior vertical ins'] }, - { perimeter_r: 0.0, under_r: 5.0, gap_r: nil, under_span: true, exterior_horizontal_r: 0.0, layer_names: ['slab rigid ins', 'concrete', 'floor covering', 'interior vertical ins'] }, - { perimeter_r: 0.0, under_r: 20.0, gap_r: nil, under_span: true, exterior_horizontal_r: 0.0, layer_names: ['slab rigid ins', 'concrete', 'floor covering', 'interior vertical ins'] }, - { perimeter_r: 5.0, under_r: 5.0, gap_r: nil, exterior_horizontal_r: 0.0, under_span: false, layer_names: ['concrete', 'floor covering', 'interior horizontal ins', 'interior vertical ins', 'exterior vertical ins'] }, - { perimeter_r: 5.0, under_r: 5.0, gap_r: nil, exterior_horizontal_r: 5.0, under_span: false, layer_names: ['concrete', 'floor covering', 'interior horizontal ins', 'interior vertical ins', 'exterior vertical ins', 'exterior horizontal ins'] }, - { perimeter_r: 20.0, under_r: 20.0, gap_r: 20.0, under_span: false, exterior_horizontal_r: 0.0, layer_names: ['concrete', 'floor covering', 'interior horizontal ins', 'interior vertical ins', 'exterior vertical ins'] }, - { perimeter_r: 20.0, under_r: 20.0, gap_r: 20.0, under_span: false, exterior_horizontal_r: 20.0, layer_names: ['concrete', 'floor covering', 'interior horizontal ins', 'interior vertical ins', 'exterior vertical ins', 'exterior horizontal ins'] }] + slabs_values = [{ perimeter_r: 0.0, under_r: 0.0, gap_r: nil, under_span: false, ext_horiz_r: 0.0, layer_names: ['concrete', 'floor covering'] }, + { perimeter_r: 0.0, under_r: 0.0, gap_r: 5.0, under_span: false, ext_horiz_r: 0.0, layer_names: ['concrete', 'floor covering', 'interior vertical ins'] }, + { perimeter_r: 5.0, under_r: 0.0, gap_r: nil, under_span: false, ext_horiz_r: 0.0, layer_names: ['concrete', 'floor covering', 'exterior vertical ins'] }, + { perimeter_r: 5.0, under_r: 0.0, gap_r: nil, under_span: false, ext_horiz_r: 5.0, layer_names: ['concrete', 'floor covering', 'exterior horizontal ins', 'exterior vertical ins'] }, + { perimeter_r: 20.0, under_r: 0.0, gap_r: nil, under_span: false, ext_horiz_r: 0.0, layer_names: ['concrete', 'floor covering', 'exterior vertical ins'] }, + { perimeter_r: 20.0, under_r: 0.0, gap_r: nil, under_span: false, ext_horiz_r: 20.0, layer_names: ['concrete', 'floor covering', 'exterior horizontal ins', 'exterior vertical ins'] }, + { perimeter_r: 0.0, under_r: 5.0, gap_r: nil, under_span: false, ext_horiz_r: 0.0, layer_names: ['concrete', 'floor covering', 'interior horizontal ins', 'interior vertical ins'] }, + { perimeter_r: 0.0, under_r: 20.0, gap_r: nil, under_span: false, ext_horiz_r: 0.0, layer_names: ['concrete', 'floor covering', 'interior horizontal ins', 'interior vertical ins'] }, + { perimeter_r: 0.0, under_r: 5.0, gap_r: nil, under_span: true, ext_horiz_r: 0.0, layer_names: ['slab rigid ins', 'concrete', 'floor covering', 'interior vertical ins'] }, + { perimeter_r: 0.0, under_r: 20.0, gap_r: nil, under_span: true, ext_horiz_r: 0.0, layer_names: ['slab rigid ins', 'concrete', 'floor covering', 'interior vertical ins'] }, + { perimeter_r: 5.0, under_r: 5.0, gap_r: nil, under_span: false, ext_horiz_r: 0.0, layer_names: ['concrete', 'floor covering', 'interior horizontal ins', 'interior vertical ins', 'exterior vertical ins'] }, + { perimeter_r: 5.0, under_r: 5.0, gap_r: nil, under_span: false, ext_horiz_r: 5.0, layer_names: ['concrete', 'floor covering', 'interior horizontal ins', 'exterior horizontal ins', 'interior vertical ins', 'exterior vertical ins'] }, + { perimeter_r: 20.0, under_r: 20.0, gap_r: 20.0, under_span: false, ext_horiz_r: 0.0, layer_names: ['concrete', 'floor covering', 'interior horizontal ins', 'interior vertical ins', 'exterior vertical ins'] }, + { perimeter_r: 20.0, under_r: 20.0, gap_r: 20.0, under_span: false, ext_horiz_r: 20.0, layer_names: ['concrete', 'floor covering', 'interior horizontal ins', 'exterior horizontal ins', 'interior vertical ins', 'exterior vertical ins'] }] hpxml, hpxml_bldg = _create_hpxml('base-foundation-slab.xml') slabs_values.each do |slab_values| hpxml_bldg.slabs[0].perimeter_insulation_r_value = slab_values[:perimeter_r] hpxml_bldg.slabs[0].perimeter_insulation_depth = 2.0 + hpxml_bldg.slabs[0].under_slab_insulation_r_value = slab_values[:under_r] if slab_values[:under_span] hpxml_bldg.slabs[0].under_slab_insulation_spans_entire_slab = true @@ -541,8 +542,12 @@ def test_slabs hpxml_bldg.slabs[0].under_slab_insulation_width = 2.0 hpxml_bldg.slabs[0].under_slab_insulation_spans_entire_slab = nil end + hpxml_bldg.slabs[0].gap_insulation_r_value = slab_values[:gap_r] - hpxml_bldg.slabs[0].exterior_horizontal_r_value = slab_values[:exterior_horizontal_r] + + hpxml_bldg.slabs[0].exterior_horizontal_insulation_r_value = slab_values[:ext_horiz_r] + hpxml_bldg.slabs[0].exterior_horizontal_insulation_width = 2.0 + hpxml_bldg.slabs[0].exterior_horizontal_insulation_depth_below_grade = 2.0 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) model, hpxml, hpxml_bldg = _test_measure(args_hash) @@ -933,11 +938,11 @@ def split_surfaces(surfaces, should_collapse_surfaces) elsif i < 5 surfaces[-1].under_slab_insulation_width += 0.01 * i elsif i < 6 - surfaces[-1].exterior_horizontal_insulation_r_value += 0.01 * i + surfaces[-1].exterior_horizontal_insulation_r_value = surfaces[-1].exterior_horizontal_insulation_r_value.to_f + 0.01 * i elsif i < 7 - surfaces[-1].exterior_horizontal_insulation_width += 0.01 * i + surfaces[-1].exterior_horizontal_insulation_width = surfaces[-1].exterior_horizontal_insulation_width.to_f + 0.01 * i else - surfaces[-1].exterior_horizontal_insulation_depth_below_grade += 0.01 * i + surfaces[-1].exterior_horizontal_insulation_depth_below_grade = surfaces[-1].exterior_horizontal_insulation_depth_below_grade.to_f + 0.01 * i end elsif [HPXML::Window, HPXML::Skylight].include? surf_class if i < 3 diff --git a/tasks.rb b/tasks.rb index 2c70cbc593..fef84626c5 100644 --- a/tasks.rb +++ b/tasks.rb @@ -505,7 +505,9 @@ def apply_hpxml_modification_sample_files(hpxml_path, hpxml) if bg_surface.is_a? HPXML::Slab new_bg_surface.perimeter_insulation_id = "#{bg_surface.perimeter_insulation_id}#{bg_space.id}" new_bg_surface.under_slab_insulation_id = "#{bg_surface.under_slab_insulation_id}#{bg_space.id}" - new_bg_surface.exterior_horizontal_insulation_id = "#{bg_surface.exterior_horizontal_insulation_id}#{bg_space.id}" + if not new_bg_surface.exterior_horizontal_insulation_id.nil? + new_bg_surface.exterior_horizontal_insulation_id = "#{bg_surface.exterior_horizontal_insulation_id}#{bg_space.id}" + end else new_bg_surface.insulation_id = "#{bg_space.id}#{bg_surface.insulation_id}" end diff --git a/workflow/sample_files/base-appliances-coal.xml b/workflow/sample_files/base-appliances-coal.xml index 9916a7a377..f6ed71610a 100644 --- a/workflow/sample_files/base-appliances-coal.xml +++ b/workflow/sample_files/base-appliances-coal.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml b/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml index 0f8e8a9e0e..34fc9d3328 100644 --- a/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml +++ b/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml @@ -186,10 +186,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml b/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml index 9fc9e22a47..520b3f0045 100644 --- a/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml +++ b/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml @@ -186,10 +186,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-appliances-dehumidifier-multiple.xml b/workflow/sample_files/base-appliances-dehumidifier-multiple.xml index b60fdacafc..1141d472ab 100644 --- a/workflow/sample_files/base-appliances-dehumidifier-multiple.xml +++ b/workflow/sample_files/base-appliances-dehumidifier-multiple.xml @@ -186,10 +186,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-appliances-dehumidifier.xml b/workflow/sample_files/base-appliances-dehumidifier.xml index f88c252265..1dfe026b20 100644 --- a/workflow/sample_files/base-appliances-dehumidifier.xml +++ b/workflow/sample_files/base-appliances-dehumidifier.xml @@ -186,10 +186,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-appliances-freezer-temperature-dependent-schedule.xml b/workflow/sample_files/base-appliances-freezer-temperature-dependent-schedule.xml index b0ff69b16a..339cb533be 100644 --- a/workflow/sample_files/base-appliances-freezer-temperature-dependent-schedule.xml +++ b/workflow/sample_files/base-appliances-freezer-temperature-dependent-schedule.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-appliances-gas.xml b/workflow/sample_files/base-appliances-gas.xml index 5772b26b9d..5234c47f84 100644 --- a/workflow/sample_files/base-appliances-gas.xml +++ b/workflow/sample_files/base-appliances-gas.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-appliances-modified.xml b/workflow/sample_files/base-appliances-modified.xml index 866c5d476c..69441baa17 100644 --- a/workflow/sample_files/base-appliances-modified.xml +++ b/workflow/sample_files/base-appliances-modified.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-appliances-none.xml b/workflow/sample_files/base-appliances-none.xml index 7968aa7ad8..9fcaedb1de 100644 --- a/workflow/sample_files/base-appliances-none.xml +++ b/workflow/sample_files/base-appliances-none.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-appliances-oil.xml b/workflow/sample_files/base-appliances-oil.xml index be7975c37d..8115dc874b 100644 --- a/workflow/sample_files/base-appliances-oil.xml +++ b/workflow/sample_files/base-appliances-oil.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-appliances-propane.xml b/workflow/sample_files/base-appliances-propane.xml index 5a4a67541f..1277d4908d 100644 --- a/workflow/sample_files/base-appliances-propane.xml +++ b/workflow/sample_files/base-appliances-propane.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-appliances-refrigerator-temperature-dependent-schedule.xml b/workflow/sample_files/base-appliances-refrigerator-temperature-dependent-schedule.xml index 7e028b4edb..d3eff0e9a1 100644 --- a/workflow/sample_files/base-appliances-refrigerator-temperature-dependent-schedule.xml +++ b/workflow/sample_files/base-appliances-refrigerator-temperature-dependent-schedule.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-appliances-wood.xml b/workflow/sample_files/base-appliances-wood.xml index 39b8a08dd8..4cd6c90d04 100644 --- a/workflow/sample_files/base-appliances-wood.xml +++ b/workflow/sample_files/base-appliances-wood.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-atticroof-cathedral.xml b/workflow/sample_files/base-atticroof-cathedral.xml index 3302120a19..898d621e7b 100644 --- a/workflow/sample_files/base-atticroof-cathedral.xml +++ b/workflow/sample_files/base-atticroof-cathedral.xml @@ -194,10 +194,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-atticroof-conditioned.xml b/workflow/sample_files/base-atticroof-conditioned.xml index b45b760404..82c43dd9ce 100644 --- a/workflow/sample_files/base-atticroof-conditioned.xml +++ b/workflow/sample_files/base-atticroof-conditioned.xml @@ -293,10 +293,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-atticroof-flat.xml b/workflow/sample_files/base-atticroof-flat.xml index f53239bdb0..369111233e 100644 --- a/workflow/sample_files/base-atticroof-flat.xml +++ b/workflow/sample_files/base-atticroof-flat.xml @@ -194,10 +194,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-atticroof-radiant-barrier-ceiling.xml b/workflow/sample_files/base-atticroof-radiant-barrier-ceiling.xml index cafb34be8e..e5833d19ea 100644 --- a/workflow/sample_files/base-atticroof-radiant-barrier-ceiling.xml +++ b/workflow/sample_files/base-atticroof-radiant-barrier-ceiling.xml @@ -188,10 +188,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-atticroof-radiant-barrier.xml b/workflow/sample_files/base-atticroof-radiant-barrier.xml index 51d45c9588..a8177d212c 100644 --- a/workflow/sample_files/base-atticroof-radiant-barrier.xml +++ b/workflow/sample_files/base-atticroof-radiant-barrier.xml @@ -190,10 +190,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml b/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml index 6e617f931d..15d8bcd67e 100644 --- a/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml +++ b/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-atticroof-vented.xml b/workflow/sample_files/base-atticroof-vented.xml index b539f56373..19f084788e 100644 --- a/workflow/sample_files/base-atticroof-vented.xml +++ b/workflow/sample_files/base-atticroof-vented.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-battery-scheduled.xml b/workflow/sample_files/base-battery-scheduled.xml index ee3d4bb690..74bb1605f8 100644 --- a/workflow/sample_files/base-battery-scheduled.xml +++ b/workflow/sample_files/base-battery-scheduled.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-battery.xml b/workflow/sample_files/base-battery.xml index 858d56de64..ce9bc48b35 100644 --- a/workflow/sample_files/base-battery.xml +++ b/workflow/sample_files/base-battery.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-bldgtype-mf-whole-building.xml b/workflow/sample_files/base-bldgtype-mf-whole-building.xml index 4f90706e06..a5397b8e5e 100644 --- a/workflow/sample_files/base-bldgtype-mf-whole-building.xml +++ b/workflow/sample_files/base-bldgtype-mf-whole-building.xml @@ -269,10 +269,6 @@ 0.0 - - - - @@ -776,10 +772,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-bldgtype-sfa-unit-2stories.xml b/workflow/sample_files/base-bldgtype-sfa-unit-2stories.xml index 0217269a07..588cd11a27 100644 --- a/workflow/sample_files/base-bldgtype-sfa-unit-2stories.xml +++ b/workflow/sample_files/base-bldgtype-sfa-unit-2stories.xml @@ -305,10 +305,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-bldgtype-sfa-unit-atticroof-cathedral.xml b/workflow/sample_files/base-bldgtype-sfa-unit-atticroof-cathedral.xml index f049174c05..c209944118 100644 --- a/workflow/sample_files/base-bldgtype-sfa-unit-atticroof-cathedral.xml +++ b/workflow/sample_files/base-bldgtype-sfa-unit-atticroof-cathedral.xml @@ -253,10 +253,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-bldgtype-sfa-unit-infil-compartmentalization-test.xml b/workflow/sample_files/base-bldgtype-sfa-unit-infil-compartmentalization-test.xml index 41a51af43d..c8316acf41 100644 --- a/workflow/sample_files/base-bldgtype-sfa-unit-infil-compartmentalization-test.xml +++ b/workflow/sample_files/base-bldgtype-sfa-unit-infil-compartmentalization-test.xml @@ -305,10 +305,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-bldgtype-sfa-unit.xml b/workflow/sample_files/base-bldgtype-sfa-unit.xml index 5046b5c1ea..7e9375da8b 100644 --- a/workflow/sample_files/base-bldgtype-sfa-unit.xml +++ b/workflow/sample_files/base-bldgtype-sfa-unit.xml @@ -305,10 +305,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-combi-tankless-outside.xml b/workflow/sample_files/base-dhw-combi-tankless-outside.xml index e742390e79..a4e43a2da3 100644 --- a/workflow/sample_files/base-dhw-combi-tankless-outside.xml +++ b/workflow/sample_files/base-dhw-combi-tankless-outside.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-combi-tankless.xml b/workflow/sample_files/base-dhw-combi-tankless.xml index b3fa8ce2ee..0b00b741c9 100644 --- a/workflow/sample_files/base-dhw-combi-tankless.xml +++ b/workflow/sample_files/base-dhw-combi-tankless.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-desuperheater-2-speed.xml b/workflow/sample_files/base-dhw-desuperheater-2-speed.xml index c492f987ed..78cee55f10 100644 --- a/workflow/sample_files/base-dhw-desuperheater-2-speed.xml +++ b/workflow/sample_files/base-dhw-desuperheater-2-speed.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-desuperheater-gshp.xml b/workflow/sample_files/base-dhw-desuperheater-gshp.xml index 426a32181c..2ce2c7b6e2 100644 --- a/workflow/sample_files/base-dhw-desuperheater-gshp.xml +++ b/workflow/sample_files/base-dhw-desuperheater-gshp.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-desuperheater-hpwh.xml b/workflow/sample_files/base-dhw-desuperheater-hpwh.xml index f85303724e..ebe4de80cb 100644 --- a/workflow/sample_files/base-dhw-desuperheater-hpwh.xml +++ b/workflow/sample_files/base-dhw-desuperheater-hpwh.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-desuperheater-tankless.xml b/workflow/sample_files/base-dhw-desuperheater-tankless.xml index 6b41f3fb36..2d79b5c35a 100644 --- a/workflow/sample_files/base-dhw-desuperheater-tankless.xml +++ b/workflow/sample_files/base-dhw-desuperheater-tankless.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-desuperheater-var-speed.xml b/workflow/sample_files/base-dhw-desuperheater-var-speed.xml index 61e5ff0d08..4a461090d0 100644 --- a/workflow/sample_files/base-dhw-desuperheater-var-speed.xml +++ b/workflow/sample_files/base-dhw-desuperheater-var-speed.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-desuperheater.xml b/workflow/sample_files/base-dhw-desuperheater.xml index 66f67647e4..a76998ca7b 100644 --- a/workflow/sample_files/base-dhw-desuperheater.xml +++ b/workflow/sample_files/base-dhw-desuperheater.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-dwhr.xml b/workflow/sample_files/base-dhw-dwhr.xml index ae5cde4ea6..09d4a45b40 100644 --- a/workflow/sample_files/base-dhw-dwhr.xml +++ b/workflow/sample_files/base-dhw-dwhr.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml b/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml index a24d24b831..fd35a4a0be 100644 --- a/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml +++ b/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-indirect-dse.xml b/workflow/sample_files/base-dhw-indirect-dse.xml index ae734348b6..5c23629adb 100644 --- a/workflow/sample_files/base-dhw-indirect-dse.xml +++ b/workflow/sample_files/base-dhw-indirect-dse.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-indirect-outside.xml b/workflow/sample_files/base-dhw-indirect-outside.xml index a1da245d3f..8b8de6fdcf 100644 --- a/workflow/sample_files/base-dhw-indirect-outside.xml +++ b/workflow/sample_files/base-dhw-indirect-outside.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-indirect-standbyloss.xml b/workflow/sample_files/base-dhw-indirect-standbyloss.xml index 0c877e54ef..1373591d3e 100644 --- a/workflow/sample_files/base-dhw-indirect-standbyloss.xml +++ b/workflow/sample_files/base-dhw-indirect-standbyloss.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml b/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml index 3db5eec1b7..a5384ac118 100644 --- a/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml +++ b/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-indirect.xml b/workflow/sample_files/base-dhw-indirect.xml index 3508f2e229..28ff927b8e 100644 --- a/workflow/sample_files/base-dhw-indirect.xml +++ b/workflow/sample_files/base-dhw-indirect.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-jacket-electric.xml b/workflow/sample_files/base-dhw-jacket-electric.xml index 93537e378e..c9ad9a55cd 100644 --- a/workflow/sample_files/base-dhw-jacket-electric.xml +++ b/workflow/sample_files/base-dhw-jacket-electric.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-jacket-gas.xml b/workflow/sample_files/base-dhw-jacket-gas.xml index 52b4035f0f..2658e49ff5 100644 --- a/workflow/sample_files/base-dhw-jacket-gas.xml +++ b/workflow/sample_files/base-dhw-jacket-gas.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-jacket-hpwh.xml b/workflow/sample_files/base-dhw-jacket-hpwh.xml index 3019b40cc8..1074377e2b 100644 --- a/workflow/sample_files/base-dhw-jacket-hpwh.xml +++ b/workflow/sample_files/base-dhw-jacket-hpwh.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-jacket-indirect.xml b/workflow/sample_files/base-dhw-jacket-indirect.xml index 4560fd145e..47541a363e 100644 --- a/workflow/sample_files/base-dhw-jacket-indirect.xml +++ b/workflow/sample_files/base-dhw-jacket-indirect.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-low-flow-fixtures.xml b/workflow/sample_files/base-dhw-low-flow-fixtures.xml index 66a65c3a32..969407d78a 100644 --- a/workflow/sample_files/base-dhw-low-flow-fixtures.xml +++ b/workflow/sample_files/base-dhw-low-flow-fixtures.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-multiple.xml b/workflow/sample_files/base-dhw-multiple.xml index 1d3d3c0809..9d2440ba01 100644 --- a/workflow/sample_files/base-dhw-multiple.xml +++ b/workflow/sample_files/base-dhw-multiple.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-none.xml b/workflow/sample_files/base-dhw-none.xml index 44c86d886b..3e63f3076f 100644 --- a/workflow/sample_files/base-dhw-none.xml +++ b/workflow/sample_files/base-dhw-none.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-recirc-demand-scheduled.xml b/workflow/sample_files/base-dhw-recirc-demand-scheduled.xml index 3d3486d7ac..84ada0ecf4 100644 --- a/workflow/sample_files/base-dhw-recirc-demand-scheduled.xml +++ b/workflow/sample_files/base-dhw-recirc-demand-scheduled.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-recirc-demand.xml b/workflow/sample_files/base-dhw-recirc-demand.xml index 18fd0dea93..9e850a9b24 100644 --- a/workflow/sample_files/base-dhw-recirc-demand.xml +++ b/workflow/sample_files/base-dhw-recirc-demand.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-recirc-manual.xml b/workflow/sample_files/base-dhw-recirc-manual.xml index 99704eda91..b606f99e93 100644 --- a/workflow/sample_files/base-dhw-recirc-manual.xml +++ b/workflow/sample_files/base-dhw-recirc-manual.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-recirc-nocontrol.xml b/workflow/sample_files/base-dhw-recirc-nocontrol.xml index 43ad5742c5..1de36f1ae1 100644 --- a/workflow/sample_files/base-dhw-recirc-nocontrol.xml +++ b/workflow/sample_files/base-dhw-recirc-nocontrol.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-recirc-temperature.xml b/workflow/sample_files/base-dhw-recirc-temperature.xml index f206ca1e47..b14e43b29f 100644 --- a/workflow/sample_files/base-dhw-recirc-temperature.xml +++ b/workflow/sample_files/base-dhw-recirc-temperature.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-recirc-timer.xml b/workflow/sample_files/base-dhw-recirc-timer.xml index 2c3a861f67..2a7ff4889a 100644 --- a/workflow/sample_files/base-dhw-recirc-timer.xml +++ b/workflow/sample_files/base-dhw-recirc-timer.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml b/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml index 7f1b2ce758..babc1b6cea 100644 --- a/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml +++ b/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml b/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml index a3b0b1f9e7..d670933d21 100644 --- a/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml +++ b/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-solar-direct-ics.xml b/workflow/sample_files/base-dhw-solar-direct-ics.xml index 06316a9407..94d37c6412 100644 --- a/workflow/sample_files/base-dhw-solar-direct-ics.xml +++ b/workflow/sample_files/base-dhw-solar-direct-ics.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-solar-fraction.xml b/workflow/sample_files/base-dhw-solar-fraction.xml index 453bf5a351..b2432d2a57 100644 --- a/workflow/sample_files/base-dhw-solar-fraction.xml +++ b/workflow/sample_files/base-dhw-solar-fraction.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml b/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml index 444fef7a9e..26b549730e 100644 --- a/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml +++ b/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml b/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml index a2ee68a18d..c562d15b3b 100644 --- a/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml +++ b/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-tank-coal.xml b/workflow/sample_files/base-dhw-tank-coal.xml index 9c26a4b599..71d407e0e8 100644 --- a/workflow/sample_files/base-dhw-tank-coal.xml +++ b/workflow/sample_files/base-dhw-tank-coal.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml b/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml index a4a816cde8..bc6d885bfe 100644 --- a/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml +++ b/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-tank-elec-uef.xml b/workflow/sample_files/base-dhw-tank-elec-uef.xml index 657527f43a..079ad823e5 100644 --- a/workflow/sample_files/base-dhw-tank-elec-uef.xml +++ b/workflow/sample_files/base-dhw-tank-elec-uef.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-tank-gas-outside.xml b/workflow/sample_files/base-dhw-tank-gas-outside.xml index fb707fb803..9d14d3d8bf 100644 --- a/workflow/sample_files/base-dhw-tank-gas-outside.xml +++ b/workflow/sample_files/base-dhw-tank-gas-outside.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml b/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml index f6cbb5f927..da581e24f1 100644 --- a/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml +++ b/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-tank-gas-uef.xml b/workflow/sample_files/base-dhw-tank-gas-uef.xml index b5379724ee..05979c0b28 100644 --- a/workflow/sample_files/base-dhw-tank-gas-uef.xml +++ b/workflow/sample_files/base-dhw-tank-gas-uef.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-tank-gas.xml b/workflow/sample_files/base-dhw-tank-gas.xml index 4d5a114622..3d9bbe7cda 100644 --- a/workflow/sample_files/base-dhw-tank-gas.xml +++ b/workflow/sample_files/base-dhw-tank-gas.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml b/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml index 118827bc1a..c430e8ae3d 100644 --- a/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml +++ b/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml @@ -236,10 +236,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml b/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml index e9c7a7a69e..e8451736ea 100644 --- a/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml +++ b/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml b/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml index 3c9bd7994e..4f0667d295 100644 --- a/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml +++ b/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml b/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml index fc761cc862..929df79151 100644 --- a/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml +++ b/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml b/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml index 08afb78620..66db65077e 100644 --- a/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml +++ b/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml b/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml index 6f5ff26106..3814f3422d 100644 --- a/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml +++ b/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-tank-heat-pump.xml b/workflow/sample_files/base-dhw-tank-heat-pump.xml index cafa514c6e..41fd9a0e94 100644 --- a/workflow/sample_files/base-dhw-tank-heat-pump.xml +++ b/workflow/sample_files/base-dhw-tank-heat-pump.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml b/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml index 3f2673925e..a5c98aa1d8 100644 --- a/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml +++ b/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-tank-model-type-stratified.xml b/workflow/sample_files/base-dhw-tank-model-type-stratified.xml index 2af5d1f297..8c005568cb 100644 --- a/workflow/sample_files/base-dhw-tank-model-type-stratified.xml +++ b/workflow/sample_files/base-dhw-tank-model-type-stratified.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-tank-oil.xml b/workflow/sample_files/base-dhw-tank-oil.xml index f5b7779989..e1a79857c4 100644 --- a/workflow/sample_files/base-dhw-tank-oil.xml +++ b/workflow/sample_files/base-dhw-tank-oil.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-tank-wood.xml b/workflow/sample_files/base-dhw-tank-wood.xml index 69afd1a34c..8de4d754f6 100644 --- a/workflow/sample_files/base-dhw-tank-wood.xml +++ b/workflow/sample_files/base-dhw-tank-wood.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml b/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml index 8b54b041a3..898f06e590 100644 --- a/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml +++ b/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-tankless-electric-outside.xml b/workflow/sample_files/base-dhw-tankless-electric-outside.xml index 32ad60e88a..fc2ca40e9f 100644 --- a/workflow/sample_files/base-dhw-tankless-electric-outside.xml +++ b/workflow/sample_files/base-dhw-tankless-electric-outside.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-tankless-electric-uef.xml b/workflow/sample_files/base-dhw-tankless-electric-uef.xml index db16fc602c..cf93b27cfd 100644 --- a/workflow/sample_files/base-dhw-tankless-electric-uef.xml +++ b/workflow/sample_files/base-dhw-tankless-electric-uef.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-tankless-electric.xml b/workflow/sample_files/base-dhw-tankless-electric.xml index f11c26bcc9..c4c55fbc2d 100644 --- a/workflow/sample_files/base-dhw-tankless-electric.xml +++ b/workflow/sample_files/base-dhw-tankless-electric.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-tankless-gas-uef.xml b/workflow/sample_files/base-dhw-tankless-gas-uef.xml index b0377dd713..912ea6c707 100644 --- a/workflow/sample_files/base-dhw-tankless-gas-uef.xml +++ b/workflow/sample_files/base-dhw-tankless-gas-uef.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml b/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml index 90b020e219..e92d799084 100644 --- a/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml +++ b/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml b/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml index 2bc29833cb..45588944a0 100644 --- a/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml +++ b/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-tankless-gas.xml b/workflow/sample_files/base-dhw-tankless-gas.xml index 673ee81694..68ed6dc235 100644 --- a/workflow/sample_files/base-dhw-tankless-gas.xml +++ b/workflow/sample_files/base-dhw-tankless-gas.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-dhw-tankless-propane.xml b/workflow/sample_files/base-dhw-tankless-propane.xml index ba1a5b8f73..21ac87d84f 100644 --- a/workflow/sample_files/base-dhw-tankless-propane.xml +++ b/workflow/sample_files/base-dhw-tankless-propane.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-2stories-garage.xml b/workflow/sample_files/base-enclosure-2stories-garage.xml index 9b67e07511..651fba3ce7 100644 --- a/workflow/sample_files/base-enclosure-2stories-garage.xml +++ b/workflow/sample_files/base-enclosure-2stories-garage.xml @@ -293,10 +293,6 @@ 0.0 - - - - @@ -322,10 +318,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-2stories-infil-leakiness-description.xml b/workflow/sample_files/base-enclosure-2stories-infil-leakiness-description.xml index cebc654087..330dbd9471 100644 --- a/workflow/sample_files/base-enclosure-2stories-infil-leakiness-description.xml +++ b/workflow/sample_files/base-enclosure-2stories-infil-leakiness-description.xml @@ -229,10 +229,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-2stories.xml b/workflow/sample_files/base-enclosure-2stories.xml index 8764400366..e717df4327 100644 --- a/workflow/sample_files/base-enclosure-2stories.xml +++ b/workflow/sample_files/base-enclosure-2stories.xml @@ -245,10 +245,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-beds-1.xml b/workflow/sample_files/base-enclosure-beds-1.xml index d0c4fc2995..957280d265 100644 --- a/workflow/sample_files/base-enclosure-beds-1.xml +++ b/workflow/sample_files/base-enclosure-beds-1.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-beds-2.xml b/workflow/sample_files/base-enclosure-beds-2.xml index 06bd15c463..9f35b06353 100644 --- a/workflow/sample_files/base-enclosure-beds-2.xml +++ b/workflow/sample_files/base-enclosure-beds-2.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-beds-4.xml b/workflow/sample_files/base-enclosure-beds-4.xml index 3d6f7f925d..a85b44fc86 100644 --- a/workflow/sample_files/base-enclosure-beds-4.xml +++ b/workflow/sample_files/base-enclosure-beds-4.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-beds-5.xml b/workflow/sample_files/base-enclosure-beds-5.xml index ad8160dde5..f226b42e48 100644 --- a/workflow/sample_files/base-enclosure-beds-5.xml +++ b/workflow/sample_files/base-enclosure-beds-5.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-ceilingtypes.xml b/workflow/sample_files/base-enclosure-ceilingtypes.xml index b97e7ce073..bbf57fe1aa 100644 --- a/workflow/sample_files/base-enclosure-ceilingtypes.xml +++ b/workflow/sample_files/base-enclosure-ceilingtypes.xml @@ -256,10 +256,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-garage.xml b/workflow/sample_files/base-enclosure-garage.xml index b847715551..42bde7314f 100644 --- a/workflow/sample_files/base-enclosure-garage.xml +++ b/workflow/sample_files/base-enclosure-garage.xml @@ -281,10 +281,6 @@ 0.0 - - - - @@ -310,10 +306,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml b/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml index 0fc7261104..5c19c4ead4 100644 --- a/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml +++ b/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml b/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml index c63e3c533b..ba7bfd13d9 100644 --- a/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml +++ b/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-infil-cfm50.xml b/workflow/sample_files/base-enclosure-infil-cfm50.xml index 27e7ab939a..6512487d89 100644 --- a/workflow/sample_files/base-enclosure-infil-cfm50.xml +++ b/workflow/sample_files/base-enclosure-infil-cfm50.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-infil-ela.xml b/workflow/sample_files/base-enclosure-infil-ela.xml index dfcb0f313d..41b08bbb6c 100644 --- a/workflow/sample_files/base-enclosure-infil-ela.xml +++ b/workflow/sample_files/base-enclosure-infil-ela.xml @@ -228,10 +228,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-infil-flue.xml b/workflow/sample_files/base-enclosure-infil-flue.xml index 5def1d2664..8d085527ff 100644 --- a/workflow/sample_files/base-enclosure-infil-flue.xml +++ b/workflow/sample_files/base-enclosure-infil-flue.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-infil-leakiness-description.xml b/workflow/sample_files/base-enclosure-infil-leakiness-description.xml index ebd7a71509..38d7c89992 100644 --- a/workflow/sample_files/base-enclosure-infil-leakiness-description.xml +++ b/workflow/sample_files/base-enclosure-infil-leakiness-description.xml @@ -229,10 +229,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-infil-natural-ach.xml b/workflow/sample_files/base-enclosure-infil-natural-ach.xml index 7b73ffcffc..33ae952608 100644 --- a/workflow/sample_files/base-enclosure-infil-natural-ach.xml +++ b/workflow/sample_files/base-enclosure-infil-natural-ach.xml @@ -231,10 +231,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-infil-natural-cfm.xml b/workflow/sample_files/base-enclosure-infil-natural-cfm.xml index 395d2873bd..56fe53929e 100644 --- a/workflow/sample_files/base-enclosure-infil-natural-cfm.xml +++ b/workflow/sample_files/base-enclosure-infil-natural-cfm.xml @@ -231,10 +231,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-orientations.xml b/workflow/sample_files/base-enclosure-orientations.xml index e2924cfd68..27db939eb6 100644 --- a/workflow/sample_files/base-enclosure-orientations.xml +++ b/workflow/sample_files/base-enclosure-orientations.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-overhangs.xml b/workflow/sample_files/base-enclosure-overhangs.xml index 9bad2ac3e8..b0d5b1344e 100644 --- a/workflow/sample_files/base-enclosure-overhangs.xml +++ b/workflow/sample_files/base-enclosure-overhangs.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-rooftypes.xml b/workflow/sample_files/base-enclosure-rooftypes.xml index 8c497373f7..4b7a9733b6 100644 --- a/workflow/sample_files/base-enclosure-rooftypes.xml +++ b/workflow/sample_files/base-enclosure-rooftypes.xml @@ -370,10 +370,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-skylights-cathedral.xml b/workflow/sample_files/base-enclosure-skylights-cathedral.xml index ce9d3beb73..e4216f589c 100644 --- a/workflow/sample_files/base-enclosure-skylights-cathedral.xml +++ b/workflow/sample_files/base-enclosure-skylights-cathedral.xml @@ -196,10 +196,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-skylights-physical-properties.xml b/workflow/sample_files/base-enclosure-skylights-physical-properties.xml index 0f29047a77..240f684aa7 100644 --- a/workflow/sample_files/base-enclosure-skylights-physical-properties.xml +++ b/workflow/sample_files/base-enclosure-skylights-physical-properties.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-skylights-shading.xml b/workflow/sample_files/base-enclosure-skylights-shading.xml index 62e425f47d..1c7ced047e 100644 --- a/workflow/sample_files/base-enclosure-skylights-shading.xml +++ b/workflow/sample_files/base-enclosure-skylights-shading.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-skylights-storms.xml b/workflow/sample_files/base-enclosure-skylights-storms.xml index 06917c857d..957dddd2c4 100644 --- a/workflow/sample_files/base-enclosure-skylights-storms.xml +++ b/workflow/sample_files/base-enclosure-skylights-storms.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-skylights.xml b/workflow/sample_files/base-enclosure-skylights.xml index 0d7d11ef2a..a1738e7b8d 100644 --- a/workflow/sample_files/base-enclosure-skylights.xml +++ b/workflow/sample_files/base-enclosure-skylights.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-split-level.xml b/workflow/sample_files/base-enclosure-split-level.xml index 5c6327c02d..3a91e495e1 100644 --- a/workflow/sample_files/base-enclosure-split-level.xml +++ b/workflow/sample_files/base-enclosure-split-level.xml @@ -186,10 +186,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-thermal-mass.xml b/workflow/sample_files/base-enclosure-thermal-mass.xml index 0a02a8f26d..4182b2b4de 100644 --- a/workflow/sample_files/base-enclosure-thermal-mass.xml +++ b/workflow/sample_files/base-enclosure-thermal-mass.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-walltypes.xml b/workflow/sample_files/base-enclosure-walltypes.xml index 8958ef624c..6d5f7544c2 100644 --- a/workflow/sample_files/base-enclosure-walltypes.xml +++ b/workflow/sample_files/base-enclosure-walltypes.xml @@ -558,10 +558,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml b/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml index cfcfa37cc9..2f1505522f 100644 --- a/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml +++ b/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-windows-none.xml b/workflow/sample_files/base-enclosure-windows-none.xml index eee6b65164..d88277b51a 100644 --- a/workflow/sample_files/base-enclosure-windows-none.xml +++ b/workflow/sample_files/base-enclosure-windows-none.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-windows-physical-properties.xml b/workflow/sample_files/base-enclosure-windows-physical-properties.xml index ee64fdaa75..42fdede723 100644 --- a/workflow/sample_files/base-enclosure-windows-physical-properties.xml +++ b/workflow/sample_files/base-enclosure-windows-physical-properties.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-windows-shading-seasons.xml b/workflow/sample_files/base-enclosure-windows-shading-seasons.xml index 829a6f3593..314dde3d34 100644 --- a/workflow/sample_files/base-enclosure-windows-shading-seasons.xml +++ b/workflow/sample_files/base-enclosure-windows-shading-seasons.xml @@ -240,10 +240,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-windows-shading.xml b/workflow/sample_files/base-enclosure-windows-shading.xml index 674bdeb880..6473fd5688 100644 --- a/workflow/sample_files/base-enclosure-windows-shading.xml +++ b/workflow/sample_files/base-enclosure-windows-shading.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-enclosure-windows-storms.xml b/workflow/sample_files/base-enclosure-windows-storms.xml index de9a868fae..7f11d66b8a 100644 --- a/workflow/sample_files/base-enclosure-windows-storms.xml +++ b/workflow/sample_files/base-enclosure-windows-storms.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-foundation-basement-garage.xml b/workflow/sample_files/base-foundation-basement-garage.xml index 8ed9ad4305..42aab74b43 100644 --- a/workflow/sample_files/base-foundation-basement-garage.xml +++ b/workflow/sample_files/base-foundation-basement-garage.xml @@ -281,10 +281,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation-full.xml b/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation-full.xml index 8d2732f6ec..9bf7de8d78 100644 --- a/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation-full.xml +++ b/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation-full.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml b/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml index f534b737b3..34436c309f 100644 --- a/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml +++ b/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml b/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml index bcacd5bc12..5c65fdaccc 100644 --- a/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml +++ b/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-foundation-conditioned-crawlspace.xml b/workflow/sample_files/base-foundation-conditioned-crawlspace.xml index 847a3f253f..1f9dea4c50 100644 --- a/workflow/sample_files/base-foundation-conditioned-crawlspace.xml +++ b/workflow/sample_files/base-foundation-conditioned-crawlspace.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-foundation-multiple.xml b/workflow/sample_files/base-foundation-multiple.xml index 9116c9b807..851fd7a495 100644 --- a/workflow/sample_files/base-foundation-multiple.xml +++ b/workflow/sample_files/base-foundation-multiple.xml @@ -320,10 +320,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-foundation-slab.xml b/workflow/sample_files/base-foundation-slab.xml index 0b555b8800..903f9e3c9d 100644 --- a/workflow/sample_files/base-foundation-slab.xml +++ b/workflow/sample_files/base-foundation-slab.xml @@ -186,10 +186,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml b/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml index a77feb58cb..04f866fc73 100644 --- a/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml +++ b/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml @@ -245,10 +245,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml b/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml index 43669b7196..1610049244 100644 --- a/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml +++ b/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml @@ -238,10 +238,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml b/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml index a2b9ba091e..5ede3aab2e 100644 --- a/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml +++ b/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml @@ -247,10 +247,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-foundation-unconditioned-basement.xml b/workflow/sample_files/base-foundation-unconditioned-basement.xml index 70cb21a533..e8848fa6e1 100644 --- a/workflow/sample_files/base-foundation-unconditioned-basement.xml +++ b/workflow/sample_files/base-foundation-unconditioned-basement.xml @@ -246,10 +246,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-foundation-unvented-crawlspace.xml b/workflow/sample_files/base-foundation-unvented-crawlspace.xml index 46b01c0b0b..3bb3e2fbce 100644 --- a/workflow/sample_files/base-foundation-unvented-crawlspace.xml +++ b/workflow/sample_files/base-foundation-unvented-crawlspace.xml @@ -248,10 +248,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-foundation-vented-crawlspace-above-grade.xml b/workflow/sample_files/base-foundation-vented-crawlspace-above-grade.xml index 1e062d2abd..fb558e224f 100644 --- a/workflow/sample_files/base-foundation-vented-crawlspace-above-grade.xml +++ b/workflow/sample_files/base-foundation-vented-crawlspace-above-grade.xml @@ -237,10 +237,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-foundation-vented-crawlspace.xml b/workflow/sample_files/base-foundation-vented-crawlspace.xml index 4260913659..45b3b60ca9 100644 --- a/workflow/sample_files/base-foundation-vented-crawlspace.xml +++ b/workflow/sample_files/base-foundation-vented-crawlspace.xml @@ -251,10 +251,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-foundation-walkout-basement.xml b/workflow/sample_files/base-foundation-walkout-basement.xml index 83f476d2ba..b60f819a28 100644 --- a/workflow/sample_files/base-foundation-walkout-basement.xml +++ b/workflow/sample_files/base-foundation-walkout-basement.xml @@ -284,10 +284,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml index d15be80c5a..a7ed9a16ec 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml index e1fc8f4d69..3644a26885 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml index 0668a038bd..52e803dfd1 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml index b7829bc618..a5da337603 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures-research-features.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures-research-features.xml index 3f0b14b300..75f2377337 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures-research-features.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures-research-features.xml @@ -237,10 +237,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml index 9b7173c203..97ecc65306 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-research-features.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-research-features.xml index 95a5d5c43b..66b8e23c07 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-research-features.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-research-features.xml @@ -237,10 +237,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml index 114d47cb11..aa7eabaa03 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml index 35014fe8b7..1587283b76 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed-research-features.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed-research-features.xml index d36e0e8aeb..f0b3e7fac3 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed-research-features.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed-research-features.xml @@ -237,10 +237,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml index 289e4b6b29..589b0e6145 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml index 1724f7c420..ff367c4a1c 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml @@ -238,10 +238,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-advanced-defrost.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-advanced-defrost.xml index a790037be3..daeb180fd6 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-advanced-defrost.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-advanced-defrost.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml index ec67f874fc..52fa00a0a7 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml index 2fe102267d..ffa543996a 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml index d503cc571d..7f2c8ed4b7 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml index 1dcedefab3..64298b058c 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml index 5ef21515e1..fb7c46b0c1 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml index a416abcafa..6fa8d857ba 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml index ddfd9110d5..fe19bd50d7 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml index 261f7d6beb..317806ca93 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml index 21e8d5b578..eab541e264 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml index 10cc883a95..4b6d22ffce 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml index f1077a2982..c5b02424ff 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml index c0d2345bc6..70f1151998 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-research-features.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-research-features.xml index 701c10bcd0..fa45833e0a 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-research-features.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-research-features.xml @@ -239,10 +239,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml index 456861c53f..f7dd0c7ff4 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-autosize-sizing-controls.xml b/workflow/sample_files/base-hvac-autosize-sizing-controls.xml index c6445899e0..6cdd5c7b9a 100644 --- a/workflow/sample_files/base-hvac-autosize-sizing-controls.xml +++ b/workflow/sample_files/base-hvac-autosize-sizing-controls.xml @@ -251,10 +251,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-autosize.xml b/workflow/sample_files/base-hvac-autosize.xml index f8328d2a90..42ed55cfce 100644 --- a/workflow/sample_files/base-hvac-autosize.xml +++ b/workflow/sample_files/base-hvac-autosize.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-boiler-coal-only.xml b/workflow/sample_files/base-hvac-boiler-coal-only.xml index 132db52d85..4b9b9653ad 100644 --- a/workflow/sample_files/base-hvac-boiler-coal-only.xml +++ b/workflow/sample_files/base-hvac-boiler-coal-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-boiler-elec-only.xml b/workflow/sample_files/base-hvac-boiler-elec-only.xml index d6fa6bd2ae..28fa78936e 100644 --- a/workflow/sample_files/base-hvac-boiler-elec-only.xml +++ b/workflow/sample_files/base-hvac-boiler-elec-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml b/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml index 6ccf6430c3..c90f9954b8 100644 --- a/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml +++ b/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-boiler-gas-only-pilot.xml b/workflow/sample_files/base-hvac-boiler-gas-only-pilot.xml index 7b5633d380..1642eb098e 100644 --- a/workflow/sample_files/base-hvac-boiler-gas-only-pilot.xml +++ b/workflow/sample_files/base-hvac-boiler-gas-only-pilot.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-boiler-gas-only.xml b/workflow/sample_files/base-hvac-boiler-gas-only.xml index 954b7a2881..11a9aed723 100644 --- a/workflow/sample_files/base-hvac-boiler-gas-only.xml +++ b/workflow/sample_files/base-hvac-boiler-gas-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-boiler-oil-only.xml b/workflow/sample_files/base-hvac-boiler-oil-only.xml index 8b9ad322b0..84b027514c 100644 --- a/workflow/sample_files/base-hvac-boiler-oil-only.xml +++ b/workflow/sample_files/base-hvac-boiler-oil-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-boiler-propane-only.xml b/workflow/sample_files/base-hvac-boiler-propane-only.xml index f18fa600ca..6f042a0967 100644 --- a/workflow/sample_files/base-hvac-boiler-propane-only.xml +++ b/workflow/sample_files/base-hvac-boiler-propane-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-boiler-wood-only.xml b/workflow/sample_files/base-hvac-boiler-wood-only.xml index 0e6640b5d7..17824f6125 100644 --- a/workflow/sample_files/base-hvac-boiler-wood-only.xml +++ b/workflow/sample_files/base-hvac-boiler-wood-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-central-ac-only-1-speed-autosize-factor.xml b/workflow/sample_files/base-hvac-central-ac-only-1-speed-autosize-factor.xml index 3e32bdd7ab..b02bd7c193 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-1-speed-autosize-factor.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-1-speed-autosize-factor.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml b/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml index c477610936..a3676fc479 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml b/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml index b1c41d29ac..686cdf4bd2 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-central-ac-only-2-speed-research-features.xml b/workflow/sample_files/base-hvac-central-ac-only-2-speed-research-features.xml index 5c77819704..a5e2f560f7 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-2-speed-research-features.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-2-speed-research-features.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml b/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml index 616e066339..b92b426d7d 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml b/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml index 857c49e394..2bbe831221 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml b/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml index 8bcacabc6f..df37397c0c 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml b/workflow/sample_files/base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml index 57417a8d98..842a71dc82 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml b/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml index 44c8e24ee7..5e04b079c8 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml b/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml index 13e42f5264..8c4fd60e6e 100644 --- a/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml +++ b/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-dse.xml b/workflow/sample_files/base-hvac-dse.xml index 9ab6ff2793..3124b82caf 100644 --- a/workflow/sample_files/base-hvac-dse.xml +++ b/workflow/sample_files/base-hvac-dse.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml index af4cc25fab..920f84c410 100644 --- a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml +++ b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml index 682fef5272..ab4571e570 100644 --- a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml +++ b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed-advanced-defrost.xml b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed-advanced-defrost.xml index 80e002275c..843ab7d2d9 100644 --- a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed-advanced-defrost.xml +++ b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed-advanced-defrost.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml index 96749c5389..bbabdb0397 100644 --- a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml +++ b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml index 78097efc04..fd763be4a7 100644 --- a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml +++ b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml b/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml index acb2c0cbab..e429c086e7 100644 --- a/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml +++ b/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-ducts-area-fractions.xml b/workflow/sample_files/base-hvac-ducts-area-fractions.xml index ebbb289e17..b7fc201094 100644 --- a/workflow/sample_files/base-hvac-ducts-area-fractions.xml +++ b/workflow/sample_files/base-hvac-ducts-area-fractions.xml @@ -245,10 +245,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-ducts-area-multipliers.xml b/workflow/sample_files/base-hvac-ducts-area-multipliers.xml index 780504cf6d..c68b27c6a3 100644 --- a/workflow/sample_files/base-hvac-ducts-area-multipliers.xml +++ b/workflow/sample_files/base-hvac-ducts-area-multipliers.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-ducts-buried.xml b/workflow/sample_files/base-hvac-ducts-buried.xml index 6fe503fb9f..605a5b82d8 100644 --- a/workflow/sample_files/base-hvac-ducts-buried.xml +++ b/workflow/sample_files/base-hvac-ducts-buried.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-ducts-defaults.xml b/workflow/sample_files/base-hvac-ducts-defaults.xml index 46811250d0..904f3d29d0 100644 --- a/workflow/sample_files/base-hvac-ducts-defaults.xml +++ b/workflow/sample_files/base-hvac-ducts-defaults.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-ducts-effective-rvalue.xml b/workflow/sample_files/base-hvac-ducts-effective-rvalue.xml index eaff1b9420..4030fca384 100644 --- a/workflow/sample_files/base-hvac-ducts-effective-rvalue.xml +++ b/workflow/sample_files/base-hvac-ducts-effective-rvalue.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml b/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml index d11e48c114..edb1fc4cc2 100644 --- a/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml +++ b/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-ducts-leakage-percent.xml b/workflow/sample_files/base-hvac-ducts-leakage-percent.xml index 06e914f94d..a44a0a5db3 100644 --- a/workflow/sample_files/base-hvac-ducts-leakage-percent.xml +++ b/workflow/sample_files/base-hvac-ducts-leakage-percent.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-ducts-shape-mixed.xml b/workflow/sample_files/base-hvac-ducts-shape-mixed.xml index 4acc19e38c..2e85a566b6 100644 --- a/workflow/sample_files/base-hvac-ducts-shape-mixed.xml +++ b/workflow/sample_files/base-hvac-ducts-shape-mixed.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-ducts-shape-rectangular.xml b/workflow/sample_files/base-hvac-ducts-shape-rectangular.xml index 60bb94b44b..e38220f32a 100644 --- a/workflow/sample_files/base-hvac-ducts-shape-rectangular.xml +++ b/workflow/sample_files/base-hvac-ducts-shape-rectangular.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-ducts-shape-round.xml b/workflow/sample_files/base-hvac-ducts-shape-round.xml index d97d5c682d..2ee656af9a 100644 --- a/workflow/sample_files/base-hvac-ducts-shape-round.xml +++ b/workflow/sample_files/base-hvac-ducts-shape-round.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-elec-resistance-only.xml b/workflow/sample_files/base-hvac-elec-resistance-only.xml index 3d202eeaf5..f6fd025fea 100644 --- a/workflow/sample_files/base-hvac-elec-resistance-only.xml +++ b/workflow/sample_files/base-hvac-elec-resistance-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml b/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml index 6503e7eb8e..2afd8acc30 100644 --- a/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml +++ b/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml b/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml index 0c0457063a..627d593db0 100644 --- a/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml +++ b/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-evap-cooler-only.xml b/workflow/sample_files/base-hvac-evap-cooler-only.xml index eef814d094..46cf00bc10 100644 --- a/workflow/sample_files/base-hvac-evap-cooler-only.xml +++ b/workflow/sample_files/base-hvac-evap-cooler-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-fireplace-wood-only.xml b/workflow/sample_files/base-hvac-fireplace-wood-only.xml index f9b294c44a..8bba9811c0 100644 --- a/workflow/sample_files/base-hvac-fireplace-wood-only.xml +++ b/workflow/sample_files/base-hvac-fireplace-wood-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml b/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml index 2f7464500f..e96abf7962 100644 --- a/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml +++ b/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-furnace-coal-only.xml b/workflow/sample_files/base-hvac-furnace-coal-only.xml index b6600c6a64..f8b9d94637 100644 --- a/workflow/sample_files/base-hvac-furnace-coal-only.xml +++ b/workflow/sample_files/base-hvac-furnace-coal-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml b/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml index cf83e0db98..db5c96c0ee 100644 --- a/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml +++ b/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-furnace-elec-only.xml b/workflow/sample_files/base-hvac-furnace-elec-only.xml index 2b17fc10b7..43acfe7d2a 100644 --- a/workflow/sample_files/base-hvac-furnace-elec-only.xml +++ b/workflow/sample_files/base-hvac-furnace-elec-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml b/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml index 332da8a9a6..b7e12f1eba 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml b/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml index 7094660817..24b89b54e0 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml b/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml index bbd3d9c2ba..b6b1e767bd 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-furnace-gas-only-autosize-factor.xml b/workflow/sample_files/base-hvac-furnace-gas-only-autosize-factor.xml index d4d4530074..8c1b01683f 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-only-autosize-factor.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-only-autosize-factor.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml b/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml index f697932cf2..48f52c9852 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-furnace-gas-only-pilot.xml b/workflow/sample_files/base-hvac-furnace-gas-only-pilot.xml index 3a6c151c6a..d95e32fc0a 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-only-pilot.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-only-pilot.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-furnace-gas-only.xml b/workflow/sample_files/base-hvac-furnace-gas-only.xml index aa6ee052c7..c6acf73c3a 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-only.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml b/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml index 9d06896716..099491f800 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-furnace-oil-only.xml b/workflow/sample_files/base-hvac-furnace-oil-only.xml index bc8eeb6db5..15f289eb12 100644 --- a/workflow/sample_files/base-hvac-furnace-oil-only.xml +++ b/workflow/sample_files/base-hvac-furnace-oil-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-furnace-propane-only.xml b/workflow/sample_files/base-hvac-furnace-propane-only.xml index b1b65774b0..2bc8e92098 100644 --- a/workflow/sample_files/base-hvac-furnace-propane-only.xml +++ b/workflow/sample_files/base-hvac-furnace-propane-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-furnace-wood-only.xml b/workflow/sample_files/base-hvac-furnace-wood-only.xml index 57c6f9b9f9..b23bf6074b 100644 --- a/workflow/sample_files/base-hvac-furnace-wood-only.xml +++ b/workflow/sample_files/base-hvac-furnace-wood-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-furnace-x3-dse.xml b/workflow/sample_files/base-hvac-furnace-x3-dse.xml index 5d054489bb..6cca2858ac 100644 --- a/workflow/sample_files/base-hvac-furnace-x3-dse.xml +++ b/workflow/sample_files/base-hvac-furnace-x3-dse.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml index 14a8e77039..b32f84eac8 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml index 69e8514988..0c03aac38d 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml @@ -239,10 +239,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml index 22e865cf50..3c0ced3efb 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml index e7ff203b37..b086c3ac93 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml index 13691ff473..92e3c1fe49 100644 --- a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml +++ b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml index 3bfd55e176..92ac58d90f 100644 --- a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml +++ b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml index 8f1952ca89..bf2e43bc92 100644 --- a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml +++ b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml index 97794a6b60..3cefacf984 100644 --- a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml +++ b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml b/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml index 2e4c2f56ed..5353f3cdef 100644 --- a/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml +++ b/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml b/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml index 84bcf8f3ee..552fa27ae3 100644 --- a/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml +++ b/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml b/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml index bd799988e6..e86a131cb1 100644 --- a/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml +++ b/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml b/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml index 06a8df93c0..31b4660486 100644 --- a/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml +++ b/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml b/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml index b2397ae147..13f6ea9853 100644 --- a/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml +++ b/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml b/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml index 1d21f16d60..973f9532d9 100644 --- a/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml +++ b/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml b/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml index 2e97f53bdc..93786959c5 100644 --- a/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml +++ b/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml index a1e0e158c6..11b0b03626 100644 --- a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml +++ b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml index 8b6164c6fc..fec0066157 100644 --- a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml +++ b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml index 39c2dcf522..dc65ad0298 100644 --- a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml +++ b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml index 8e1d55f8b6..c8247e07fd 100644 --- a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml +++ b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml index bcf51b0648..5a336693f9 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml index 6482887e05..72caad6eef 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml index 73e1c538a1..4c6aaf3c0d 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml index 08bfbdba6c..823d508910 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml index 1d53c8d603..a58c7b93d8 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml index f02c9f5d5a..ce5328a7fd 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml index cb97dc0d2b..23740e724b 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-advanced-defrost.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-advanced-defrost.xml index b24afe768f..aa2aff38e1 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-advanced-defrost.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-advanced-defrost.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-autosize-factor.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-autosize-factor.xml index 0ad53fb6c4..f4fff28c42 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-autosize-factor.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-autosize-factor.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-advanced-defrost.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-advanced-defrost.xml index 82067736ac..a81ba952e9 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-advanced-defrost.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-advanced-defrost.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml index 7a297c929e..d3d7b0f39b 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml index a2fdb84594..e13fc8cad1 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml index eddd73eb8e..40eaf92716 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml index 9402b52fbe..139df10e53 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml index 9a6b72daa2..347a37c78d 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml index 3e40c28285..275daaf950 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml index aed44ea9d9..64b82a7408 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml index 8f91ea86ea..001d2f368b 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-multiple.xml b/workflow/sample_files/base-hvac-multiple.xml index c29746ae19..82c9c43ecb 100644 --- a/workflow/sample_files/base-hvac-multiple.xml +++ b/workflow/sample_files/base-hvac-multiple.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-none.xml b/workflow/sample_files/base-hvac-none.xml index 5c1d7a7637..fa099ad116 100644 --- a/workflow/sample_files/base-hvac-none.xml +++ b/workflow/sample_files/base-hvac-none.xml @@ -186,10 +186,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml b/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml index cece20b2d5..fd280430cd 100644 --- a/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml +++ b/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml b/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml index 76603aaebc..7708e88327 100644 --- a/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml +++ b/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-ptac.xml b/workflow/sample_files/base-hvac-ptac.xml index c213922e02..69eccb1c58 100644 --- a/workflow/sample_files/base-hvac-ptac.xml +++ b/workflow/sample_files/base-hvac-ptac.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-pthp-heating-capacity-17f.xml b/workflow/sample_files/base-hvac-pthp-heating-capacity-17f.xml index ac16fbb053..fb8521bce8 100644 --- a/workflow/sample_files/base-hvac-pthp-heating-capacity-17f.xml +++ b/workflow/sample_files/base-hvac-pthp-heating-capacity-17f.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-pthp.xml b/workflow/sample_files/base-hvac-pthp.xml index d13b2092f5..8e3d8e1e2c 100644 --- a/workflow/sample_files/base-hvac-pthp.xml +++ b/workflow/sample_files/base-hvac-pthp.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-room-ac-only-33percent.xml b/workflow/sample_files/base-hvac-room-ac-only-33percent.xml index ac9b157623..e19e9d769e 100644 --- a/workflow/sample_files/base-hvac-room-ac-only-33percent.xml +++ b/workflow/sample_files/base-hvac-room-ac-only-33percent.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-room-ac-only-ceer.xml b/workflow/sample_files/base-hvac-room-ac-only-ceer.xml index 01cec58222..324d73498a 100644 --- a/workflow/sample_files/base-hvac-room-ac-only-ceer.xml +++ b/workflow/sample_files/base-hvac-room-ac-only-ceer.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml b/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml index c02ef38116..c94b869b37 100644 --- a/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml +++ b/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-room-ac-only-research-features-detailed-setpoints.xml b/workflow/sample_files/base-hvac-room-ac-only-research-features-detailed-setpoints.xml index 053435599c..9fd6c94e8d 100644 --- a/workflow/sample_files/base-hvac-room-ac-only-research-features-detailed-setpoints.xml +++ b/workflow/sample_files/base-hvac-room-ac-only-research-features-detailed-setpoints.xml @@ -238,10 +238,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-room-ac-only-research-features.xml b/workflow/sample_files/base-hvac-room-ac-only-research-features.xml index 4851ed2ef0..0dcf414411 100644 --- a/workflow/sample_files/base-hvac-room-ac-only-research-features.xml +++ b/workflow/sample_files/base-hvac-room-ac-only-research-features.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-room-ac-only.xml b/workflow/sample_files/base-hvac-room-ac-only.xml index c59efdd66e..5c5ff96d94 100644 --- a/workflow/sample_files/base-hvac-room-ac-only.xml +++ b/workflow/sample_files/base-hvac-room-ac-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-room-ac-with-heating.xml b/workflow/sample_files/base-hvac-room-ac-with-heating.xml index 90d4cd9e7c..5109ed10d2 100644 --- a/workflow/sample_files/base-hvac-room-ac-with-heating.xml +++ b/workflow/sample_files/base-hvac-room-ac-with-heating.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml b/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml index 2a7f03d138..3b38d2f2ef 100644 --- a/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml +++ b/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-seasons.xml b/workflow/sample_files/base-hvac-seasons.xml index 18bb763a11..228ab30d05 100644 --- a/workflow/sample_files/base-hvac-seasons.xml +++ b/workflow/sample_files/base-hvac-seasons.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml b/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml index b5a88a491c..a67fb44e19 100644 --- a/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml +++ b/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml b/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml index 5a63aca3df..e05c8e62d9 100644 --- a/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml +++ b/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-setpoints.xml b/workflow/sample_files/base-hvac-setpoints.xml index 4027c6b472..fd9dc1504d 100644 --- a/workflow/sample_files/base-hvac-setpoints.xml +++ b/workflow/sample_files/base-hvac-setpoints.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-space-heater-gas-only.xml b/workflow/sample_files/base-hvac-space-heater-gas-only.xml index 822d61c3e0..99738be55c 100644 --- a/workflow/sample_files/base-hvac-space-heater-gas-only.xml +++ b/workflow/sample_files/base-hvac-space-heater-gas-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-stove-oil-only.xml b/workflow/sample_files/base-hvac-stove-oil-only.xml index d655033697..fc574f0c32 100644 --- a/workflow/sample_files/base-hvac-stove-oil-only.xml +++ b/workflow/sample_files/base-hvac-stove-oil-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml b/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml index b356a164da..a09abec8c1 100644 --- a/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml +++ b/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-undersized.xml b/workflow/sample_files/base-hvac-undersized.xml index 0f50464ae4..057e281ee4 100644 --- a/workflow/sample_files/base-hvac-undersized.xml +++ b/workflow/sample_files/base-hvac-undersized.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml b/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml index cca4619917..cbc5028769 100644 --- a/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml +++ b/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-lighting-ceiling-fans-label-energy-use.xml b/workflow/sample_files/base-lighting-ceiling-fans-label-energy-use.xml index 4cfd0c7817..e5543eac16 100644 --- a/workflow/sample_files/base-lighting-ceiling-fans-label-energy-use.xml +++ b/workflow/sample_files/base-lighting-ceiling-fans-label-energy-use.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-lighting-ceiling-fans.xml b/workflow/sample_files/base-lighting-ceiling-fans.xml index 52b8b880bb..9be8dc3c84 100644 --- a/workflow/sample_files/base-lighting-ceiling-fans.xml +++ b/workflow/sample_files/base-lighting-ceiling-fans.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-lighting-holiday.xml b/workflow/sample_files/base-lighting-holiday.xml index f94edd8dff..d4f7bd784c 100644 --- a/workflow/sample_files/base-lighting-holiday.xml +++ b/workflow/sample_files/base-lighting-holiday.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-lighting-kwh-per-year.xml b/workflow/sample_files/base-lighting-kwh-per-year.xml index 6c51e7b315..4a15c51478 100644 --- a/workflow/sample_files/base-lighting-kwh-per-year.xml +++ b/workflow/sample_files/base-lighting-kwh-per-year.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-lighting-mixed.xml b/workflow/sample_files/base-lighting-mixed.xml index 1c859b9bff..2188cacb20 100644 --- a/workflow/sample_files/base-lighting-mixed.xml +++ b/workflow/sample_files/base-lighting-mixed.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-lighting-none-ceiling-fans.xml b/workflow/sample_files/base-lighting-none-ceiling-fans.xml index a3e38d1151..a831bfef70 100644 --- a/workflow/sample_files/base-lighting-none-ceiling-fans.xml +++ b/workflow/sample_files/base-lighting-none-ceiling-fans.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-lighting-none.xml b/workflow/sample_files/base-lighting-none.xml index 6fc1bc7916..16dc346f0a 100644 --- a/workflow/sample_files/base-lighting-none.xml +++ b/workflow/sample_files/base-lighting-none.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-location-AMY-2012.xml b/workflow/sample_files/base-location-AMY-2012.xml index e1d8897abf..63013466eb 100644 --- a/workflow/sample_files/base-location-AMY-2012.xml +++ b/workflow/sample_files/base-location-AMY-2012.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-location-baltimore-md.xml b/workflow/sample_files/base-location-baltimore-md.xml index c1c4aa9730..559a9ed431 100644 --- a/workflow/sample_files/base-location-baltimore-md.xml +++ b/workflow/sample_files/base-location-baltimore-md.xml @@ -248,10 +248,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-location-capetown-zaf.xml b/workflow/sample_files/base-location-capetown-zaf.xml index b888233c44..25b1cb9f5a 100644 --- a/workflow/sample_files/base-location-capetown-zaf.xml +++ b/workflow/sample_files/base-location-capetown-zaf.xml @@ -241,10 +241,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-location-dallas-tx.xml b/workflow/sample_files/base-location-dallas-tx.xml index 9d6cc4385c..f89e165d5c 100644 --- a/workflow/sample_files/base-location-dallas-tx.xml +++ b/workflow/sample_files/base-location-dallas-tx.xml @@ -186,10 +186,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-location-detailed.xml b/workflow/sample_files/base-location-detailed.xml index ab274fd495..7e5259b837 100644 --- a/workflow/sample_files/base-location-detailed.xml +++ b/workflow/sample_files/base-location-detailed.xml @@ -242,10 +242,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-location-duluth-mn.xml b/workflow/sample_files/base-location-duluth-mn.xml index 2380e5d3a8..0fe6f4bd6d 100644 --- a/workflow/sample_files/base-location-duluth-mn.xml +++ b/workflow/sample_files/base-location-duluth-mn.xml @@ -245,10 +245,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-location-helena-mt.xml b/workflow/sample_files/base-location-helena-mt.xml index 8d2bbb145c..b45d89186c 100644 --- a/workflow/sample_files/base-location-helena-mt.xml +++ b/workflow/sample_files/base-location-helena-mt.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-location-honolulu-hi.xml b/workflow/sample_files/base-location-honolulu-hi.xml index 36c2206cb8..8568199789 100644 --- a/workflow/sample_files/base-location-honolulu-hi.xml +++ b/workflow/sample_files/base-location-honolulu-hi.xml @@ -186,10 +186,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-location-miami-fl.xml b/workflow/sample_files/base-location-miami-fl.xml index 8d7dd7f29d..c6331b8988 100644 --- a/workflow/sample_files/base-location-miami-fl.xml +++ b/workflow/sample_files/base-location-miami-fl.xml @@ -186,10 +186,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-location-phoenix-az.xml b/workflow/sample_files/base-location-phoenix-az.xml index cb0d41f421..bf3bcbf989 100644 --- a/workflow/sample_files/base-location-phoenix-az.xml +++ b/workflow/sample_files/base-location-phoenix-az.xml @@ -186,10 +186,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-location-portland-or.xml b/workflow/sample_files/base-location-portland-or.xml index c01e9481b2..8b286227d0 100644 --- a/workflow/sample_files/base-location-portland-or.xml +++ b/workflow/sample_files/base-location-portland-or.xml @@ -251,10 +251,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-mechvent-balanced.xml b/workflow/sample_files/base-mechvent-balanced.xml index 88f6409c47..aa9707d64b 100644 --- a/workflow/sample_files/base-mechvent-balanced.xml +++ b/workflow/sample_files/base-mechvent-balanced.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml b/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml index a8b3a3096d..1df9d3048f 100644 --- a/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml +++ b/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml b/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml index 2be5d2d1cd..b407e2d50d 100644 --- a/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml +++ b/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-mechvent-cfis-dse.xml b/workflow/sample_files/base-mechvent-cfis-dse.xml index 59fbbebbd6..d2b3d7fd5b 100644 --- a/workflow/sample_files/base-mechvent-cfis-dse.xml +++ b/workflow/sample_files/base-mechvent-cfis-dse.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml b/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml index 70a653759d..a580ca3e32 100644 --- a/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml +++ b/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-mechvent-cfis-no-additional-runtime.xml b/workflow/sample_files/base-mechvent-cfis-no-additional-runtime.xml index 2e194df42b..acd8b19d9e 100644 --- a/workflow/sample_files/base-mechvent-cfis-no-additional-runtime.xml +++ b/workflow/sample_files/base-mechvent-cfis-no-additional-runtime.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml b/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml index 7f1b7963d9..86aee35f80 100644 --- a/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml +++ b/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml b/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml index 3f42bcf436..66f32265d3 100644 --- a/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml +++ b/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-mechvent-cfis.xml b/workflow/sample_files/base-mechvent-cfis.xml index d933b0c9ab..29b9aa76d8 100644 --- a/workflow/sample_files/base-mechvent-cfis.xml +++ b/workflow/sample_files/base-mechvent-cfis.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-mechvent-erv-atre-asre.xml b/workflow/sample_files/base-mechvent-erv-atre-asre.xml index 956a397a96..fecda46cf9 100644 --- a/workflow/sample_files/base-mechvent-erv-atre-asre.xml +++ b/workflow/sample_files/base-mechvent-erv-atre-asre.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-mechvent-erv.xml b/workflow/sample_files/base-mechvent-erv.xml index 4d9cea1eee..3d8ec851b1 100644 --- a/workflow/sample_files/base-mechvent-erv.xml +++ b/workflow/sample_files/base-mechvent-erv.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml b/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml index b8756fdfdd..d84bc17e01 100644 --- a/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml +++ b/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-mechvent-exhaust.xml b/workflow/sample_files/base-mechvent-exhaust.xml index b8756fdfdd..d84bc17e01 100644 --- a/workflow/sample_files/base-mechvent-exhaust.xml +++ b/workflow/sample_files/base-mechvent-exhaust.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-mechvent-hrv-asre.xml b/workflow/sample_files/base-mechvent-hrv-asre.xml index 2f34c37c5b..ec92b92cc0 100644 --- a/workflow/sample_files/base-mechvent-hrv-asre.xml +++ b/workflow/sample_files/base-mechvent-hrv-asre.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-mechvent-hrv.xml b/workflow/sample_files/base-mechvent-hrv.xml index d4ac8ea184..48317f9c2b 100644 --- a/workflow/sample_files/base-mechvent-hrv.xml +++ b/workflow/sample_files/base-mechvent-hrv.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-mechvent-multiple.xml b/workflow/sample_files/base-mechvent-multiple.xml index 7d1b65a96f..0065c3ffc2 100644 --- a/workflow/sample_files/base-mechvent-multiple.xml +++ b/workflow/sample_files/base-mechvent-multiple.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-mechvent-supply.xml b/workflow/sample_files/base-mechvent-supply.xml index 85fafe6b59..995fdc5002 100644 --- a/workflow/sample_files/base-mechvent-supply.xml +++ b/workflow/sample_files/base-mechvent-supply.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-mechvent-whole-house-fan.xml b/workflow/sample_files/base-mechvent-whole-house-fan.xml index 3fe0cc773c..c8d41da1e7 100644 --- a/workflow/sample_files/base-mechvent-whole-house-fan.xml +++ b/workflow/sample_files/base-mechvent-whole-house-fan.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-misc-additional-properties.xml b/workflow/sample_files/base-misc-additional-properties.xml index 89c59af18d..065e63677a 100644 --- a/workflow/sample_files/base-misc-additional-properties.xml +++ b/workflow/sample_files/base-misc-additional-properties.xml @@ -244,10 +244,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-misc-bills-battery-scheduled-detailed-only.xml b/workflow/sample_files/base-misc-bills-battery-scheduled-detailed-only.xml index 28c383e6fc..9855f53ad1 100644 --- a/workflow/sample_files/base-misc-bills-battery-scheduled-detailed-only.xml +++ b/workflow/sample_files/base-misc-bills-battery-scheduled-detailed-only.xml @@ -260,10 +260,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-misc-bills-detailed-only.xml b/workflow/sample_files/base-misc-bills-detailed-only.xml index 6bac962dac..61652710d4 100644 --- a/workflow/sample_files/base-misc-bills-detailed-only.xml +++ b/workflow/sample_files/base-misc-bills-detailed-only.xml @@ -257,10 +257,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-misc-bills-pv-detailed-only.xml b/workflow/sample_files/base-misc-bills-pv-detailed-only.xml index d561af62e9..62c2d4ba96 100644 --- a/workflow/sample_files/base-misc-bills-pv-detailed-only.xml +++ b/workflow/sample_files/base-misc-bills-pv-detailed-only.xml @@ -257,10 +257,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-misc-bills-pv-mixed.xml b/workflow/sample_files/base-misc-bills-pv-mixed.xml index d3e8a359d0..413c15c9e7 100644 --- a/workflow/sample_files/base-misc-bills-pv-mixed.xml +++ b/workflow/sample_files/base-misc-bills-pv-mixed.xml @@ -239,10 +239,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-misc-bills-pv.xml b/workflow/sample_files/base-misc-bills-pv.xml index cd5c995f1e..fa2cd58bac 100644 --- a/workflow/sample_files/base-misc-bills-pv.xml +++ b/workflow/sample_files/base-misc-bills-pv.xml @@ -302,10 +302,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-misc-bills.xml b/workflow/sample_files/base-misc-bills.xml index 689978d05f..d0b3aeb5a3 100644 --- a/workflow/sample_files/base-misc-bills.xml +++ b/workflow/sample_files/base-misc-bills.xml @@ -242,10 +242,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-misc-defaults.xml b/workflow/sample_files/base-misc-defaults.xml index da5ff46492..260aac12bf 100644 --- a/workflow/sample_files/base-misc-defaults.xml +++ b/workflow/sample_files/base-misc-defaults.xml @@ -165,10 +165,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-misc-emissions.xml b/workflow/sample_files/base-misc-emissions.xml index 2b293c181e..34e8dabc5e 100644 --- a/workflow/sample_files/base-misc-emissions.xml +++ b/workflow/sample_files/base-misc-emissions.xml @@ -286,10 +286,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-misc-generators-battery-scheduled.xml b/workflow/sample_files/base-misc-generators-battery-scheduled.xml index 57025c446b..f795cf0663 100644 --- a/workflow/sample_files/base-misc-generators-battery-scheduled.xml +++ b/workflow/sample_files/base-misc-generators-battery-scheduled.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-misc-generators-battery.xml b/workflow/sample_files/base-misc-generators-battery.xml index 2345f99460..a0c7fc18d0 100644 --- a/workflow/sample_files/base-misc-generators-battery.xml +++ b/workflow/sample_files/base-misc-generators-battery.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-misc-generators.xml b/workflow/sample_files/base-misc-generators.xml index 1db13370b2..58c5d00aa7 100644 --- a/workflow/sample_files/base-misc-generators.xml +++ b/workflow/sample_files/base-misc-generators.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-misc-ground-conductivity.xml b/workflow/sample_files/base-misc-ground-conductivity.xml index f574a76e3b..4d4bac8f98 100644 --- a/workflow/sample_files/base-misc-ground-conductivity.xml +++ b/workflow/sample_files/base-misc-ground-conductivity.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-misc-loads-large-uncommon.xml b/workflow/sample_files/base-misc-loads-large-uncommon.xml index 35bcfb3007..c778817230 100644 --- a/workflow/sample_files/base-misc-loads-large-uncommon.xml +++ b/workflow/sample_files/base-misc-loads-large-uncommon.xml @@ -242,10 +242,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-misc-loads-large-uncommon2.xml b/workflow/sample_files/base-misc-loads-large-uncommon2.xml index 7b99408614..21a4890cca 100644 --- a/workflow/sample_files/base-misc-loads-large-uncommon2.xml +++ b/workflow/sample_files/base-misc-loads-large-uncommon2.xml @@ -242,10 +242,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-misc-loads-none.xml b/workflow/sample_files/base-misc-loads-none.xml index b2bd5794ad..5ec885cab2 100644 --- a/workflow/sample_files/base-misc-loads-none.xml +++ b/workflow/sample_files/base-misc-loads-none.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-misc-neighbor-shading.xml b/workflow/sample_files/base-misc-neighbor-shading.xml index e0201adb73..1fa4385c2e 100644 --- a/workflow/sample_files/base-misc-neighbor-shading.xml +++ b/workflow/sample_files/base-misc-neighbor-shading.xml @@ -245,10 +245,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-misc-shielding-of-home.xml b/workflow/sample_files/base-misc-shielding-of-home.xml index 7fe40b70af..d2930b0d5b 100644 --- a/workflow/sample_files/base-misc-shielding-of-home.xml +++ b/workflow/sample_files/base-misc-shielding-of-home.xml @@ -233,10 +233,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-misc-unit-multiplier.xml b/workflow/sample_files/base-misc-unit-multiplier.xml index 708c3a2fc2..391cc7f4e3 100644 --- a/workflow/sample_files/base-misc-unit-multiplier.xml +++ b/workflow/sample_files/base-misc-unit-multiplier.xml @@ -233,10 +233,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-misc-usage-multiplier.xml b/workflow/sample_files/base-misc-usage-multiplier.xml index 6d26c99c61..227fbe0d02 100644 --- a/workflow/sample_files/base-misc-usage-multiplier.xml +++ b/workflow/sample_files/base-misc-usage-multiplier.xml @@ -237,10 +237,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-pv-battery-ah.xml b/workflow/sample_files/base-pv-battery-ah.xml index 6934e3f4ec..e87ced8378 100644 --- a/workflow/sample_files/base-pv-battery-ah.xml +++ b/workflow/sample_files/base-pv-battery-ah.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-pv-battery-garage.xml b/workflow/sample_files/base-pv-battery-garage.xml index 84245362b3..5cb3e66622 100644 --- a/workflow/sample_files/base-pv-battery-garage.xml +++ b/workflow/sample_files/base-pv-battery-garage.xml @@ -281,10 +281,6 @@ 0.0 - - - - @@ -310,10 +306,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-pv-battery-round-trip-efficiency.xml b/workflow/sample_files/base-pv-battery-round-trip-efficiency.xml index db9cedfae4..55a8b1a16b 100644 --- a/workflow/sample_files/base-pv-battery-round-trip-efficiency.xml +++ b/workflow/sample_files/base-pv-battery-round-trip-efficiency.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-pv-battery-scheduled.xml b/workflow/sample_files/base-pv-battery-scheduled.xml index d68a81d378..e9c09a409d 100644 --- a/workflow/sample_files/base-pv-battery-scheduled.xml +++ b/workflow/sample_files/base-pv-battery-scheduled.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-pv-battery.xml b/workflow/sample_files/base-pv-battery.xml index f40f95672d..681e6bc9af 100644 --- a/workflow/sample_files/base-pv-battery.xml +++ b/workflow/sample_files/base-pv-battery.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-pv-generators-battery-scheduled.xml b/workflow/sample_files/base-pv-generators-battery-scheduled.xml index 55af7803ef..f6928a42ea 100644 --- a/workflow/sample_files/base-pv-generators-battery-scheduled.xml +++ b/workflow/sample_files/base-pv-generators-battery-scheduled.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-pv-generators-battery.xml b/workflow/sample_files/base-pv-generators-battery.xml index 3b1bf634ff..619834e7ae 100644 --- a/workflow/sample_files/base-pv-generators-battery.xml +++ b/workflow/sample_files/base-pv-generators-battery.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-pv-generators.xml b/workflow/sample_files/base-pv-generators.xml index 74e3f29495..13f44d0762 100644 --- a/workflow/sample_files/base-pv-generators.xml +++ b/workflow/sample_files/base-pv-generators.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-pv.xml b/workflow/sample_files/base-pv.xml index 90b8950e8c..9fc4503704 100644 --- a/workflow/sample_files/base-pv.xml +++ b/workflow/sample_files/base-pv.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-residents-0-runperiod-1-month.xml b/workflow/sample_files/base-residents-0-runperiod-1-month.xml index d52e1f0bb7..0c03c64524 100644 --- a/workflow/sample_files/base-residents-0-runperiod-1-month.xml +++ b/workflow/sample_files/base-residents-0-runperiod-1-month.xml @@ -239,10 +239,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-residents-0.xml b/workflow/sample_files/base-residents-0.xml index 995536f983..9b31009416 100644 --- a/workflow/sample_files/base-residents-0.xml +++ b/workflow/sample_files/base-residents-0.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-residents-1-misc-loads-large-uncommon.xml b/workflow/sample_files/base-residents-1-misc-loads-large-uncommon.xml index 954fe69aa7..eecd18ab6a 100644 --- a/workflow/sample_files/base-residents-1-misc-loads-large-uncommon.xml +++ b/workflow/sample_files/base-residents-1-misc-loads-large-uncommon.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-residents-1-misc-loads-large-uncommon2.xml b/workflow/sample_files/base-residents-1-misc-loads-large-uncommon2.xml index 47decf013e..34db0e8343 100644 --- a/workflow/sample_files/base-residents-1-misc-loads-large-uncommon2.xml +++ b/workflow/sample_files/base-residents-1-misc-loads-large-uncommon2.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-residents-1.xml b/workflow/sample_files/base-residents-1.xml index 3b33343007..92e1087a96 100644 --- a/workflow/sample_files/base-residents-1.xml +++ b/workflow/sample_files/base-residents-1.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-residents-5.xml b/workflow/sample_files/base-residents-5.xml index ad6a79f021..748aea7f73 100644 --- a/workflow/sample_files/base-residents-5.xml +++ b/workflow/sample_files/base-residents-5.xml @@ -212,10 +212,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-schedules-detailed-all-10-mins.xml b/workflow/sample_files/base-schedules-detailed-all-10-mins.xml index 8b82b9f442..f460477d82 100644 --- a/workflow/sample_files/base-schedules-detailed-all-10-mins.xml +++ b/workflow/sample_files/base-schedules-detailed-all-10-mins.xml @@ -237,10 +237,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-schedules-detailed-mixed-timesteps-power-outage.xml b/workflow/sample_files/base-schedules-detailed-mixed-timesteps-power-outage.xml index aec3621a22..09131f1e56 100644 --- a/workflow/sample_files/base-schedules-detailed-mixed-timesteps-power-outage.xml +++ b/workflow/sample_files/base-schedules-detailed-mixed-timesteps-power-outage.xml @@ -248,10 +248,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-schedules-detailed-mixed-timesteps.xml b/workflow/sample_files/base-schedules-detailed-mixed-timesteps.xml index 1f3b880d83..bea19dd86d 100644 --- a/workflow/sample_files/base-schedules-detailed-mixed-timesteps.xml +++ b/workflow/sample_files/base-schedules-detailed-mixed-timesteps.xml @@ -237,10 +237,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml index 9c837c4c89..6fed15c360 100644 --- a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml +++ b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml index e02405603c..0aeaab4e20 100644 --- a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml +++ b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml @@ -246,10 +246,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml index 5a85844e37..4da53dc636 100644 --- a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml +++ b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml @@ -245,10 +245,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml index c6f1d035ee..e4ce714ee5 100644 --- a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml +++ b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml b/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml index 2ef0570e5f..7962559b88 100644 --- a/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml +++ b/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml b/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml index 30c4eb702c..ae329a609a 100644 --- a/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml +++ b/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-schedules-detailed-setpoints.xml b/workflow/sample_files/base-schedules-detailed-setpoints.xml index 3ca0ae44d1..0631c6cba0 100644 --- a/workflow/sample_files/base-schedules-detailed-setpoints.xml +++ b/workflow/sample_files/base-schedules-detailed-setpoints.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-schedules-simple-power-outage.xml b/workflow/sample_files/base-schedules-simple-power-outage.xml index 5df8906bbe..f4b2bb8518 100644 --- a/workflow/sample_files/base-schedules-simple-power-outage.xml +++ b/workflow/sample_files/base-schedules-simple-power-outage.xml @@ -253,10 +253,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-schedules-simple-vacancy.xml b/workflow/sample_files/base-schedules-simple-vacancy.xml index a85421d7ae..662f386642 100644 --- a/workflow/sample_files/base-schedules-simple-vacancy.xml +++ b/workflow/sample_files/base-schedules-simple-vacancy.xml @@ -252,10 +252,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-schedules-simple.xml b/workflow/sample_files/base-schedules-simple.xml index 40ad0f92cf..2a5e06134e 100644 --- a/workflow/sample_files/base-schedules-simple.xml +++ b/workflow/sample_files/base-schedules-simple.xml @@ -242,10 +242,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-simcontrol-calendar-year-custom.xml b/workflow/sample_files/base-simcontrol-calendar-year-custom.xml index 960ec9d3a9..34e04daa05 100644 --- a/workflow/sample_files/base-simcontrol-calendar-year-custom.xml +++ b/workflow/sample_files/base-simcontrol-calendar-year-custom.xml @@ -233,10 +233,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml b/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml index b003d5abc6..150eae9d6c 100644 --- a/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml +++ b/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml @@ -241,10 +241,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml b/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml index 18430d2e99..de213e4e33 100644 --- a/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml +++ b/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-simcontrol-runperiod-1-month.xml b/workflow/sample_files/base-simcontrol-runperiod-1-month.xml index 8becd67920..cf57591902 100644 --- a/workflow/sample_files/base-simcontrol-runperiod-1-month.xml +++ b/workflow/sample_files/base-simcontrol-runperiod-1-month.xml @@ -287,10 +287,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-simcontrol-temperature-capacitance-multiplier.xml b/workflow/sample_files/base-simcontrol-temperature-capacitance-multiplier.xml index 7233ccc602..0872a82509 100644 --- a/workflow/sample_files/base-simcontrol-temperature-capacitance-multiplier.xml +++ b/workflow/sample_files/base-simcontrol-temperature-capacitance-multiplier.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml b/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml index 8f171beb56..284f11a716 100644 --- a/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml +++ b/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml b/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml index 9b4bef1018..c3fe2097cd 100644 --- a/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml +++ b/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml @@ -235,10 +235,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-simcontrol-timestep-10-mins.xml b/workflow/sample_files/base-simcontrol-timestep-10-mins.xml index c0b143a44e..d314468910 100644 --- a/workflow/sample_files/base-simcontrol-timestep-10-mins.xml +++ b/workflow/sample_files/base-simcontrol-timestep-10-mins.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-simcontrol-timestep-30-mins.xml b/workflow/sample_files/base-simcontrol-timestep-30-mins.xml index 45148eebbf..220ea25175 100644 --- a/workflow/sample_files/base-simcontrol-timestep-30-mins.xml +++ b/workflow/sample_files/base-simcontrol-timestep-30-mins.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-zones-spaces-multiple.xml b/workflow/sample_files/base-zones-spaces-multiple.xml index ae5defa41a..9c6c31a41c 100644 --- a/workflow/sample_files/base-zones-spaces-multiple.xml +++ b/workflow/sample_files/base-zones-spaces-multiple.xml @@ -458,10 +458,6 @@ 0.0 - - - - @@ -488,10 +484,6 @@ 0.0 - - - - @@ -518,10 +510,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base-zones-spaces.xml b/workflow/sample_files/base-zones-spaces.xml index a982fbc6b8..a81057c2c7 100644 --- a/workflow/sample_files/base-zones-spaces.xml +++ b/workflow/sample_files/base-zones-spaces.xml @@ -452,10 +452,6 @@ 0.0 - - - - @@ -482,10 +478,6 @@ 0.0 - - - - @@ -512,10 +504,6 @@ 0.0 - - - - diff --git a/workflow/sample_files/base.xml b/workflow/sample_files/base.xml index cd2724248d..775b81de04 100644 --- a/workflow/sample_files/base.xml +++ b/workflow/sample_files/base.xml @@ -232,10 +232,6 @@ 0.0 - - - - diff --git a/workflow/tests/ASHRAE_Standard_140/L302XC.xml b/workflow/tests/ASHRAE_Standard_140/L302XC.xml index c2b110f2ae..99afe6b0c4 100644 --- a/workflow/tests/ASHRAE_Standard_140/L302XC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L302XC.xml @@ -260,10 +260,6 @@ 0.0 - - - - diff --git a/workflow/tests/ASHRAE_Standard_140/L304XC.xml b/workflow/tests/ASHRAE_Standard_140/L304XC.xml index 2ec01884bf..8ad696e21a 100644 --- a/workflow/tests/ASHRAE_Standard_140/L304XC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L304XC.xml @@ -260,10 +260,6 @@ 2.5 - - - - diff --git a/workflow/tests/ASHRAE_Standard_140/L322XC.xml b/workflow/tests/ASHRAE_Standard_140/L322XC.xml index 766b5ed1cc..9f7d8a3657 100644 --- a/workflow/tests/ASHRAE_Standard_140/L322XC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L322XC.xml @@ -416,10 +416,6 @@ 0.0 - - - - diff --git a/workflow/tests/ASHRAE_Standard_140/L324XC.xml b/workflow/tests/ASHRAE_Standard_140/L324XC.xml index c050b0b3af..6f5728a7eb 100644 --- a/workflow/tests/ASHRAE_Standard_140/L324XC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L324XC.xml @@ -428,10 +428,6 @@ 0.0 - - - - diff --git a/workflow/tests/HERS_DSE/HVAC3a.xml b/workflow/tests/HERS_DSE/HVAC3a.xml index 057ff891c6..920413d4b0 100644 --- a/workflow/tests/HERS_DSE/HVAC3a.xml +++ b/workflow/tests/HERS_DSE/HVAC3a.xml @@ -430,10 +430,6 @@ 0.0 - - - - diff --git a/workflow/tests/HERS_DSE/HVAC3b.xml b/workflow/tests/HERS_DSE/HVAC3b.xml index 36e7fa9cec..b4a2d102ea 100644 --- a/workflow/tests/HERS_DSE/HVAC3b.xml +++ b/workflow/tests/HERS_DSE/HVAC3b.xml @@ -430,10 +430,6 @@ 0.0 - - - - diff --git a/workflow/tests/HERS_DSE/HVAC3c.xml b/workflow/tests/HERS_DSE/HVAC3c.xml index 79b97b24eb..d8b10ebcb8 100644 --- a/workflow/tests/HERS_DSE/HVAC3c.xml +++ b/workflow/tests/HERS_DSE/HVAC3c.xml @@ -430,10 +430,6 @@ 0.0 - - - - diff --git a/workflow/tests/HERS_DSE/HVAC3d.xml b/workflow/tests/HERS_DSE/HVAC3d.xml index 8ee2aef9c9..7c672e3fac 100644 --- a/workflow/tests/HERS_DSE/HVAC3d.xml +++ b/workflow/tests/HERS_DSE/HVAC3d.xml @@ -430,10 +430,6 @@ 0.0 - - - - From ce9f2db442563212fc5a3b3866859b892a3aea3d Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Tue, 23 Jul 2024 16:08:13 -0600 Subject: [PATCH 26/41] Revert additional HPXML changes. --- workflow/real_homes/house001.xml | 8 ---- workflow/real_homes/house002.xml | 8 ---- workflow/real_homes/house003.xml | 8 ---- workflow/real_homes/house004.xml | 8 ---- workflow/real_homes/house005.xml | 8 ---- workflow/real_homes/house006.xml | 8 ---- workflow/real_homes/house007.xml | 8 ---- workflow/real_homes/house008.xml | 16 -------- workflow/real_homes/house009.xml | 12 ------ workflow/real_homes/house010.xml | 8 ---- workflow/real_homes/house011.xml | 4 -- workflow/real_homes/house012.xml | 4 -- workflow/real_homes/house013.xml | 4 -- workflow/real_homes/house014.xml | 4 -- workflow/real_homes/house015.xml | 4 -- workflow/real_homes/house016.xml | 4 -- workflow/real_homes/house017.xml | 8 ---- workflow/real_homes/house018.xml | 4 -- workflow/real_homes/house019.xml | 4 -- workflow/real_homes/house020.xml | 4 -- workflow/real_homes/house021.xml | 8 ---- workflow/real_homes/house022.xml | 4 -- workflow/real_homes/house023.xml | 4 -- workflow/real_homes/house024.xml | 8 ---- workflow/real_homes/house025.xml | 4 -- workflow/real_homes/house026.xml | 12 ------ workflow/real_homes/house027.xml | 8 ---- workflow/real_homes/house028.xml | 8 ---- workflow/real_homes/house029.xml | 8 ---- workflow/real_homes/house030.xml | 16 -------- workflow/real_homes/house031.xml | 8 ---- workflow/real_homes/house032.xml | 4 -- workflow/real_homes/house033.xml | 4 -- workflow/real_homes/house034.xml | 12 ------ workflow/real_homes/house035.xml | 4 -- workflow/real_homes/house036.xml | 4 -- workflow/real_homes/house037.xml | 4 -- workflow/real_homes/house038.xml | 8 ---- workflow/real_homes/house039.xml | 8 ---- workflow/real_homes/house040.xml | 8 ---- workflow/real_homes/house041.xml | 12 ------ workflow/real_homes/house042.xml | 8 ---- workflow/real_homes/house043.xml | 8 ---- workflow/real_homes/house044.xml | 8 ---- workflow/real_homes/house045.xml | 8 ---- workflow/real_homes/house047.xml | 4 -- workflow/real_homes/house048.xml | 8 ---- workflow/real_homes/house049.xml | 8 ---- workflow/real_homes/house050.xml | 8 ---- .../tests/ACCA_Examples/Bell_Residence.xml | 40 ------------------- .../ACCA_Examples/Bob_Ross_Residence.xml | 32 --------------- .../tests/ACCA_Examples/Long_Residence.xml | 12 ------ .../tests/ACCA_Examples/Smith_Residence.xml | 16 -------- .../tests/ACCA_Examples/Vatilo_Residence.xml | 8 ---- .../tests/ACCA_Examples/Victor_Residence.xml | 4 -- .../tests/ACCA_Examples/Walker_Residence.xml | 36 ----------------- 56 files changed, 500 deletions(-) diff --git a/workflow/real_homes/house001.xml b/workflow/real_homes/house001.xml index e09ab53b6c..9b90a61132 100644 --- a/workflow/real_homes/house001.xml +++ b/workflow/real_homes/house001.xml @@ -226,10 +226,6 @@ 0.0 - - - - @@ -250,10 +246,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house002.xml b/workflow/real_homes/house002.xml index 1344de4e7e..22a92ddc38 100644 --- a/workflow/real_homes/house002.xml +++ b/workflow/real_homes/house002.xml @@ -195,10 +195,6 @@ 0.0 - - - - @@ -219,10 +215,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house003.xml b/workflow/real_homes/house003.xml index 323a8786a8..8640c8fec0 100644 --- a/workflow/real_homes/house003.xml +++ b/workflow/real_homes/house003.xml @@ -201,10 +201,6 @@ 0.0 - - - - @@ -225,10 +221,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house004.xml b/workflow/real_homes/house004.xml index 4437873906..8d79be77c5 100644 --- a/workflow/real_homes/house004.xml +++ b/workflow/real_homes/house004.xml @@ -201,10 +201,6 @@ 0.0 - - - - @@ -225,10 +221,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house005.xml b/workflow/real_homes/house005.xml index 08f628dcc2..cbfe23cb13 100644 --- a/workflow/real_homes/house005.xml +++ b/workflow/real_homes/house005.xml @@ -207,10 +207,6 @@ 0.0 - - - - @@ -231,10 +227,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house006.xml b/workflow/real_homes/house006.xml index 70cef9e374..8c52c09846 100644 --- a/workflow/real_homes/house006.xml +++ b/workflow/real_homes/house006.xml @@ -272,10 +272,6 @@ 0.0 - - - - @@ -296,10 +292,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house007.xml b/workflow/real_homes/house007.xml index 897c9fd6a5..e324c01762 100644 --- a/workflow/real_homes/house007.xml +++ b/workflow/real_homes/house007.xml @@ -278,10 +278,6 @@ 0.0 - - - - @@ -302,10 +298,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house008.xml b/workflow/real_homes/house008.xml index 15b7856999..efdd3dce44 100644 --- a/workflow/real_homes/house008.xml +++ b/workflow/real_homes/house008.xml @@ -332,10 +332,6 @@ 3.5 - - - - @@ -356,10 +352,6 @@ 0.0 - - - - @@ -380,10 +372,6 @@ 0.0 - - - - @@ -404,10 +392,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house009.xml b/workflow/real_homes/house009.xml index d9e8dc62dd..b39c7339f8 100644 --- a/workflow/real_homes/house009.xml +++ b/workflow/real_homes/house009.xml @@ -307,10 +307,6 @@ 0.0 - - - - @@ -331,10 +327,6 @@ 0.0 - - - - @@ -355,10 +347,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house010.xml b/workflow/real_homes/house010.xml index b288cfce89..4e2c159885 100644 --- a/workflow/real_homes/house010.xml +++ b/workflow/real_homes/house010.xml @@ -314,10 +314,6 @@ 0.5 - - - - @@ -338,10 +334,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house011.xml b/workflow/real_homes/house011.xml index 3797f086fb..a08f1343bb 100644 --- a/workflow/real_homes/house011.xml +++ b/workflow/real_homes/house011.xml @@ -171,10 +171,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house012.xml b/workflow/real_homes/house012.xml index 76b9364a5f..dbee618efd 100644 --- a/workflow/real_homes/house012.xml +++ b/workflow/real_homes/house012.xml @@ -171,10 +171,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house013.xml b/workflow/real_homes/house013.xml index e483c023e0..4468345448 100644 --- a/workflow/real_homes/house013.xml +++ b/workflow/real_homes/house013.xml @@ -171,10 +171,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house014.xml b/workflow/real_homes/house014.xml index 96e993cd78..09ee446b2b 100644 --- a/workflow/real_homes/house014.xml +++ b/workflow/real_homes/house014.xml @@ -171,10 +171,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house015.xml b/workflow/real_homes/house015.xml index e483c023e0..4468345448 100644 --- a/workflow/real_homes/house015.xml +++ b/workflow/real_homes/house015.xml @@ -171,10 +171,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house016.xml b/workflow/real_homes/house016.xml index d535080d71..53729ff5bb 100644 --- a/workflow/real_homes/house016.xml +++ b/workflow/real_homes/house016.xml @@ -227,10 +227,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house017.xml b/workflow/real_homes/house017.xml index 9aafe836a2..0917acbba7 100644 --- a/workflow/real_homes/house017.xml +++ b/workflow/real_homes/house017.xml @@ -247,10 +247,6 @@ 0.0 - - - - @@ -271,10 +267,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house018.xml b/workflow/real_homes/house018.xml index 9f51a0eaca..6a5d8f7e43 100644 --- a/workflow/real_homes/house018.xml +++ b/workflow/real_homes/house018.xml @@ -177,10 +177,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house019.xml b/workflow/real_homes/house019.xml index bcee3d78ad..7ea052532f 100644 --- a/workflow/real_homes/house019.xml +++ b/workflow/real_homes/house019.xml @@ -176,10 +176,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house020.xml b/workflow/real_homes/house020.xml index 1165f8cb73..d6a51c470b 100644 --- a/workflow/real_homes/house020.xml +++ b/workflow/real_homes/house020.xml @@ -210,10 +210,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house021.xml b/workflow/real_homes/house021.xml index 1ece18d8d1..c2bd021d22 100644 --- a/workflow/real_homes/house021.xml +++ b/workflow/real_homes/house021.xml @@ -254,10 +254,6 @@ 0.0 - - - - @@ -278,10 +274,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house022.xml b/workflow/real_homes/house022.xml index 80afef535f..b19382288d 100644 --- a/workflow/real_homes/house022.xml +++ b/workflow/real_homes/house022.xml @@ -240,10 +240,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house023.xml b/workflow/real_homes/house023.xml index a7508435e9..25f33785c1 100644 --- a/workflow/real_homes/house023.xml +++ b/workflow/real_homes/house023.xml @@ -243,10 +243,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house024.xml b/workflow/real_homes/house024.xml index 5ef564d861..784366c61f 100644 --- a/workflow/real_homes/house024.xml +++ b/workflow/real_homes/house024.xml @@ -289,10 +289,6 @@ 0.0 - - - - @@ -313,10 +309,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house025.xml b/workflow/real_homes/house025.xml index 18d8904737..5dacc39088 100644 --- a/workflow/real_homes/house025.xml +++ b/workflow/real_homes/house025.xml @@ -177,10 +177,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house026.xml b/workflow/real_homes/house026.xml index ca1788543b..4a1f5d57c3 100644 --- a/workflow/real_homes/house026.xml +++ b/workflow/real_homes/house026.xml @@ -358,10 +358,6 @@ 0.0 - - - - @@ -382,10 +378,6 @@ 0.0 - - - - @@ -406,10 +398,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house027.xml b/workflow/real_homes/house027.xml index 25a9b8de46..3017c525e8 100644 --- a/workflow/real_homes/house027.xml +++ b/workflow/real_homes/house027.xml @@ -274,10 +274,6 @@ 0.0 - - - - @@ -298,10 +294,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house028.xml b/workflow/real_homes/house028.xml index 98006d7419..4027766062 100644 --- a/workflow/real_homes/house028.xml +++ b/workflow/real_homes/house028.xml @@ -270,10 +270,6 @@ 4.0 - - - - @@ -294,10 +290,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house029.xml b/workflow/real_homes/house029.xml index 59a59e9368..12ad215dfb 100644 --- a/workflow/real_homes/house029.xml +++ b/workflow/real_homes/house029.xml @@ -327,10 +327,6 @@ 0.0 - - - - @@ -351,10 +347,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house030.xml b/workflow/real_homes/house030.xml index c9a7312c84..2fb5112448 100644 --- a/workflow/real_homes/house030.xml +++ b/workflow/real_homes/house030.xml @@ -290,10 +290,6 @@ 0.0 - - - - @@ -314,10 +310,6 @@ 0.0 - - - - @@ -338,10 +330,6 @@ 4.0 - - - - @@ -362,10 +350,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house031.xml b/workflow/real_homes/house031.xml index fc6a42bcab..1912c8ba81 100644 --- a/workflow/real_homes/house031.xml +++ b/workflow/real_homes/house031.xml @@ -201,10 +201,6 @@ 0.0 - - - - @@ -225,10 +221,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house032.xml b/workflow/real_homes/house032.xml index cc1630142c..8a468e6592 100644 --- a/workflow/real_homes/house032.xml +++ b/workflow/real_homes/house032.xml @@ -176,10 +176,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house033.xml b/workflow/real_homes/house033.xml index 4fe49bc34c..9ba9064dd2 100644 --- a/workflow/real_homes/house033.xml +++ b/workflow/real_homes/house033.xml @@ -190,10 +190,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house034.xml b/workflow/real_homes/house034.xml index 3483c498fa..d1c4d7414d 100644 --- a/workflow/real_homes/house034.xml +++ b/workflow/real_homes/house034.xml @@ -248,10 +248,6 @@ 0.0 - - - - @@ -272,10 +268,6 @@ 0.0 - - - - @@ -296,10 +288,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house035.xml b/workflow/real_homes/house035.xml index 055318b53b..3de5e04785 100644 --- a/workflow/real_homes/house035.xml +++ b/workflow/real_homes/house035.xml @@ -209,10 +209,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house036.xml b/workflow/real_homes/house036.xml index ee7bbeec45..87673dbd83 100644 --- a/workflow/real_homes/house036.xml +++ b/workflow/real_homes/house036.xml @@ -208,10 +208,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house037.xml b/workflow/real_homes/house037.xml index 743069a3c0..4037079d98 100644 --- a/workflow/real_homes/house037.xml +++ b/workflow/real_homes/house037.xml @@ -226,10 +226,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house038.xml b/workflow/real_homes/house038.xml index 7b840f0a96..f38d51ec5c 100644 --- a/workflow/real_homes/house038.xml +++ b/workflow/real_homes/house038.xml @@ -201,10 +201,6 @@ 0.0 - - - - @@ -225,10 +221,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house039.xml b/workflow/real_homes/house039.xml index a07e9a3e1d..4400dde8b9 100644 --- a/workflow/real_homes/house039.xml +++ b/workflow/real_homes/house039.xml @@ -216,10 +216,6 @@ 0.0 - - - - @@ -240,10 +236,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house040.xml b/workflow/real_homes/house040.xml index 4385106552..14fd2b895c 100644 --- a/workflow/real_homes/house040.xml +++ b/workflow/real_homes/house040.xml @@ -230,10 +230,6 @@ 0.0 - - - - @@ -254,10 +250,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house041.xml b/workflow/real_homes/house041.xml index 2657a6b0e1..43d9f32763 100644 --- a/workflow/real_homes/house041.xml +++ b/workflow/real_homes/house041.xml @@ -339,10 +339,6 @@ 0.0 - - - - @@ -363,10 +359,6 @@ 0.0 - - - - @@ -387,10 +379,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house042.xml b/workflow/real_homes/house042.xml index c97fb58f82..10cb6d6043 100644 --- a/workflow/real_homes/house042.xml +++ b/workflow/real_homes/house042.xml @@ -328,10 +328,6 @@ 0.0 - - - - @@ -352,10 +348,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house043.xml b/workflow/real_homes/house043.xml index e3169e5ac3..d6af4ed907 100644 --- a/workflow/real_homes/house043.xml +++ b/workflow/real_homes/house043.xml @@ -292,10 +292,6 @@ 0.0 - - - - @@ -316,10 +312,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house044.xml b/workflow/real_homes/house044.xml index cfbb9a87f8..6ed2ba9923 100644 --- a/workflow/real_homes/house044.xml +++ b/workflow/real_homes/house044.xml @@ -328,10 +328,6 @@ 1.0 - - - - @@ -352,10 +348,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house045.xml b/workflow/real_homes/house045.xml index 6c34f87396..210fa710f3 100644 --- a/workflow/real_homes/house045.xml +++ b/workflow/real_homes/house045.xml @@ -319,10 +319,6 @@ 0.0 - - - - @@ -343,10 +339,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house047.xml b/workflow/real_homes/house047.xml index d310a4e287..113b76d1a5 100644 --- a/workflow/real_homes/house047.xml +++ b/workflow/real_homes/house047.xml @@ -147,10 +147,6 @@ 0.7 - - - - diff --git a/workflow/real_homes/house048.xml b/workflow/real_homes/house048.xml index 18f117cf00..b8d5684bb5 100644 --- a/workflow/real_homes/house048.xml +++ b/workflow/real_homes/house048.xml @@ -307,10 +307,6 @@ 0.0 - - - - @@ -336,10 +332,6 @@ 0.0 - - - - diff --git a/workflow/real_homes/house049.xml b/workflow/real_homes/house049.xml index c34a56959c..44d9fa39c4 100644 --- a/workflow/real_homes/house049.xml +++ b/workflow/real_homes/house049.xml @@ -191,10 +191,6 @@ 0.0 - - - - @@ -220,10 +216,6 @@ 2.0 - - - - diff --git a/workflow/real_homes/house050.xml b/workflow/real_homes/house050.xml index f6ac717d16..c0df48e74b 100644 --- a/workflow/real_homes/house050.xml +++ b/workflow/real_homes/house050.xml @@ -231,10 +231,6 @@ 0.0 - - - - @@ -260,10 +256,6 @@ 0.0 - - - - diff --git a/workflow/tests/ACCA_Examples/Bell_Residence.xml b/workflow/tests/ACCA_Examples/Bell_Residence.xml index ebaf7b8688..60b83c93a5 100644 --- a/workflow/tests/ACCA_Examples/Bell_Residence.xml +++ b/workflow/tests/ACCA_Examples/Bell_Residence.xml @@ -584,10 +584,6 @@ 0.333 - - - - @@ -609,10 +605,6 @@ 0.333 - - - - @@ -634,10 +626,6 @@ 0.333 - - - - @@ -659,10 +647,6 @@ 0.333 - - - - @@ -684,10 +668,6 @@ 0.333 - - - - @@ -709,10 +689,6 @@ 0.333 - - - - @@ -734,10 +710,6 @@ 0.333 - - - - @@ -759,10 +731,6 @@ 0.333 - - - - @@ -784,10 +752,6 @@ 0.333 - - - - @@ -809,10 +773,6 @@ 0.333 - - - - diff --git a/workflow/tests/ACCA_Examples/Bob_Ross_Residence.xml b/workflow/tests/ACCA_Examples/Bob_Ross_Residence.xml index 3f26b644b4..109a44c69c 100644 --- a/workflow/tests/ACCA_Examples/Bob_Ross_Residence.xml +++ b/workflow/tests/ACCA_Examples/Bob_Ross_Residence.xml @@ -855,10 +855,6 @@ 0.0 - - - - @@ -880,10 +876,6 @@ 0.0 - - - - @@ -905,10 +897,6 @@ 0.0 - - - - @@ -930,10 +918,6 @@ 0.0 - - - - @@ -955,10 +939,6 @@ 0.0 - - - - @@ -980,10 +960,6 @@ 0.0 - - - - @@ -1005,10 +981,6 @@ 0.0 - - - - @@ -1029,10 +1001,6 @@ 0.0 - - - - diff --git a/workflow/tests/ACCA_Examples/Long_Residence.xml b/workflow/tests/ACCA_Examples/Long_Residence.xml index 6453407ff8..8cbecad8d4 100644 --- a/workflow/tests/ACCA_Examples/Long_Residence.xml +++ b/workflow/tests/ACCA_Examples/Long_Residence.xml @@ -909,10 +909,6 @@ 0.0 - - - - @@ -934,10 +930,6 @@ 0.0 - - - - @@ -959,10 +951,6 @@ 0.0 - - - - diff --git a/workflow/tests/ACCA_Examples/Smith_Residence.xml b/workflow/tests/ACCA_Examples/Smith_Residence.xml index f90f9d6c85..fa1e8d0490 100644 --- a/workflow/tests/ACCA_Examples/Smith_Residence.xml +++ b/workflow/tests/ACCA_Examples/Smith_Residence.xml @@ -901,10 +901,6 @@ 0.0 - - - - @@ -926,10 +922,6 @@ 3.0 - - - - @@ -951,10 +943,6 @@ 0.0 - - - - @@ -976,10 +964,6 @@ 0.0 - - - - diff --git a/workflow/tests/ACCA_Examples/Vatilo_Residence.xml b/workflow/tests/ACCA_Examples/Vatilo_Residence.xml index 0359eb690b..2c728980d1 100644 --- a/workflow/tests/ACCA_Examples/Vatilo_Residence.xml +++ b/workflow/tests/ACCA_Examples/Vatilo_Residence.xml @@ -171,10 +171,6 @@ 0.0 - - - - @@ -195,10 +191,6 @@ 0.0 - - - - diff --git a/workflow/tests/ACCA_Examples/Victor_Residence.xml b/workflow/tests/ACCA_Examples/Victor_Residence.xml index 94e2cc4a71..512a951f7d 100644 --- a/workflow/tests/ACCA_Examples/Victor_Residence.xml +++ b/workflow/tests/ACCA_Examples/Victor_Residence.xml @@ -148,10 +148,6 @@ 0.0 - - - - diff --git a/workflow/tests/ACCA_Examples/Walker_Residence.xml b/workflow/tests/ACCA_Examples/Walker_Residence.xml index 12cbe71e6a..90e277d61c 100644 --- a/workflow/tests/ACCA_Examples/Walker_Residence.xml +++ b/workflow/tests/ACCA_Examples/Walker_Residence.xml @@ -517,10 +517,6 @@ 0.333 - - - - @@ -542,10 +538,6 @@ 0.333 - - - - @@ -567,10 +559,6 @@ 0.333 - - - - @@ -592,10 +580,6 @@ 0.333 - - - - @@ -617,10 +601,6 @@ 0.333 - - - - @@ -642,10 +622,6 @@ 0.333 - - - - @@ -667,10 +643,6 @@ 0.333 - - - - @@ -692,10 +664,6 @@ 0.333 - - - - @@ -717,10 +685,6 @@ 0.333 - - - - From 9d938da36ddec0c9abfb252afff5030d5d5c7ddf Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 23 Jul 2024 23:13:40 +0000 Subject: [PATCH 27/41] Latest results. --- workflow/tests/base_results/results_simulations_bills.csv | 2 +- workflow/tests/base_results/results_simulations_energy.csv | 2 +- workflow/tests/base_results/results_simulations_loads.csv | 2 +- workflow/tests/base_results/results_simulations_misc.csv | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/workflow/tests/base_results/results_simulations_bills.csv b/workflow/tests/base_results/results_simulations_bills.csv index 7915665992..0841b8dbac 100644 --- a/workflow/tests/base_results/results_simulations_bills.csv +++ b/workflow/tests/base_results/results_simulations_bills.csv @@ -172,7 +172,7 @@ base-foundation-conditioned-basement-slab-insulation.xml,1834.04,144.0,1310.79,0 base-foundation-conditioned-basement-wall-insulation.xml,1815.46,144.0,1287.35,0.0,1431.35,144.0,240.11,384.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-foundation-conditioned-crawlspace.xml,1530.76,144.0,1046.11,0.0,1190.11,144.0,196.65,340.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-foundation-multiple.xml,1497.11,144.0,1066.64,0.0,1210.64,144.0,142.47,286.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-foundation-slab-exterior-horizontal-insulation.xml,1462.9,144.0,1059.17,0.0,1203.17,144.0,115.73,259.73,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-foundation-slab-exterior-horizontal-insulation.xml,1450.48,144.0,1050.38,0.0,1194.38,144.0,112.1,256.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-foundation-slab.xml,1465.42,144.0,1060.24,0.0,1204.24,144.0,117.18,261.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-foundation-unconditioned-basement-above-grade.xml,1511.03,144.0,1069.73,0.0,1213.73,144.0,153.3,297.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-foundation-unconditioned-basement-assembly-r.xml,1467.44,144.0,1048.07,0.0,1192.07,144.0,131.37,275.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/workflow/tests/base_results/results_simulations_energy.csv b/workflow/tests/base_results/results_simulations_energy.csv index 0ef41cf549..be875f52a1 100644 --- a/workflow/tests/base_results/results_simulations_energy.csv +++ b/workflow/tests/base_results/results_simulations_energy.csv @@ -172,7 +172,7 @@ base-foundation-conditioned-basement-slab-insulation.xml,58.484,58.484,36.011,36 base-foundation-conditioned-basement-wall-insulation.xml,58.305,58.305,35.367,35.367,22.938,0.0,0.0,0.0,0.0,0.0,0.0,0.589,0.0,0.0,4.036,0.592,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-foundation-conditioned-crawlspace.xml,47.525,47.525,28.74,28.74,18.785,0.0,0.0,0.0,0.0,0.0,0.0,0.482,0.0,0.0,3.554,0.51,9.208,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-foundation-multiple.xml,42.914,42.914,29.304,29.304,13.61,0.0,0.0,0.0,0.0,0.0,0.0,0.349,0.0,0.0,4.39,0.661,9.18,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.807,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-slab-exterior-horizontal-insulation.xml,40.154,40.154,29.098,29.098,11.056,0.0,0.0,0.0,0.0,0.0,0.0,0.284,0.0,0.0,4.007,0.592,9.199,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.1,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-slab-exterior-horizontal-insulation.xml,39.566,39.566,28.857,28.857,10.709,0.0,0.0,0.0,0.0,0.0,0.0,0.275,0.0,0.0,3.812,0.555,9.2,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.099,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-foundation-slab.xml,40.322,40.322,29.128,29.128,11.194,0.0,0.0,0.0,0.0,0.0,0.0,0.287,0.0,0.0,4.029,0.597,9.199,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.099,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-foundation-unconditioned-basement-above-grade.xml,44.034,44.034,29.389,29.389,14.645,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.477,0.677,9.197,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.746,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-foundation-unconditioned-basement-assembly-r.xml,41.343,41.343,28.794,28.794,12.55,0.0,0.0,0.0,0.0,0.0,0.0,0.322,0.0,0.0,4.018,0.591,9.196,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.75,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/workflow/tests/base_results/results_simulations_loads.csv b/workflow/tests/base_results/results_simulations_loads.csv index a3fed0b5bb..f9be50815e 100644 --- a/workflow/tests/base_results/results_simulations_loads.csv +++ b/workflow/tests/base_results/results_simulations_loads.csv @@ -172,7 +172,7 @@ base-foundation-conditioned-basement-slab-insulation.xml,21.252,0.0,14.498,9.071 base-foundation-conditioned-basement-wall-insulation.xml,21.692,0.0,12.247,9.071,0.615,0.0,0.0,0.0,3.896,3.946,0.554,6.333,0.695,10.933,-13.737,0.0,0.0,0.0,8.89,-0.17,5.316,0.0,0.782,0.0,5.171,-8.581,-2.695,0.0,0.128,-0.107,-0.003,1.448,0.052,-0.411,10.676,0.0,0.0,0.0,-6.448,-0.165,-0.779,-3.625,-0.103,0.0,2.881,7.0,1.812 base-foundation-conditioned-crawlspace.xml,17.752,0.0,10.388,9.178,0.616,0.0,0.0,0.0,4.115,3.879,0.545,5.201,0.683,10.579,-13.64,0.0,0.0,0.0,9.852,-0.141,3.728,0.0,0.78,0.0,0.0,-6.59,-1.583,0.0,0.209,-0.162,-0.01,1.937,0.042,-0.324,10.714,0.0,0.0,0.0,-3.832,-0.138,-0.585,-3.695,-0.106,0.0,0.0,5.406,1.062 base-foundation-multiple.xml,12.863,0.0,13.526,9.122,0.696,0.0,0.0,0.0,3.996,3.639,0.0,0.0,0.822,10.149,-9.933,0.0,0.0,4.484,0.0,-0.753,2.524,0.0,0.0,0.0,2.344,-3.446,-1.231,0.0,-0.342,-0.891,0.0,0.0,0.042,-0.726,14.035,0.0,0.0,-1.482,0.0,-0.75,-0.677,-3.118,0.0,0.0,1.992,4.365,1.415 -base-foundation-slab-exterior-horizontal-insulation.xml,10.447,0.0,12.074,9.178,0.607,0.0,0.0,0.0,4.051,3.703,0.0,0.0,0.767,10.182,-10.741,0.0,0.0,0.0,6.336,-0.498,2.117,0.0,0.731,0.0,0.34,-5.527,-1.31,0.0,-0.19,-0.651,0.0,0.0,0.06,-0.549,13.515,0.0,0.0,0.0,-3.217,-0.496,-0.462,-3.439,-0.205,0.0,0.134,6.489,1.336 +base-foundation-slab-exterior-horizontal-insulation.xml,10.12,0.0,11.281,9.178,0.607,0.0,0.0,0.0,4.046,3.699,0.0,0.0,0.772,10.185,-10.676,0.0,0.0,0.0,5.934,-0.513,2.11,0.0,0.728,0.0,0.33,-5.499,-1.299,0.0,-0.182,-0.642,0.0,0.0,0.067,-0.511,13.58,0.0,0.0,0.0,-4.267,-0.51,-0.462,-3.318,-0.208,0.0,0.125,6.518,1.347 base-foundation-slab.xml,10.578,0.0,12.163,9.178,0.607,0.0,0.0,0.0,4.055,3.706,0.0,0.0,0.766,10.177,-10.778,0.0,0.0,0.0,6.504,-0.494,2.119,0.0,0.732,0.0,0.344,-5.537,-1.313,0.0,-0.184,-0.646,0.0,0.0,0.058,-0.547,13.478,0.0,0.0,0.0,-3.094,-0.492,-0.46,-3.446,-0.203,0.0,0.135,6.479,1.333 base-foundation-unconditioned-basement-above-grade.xml,13.843,0.0,13.896,9.122,0.714,0.0,0.0,0.0,4.037,3.671,0.0,0.0,0.81,10.137,-10.206,0.0,0.0,5.23,0.0,-0.702,2.538,0.0,0.0,0.0,2.757,-3.477,-1.245,0.0,-0.283,-0.84,0.0,0.0,0.035,-0.785,13.763,0.0,0.0,-1.208,0.0,-0.698,-0.665,-3.103,0.0,0.0,2.246,4.334,1.401 base-foundation-unconditioned-basement-assembly-r.xml,11.862,0.0,11.993,9.122,0.713,0.0,0.0,0.0,3.985,3.603,0.0,0.0,0.812,10.077,-9.773,0.0,0.0,3.623,0.0,-0.781,2.501,0.0,0.0,0.0,2.122,-3.39,-1.202,0.0,-0.322,-0.848,0.0,0.0,0.071,-0.768,14.196,0.0,0.0,-2.907,0.0,-0.778,-0.697,-2.969,0.0,0.0,1.498,4.421,1.444 diff --git a/workflow/tests/base_results/results_simulations_misc.csv b/workflow/tests/base_results/results_simulations_misc.csv index 2ba7b300ce..7883ff9304 100644 --- a/workflow/tests/base_results/results_simulations_misc.csv +++ b/workflow/tests/base_results/results_simulations_misc.csv @@ -172,7 +172,7 @@ base-foundation-conditioned-basement-slab-insulation.xml,0.0,0.0,1354.7,998.0,11 base-foundation-conditioned-basement-wall-insulation.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2089.4,3465.2,3465.2,23.913,18.554,0.0 base-foundation-conditioned-crawlspace.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1699.3,2769.8,2769.8,16.152,11.732,0.0 base-foundation-multiple.xml,0.0,0.0,1354.7,998.0,11171.5,2652.8,1671.9,3013.8,3013.8,16.102,15.954,0.0 -base-foundation-slab-exterior-horizontal-insulation.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1678.6,2748.0,2748.0,13.228,13.297,0.0 +base-foundation-slab-exterior-horizontal-insulation.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1682.5,2832.3,2832.3,13.081,12.924,0.0 base-foundation-slab.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1679.2,2751.3,2751.3,13.313,13.371,0.0 base-foundation-unconditioned-basement-above-grade.xml,0.0,0.0,1354.7,998.0,11171.5,2652.8,1669.6,3013.6,3013.6,17.351,16.837,0.0 base-foundation-unconditioned-basement-assembly-r.xml,0.0,0.0,1354.7,998.0,11171.5,2652.8,1676.9,2788.9,2788.9,15.54,14.692,0.0 From a022f4bfb5a54365311efca1ebc1010a4819451e Mon Sep 17 00:00:00 2001 From: prsh5175 Date: Mon, 29 Jul 2024 11:20:25 -0600 Subject: [PATCH 28/41] Temporary commit --- HPXMLtoOpenStudio/measure.xml | 18 +++--------------- .../resources/hpxml_schematron/EPvalidator.xml | 2 +- HPXMLtoOpenStudio/tests/test_validation.rb | 7 +++++++ 3 files changed, 11 insertions(+), 16 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index a14b029a5c..3412dde416 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - d5114868-bdca-4c47-937e-2b8e9d946d6c - 2024-07-23T21:55:28Z + 0d2c6c14-b56b-4d35-9f34-3ddcb28f6982 + 2024-07-26T17:25:38Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -369,7 +369,7 @@ hpxml_schematron/EPvalidator.xml xml resource - 0673A9B3 + FE821A58 hpxml_schematron/iso-schematron.xsd @@ -629,18 +629,6 @@ resource 93120E27 - - results_annual.csv - csv - test - 99D358D6 - - - results_design_load_details.csv - csv - test - 65664C6E - test_airflow.rb rb diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 844be53d57..f04d07201d 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -833,7 +833,7 @@ Slab exposed perimeter is more than twice the slab area, this may indicate an input error. Thickness is less than 1 inch; this may indicate incorrect units. Thickness is greater than 12 inches; this may indicate incorrect units. - There is ExteriorHorizontalInsulation but no PerimeterInsulation, this may indicate an input error. + There is ExteriorHorizontalInsulation but no PerimeterInsulation, this may indicate an input error. diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index 796d94b118..139d31407a 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -857,6 +857,7 @@ def test_schema_schematron_warning_messages 'plug-load-type-tv-plasma' => ["Plug load type 'TV plasma' is not currently handled, the plug load will not be modeled."], 'portable-spa' => ['Portable spa is not currently handled, the portable spa will not be modeled.'], 'slab-zero-exposed-perimeter' => ['Slab has zero exposed perimeter, this may indicate an input error.'], + 'slab-wing-insulation-present-with-no-perimeter-insulation' => ['Slab has no perimeter insulation but has exterior horizontal (slab wing) insulation, this may indicate an input error.'], 'slab-large-exposed-perimeter' => ['Slab exposed perimeter is more than twice the slab area, this may indicate an input error.'], 'unit-multiplier' => ['NumberofUnits is greater than 1, indicating that the HPXML Building represents multiple dwelling units; simulation outputs will reflect this unit multiplier.'], 'wrong-units' => ['Thickness is greater than 12 inches; this may indicate incorrect units.', @@ -1005,6 +1006,12 @@ def test_schema_schematron_warning_messages elsif ['slab-zero-exposed-perimeter'].include? warning_case hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml_bldg.slabs[0].exposed_perimeter = 0 + + elsif ['slab-wing-insulation-present-with-no-perimeter-insulation'].include? warning_case + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.slabs[0].exterior_vertical_insulation = 0 + + elsif ['slab-large-exposed-perimeter'].include? warning_case hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml_bldg.slabs[0].exposed_perimeter = hpxml_bldg.slabs[0].area * 2 + 1 From 635a0fb024bf8059ae87e4688499a37de6b55f0d Mon Sep 17 00:00:00 2001 From: prsh5175 Date: Tue, 6 Aug 2024 14:28:29 -0600 Subject: [PATCH 29/41] Debug commit. --- HPXMLtoOpenStudio/measure.xml | 8 ++++---- .../resources/hpxml_schematron/EPvalidator.xml | 2 +- HPXMLtoOpenStudio/tests/test_validation.rb | 8 +++----- 3 files changed, 8 insertions(+), 10 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 3412dde416..e33fd49522 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 0d2c6c14-b56b-4d35-9f34-3ddcb28f6982 - 2024-07-26T17:25:38Z + f0e36330-4859-433e-b655-076babb2182c + 2024-08-06T20:25:27Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -369,7 +369,7 @@ hpxml_schematron/EPvalidator.xml xml resource - FE821A58 + 5A3256E0 hpxml_schematron/iso-schematron.xsd @@ -717,7 +717,7 @@ test_validation.rb rb test - CFDFF5FB + C5368025 test_water_heater.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index f04d07201d..102b0e9c82 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -833,7 +833,7 @@ Slab exposed perimeter is more than twice the slab area, this may indicate an input error. Thickness is less than 1 inch; this may indicate incorrect units. Thickness is greater than 12 inches; this may indicate incorrect units. - There is ExteriorHorizontalInsulation but no PerimeterInsulation, this may indicate an input error. + There is ExteriorHorizontalInsulation but no PerimeterInsulation, this may indicate an input error. diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index 139d31407a..1f6a5f1db6 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -857,7 +857,7 @@ def test_schema_schematron_warning_messages 'plug-load-type-tv-plasma' => ["Plug load type 'TV plasma' is not currently handled, the plug load will not be modeled."], 'portable-spa' => ['Portable spa is not currently handled, the portable spa will not be modeled.'], 'slab-zero-exposed-perimeter' => ['Slab has zero exposed perimeter, this may indicate an input error.'], - 'slab-wing-insulation-present-with-no-perimeter-insulation' => ['Slab has no perimeter insulation but has exterior horizontal (slab wing) insulation, this may indicate an input error.'], + 'slab-wing-insulation-present-with-no-perimeter-insulation' => ['There is ExteriorHorizontalInsulation but no PerimeterInsulation, this may indicate an input error.'], 'slab-large-exposed-perimeter' => ['Slab exposed perimeter is more than twice the slab area, this may indicate an input error.'], 'unit-multiplier' => ['NumberofUnits is greater than 1, indicating that the HPXML Building represents multiple dwelling units; simulation outputs will reflect this unit multiplier.'], 'wrong-units' => ['Thickness is greater than 12 inches; this may indicate incorrect units.', @@ -1006,11 +1006,9 @@ def test_schema_schematron_warning_messages elsif ['slab-zero-exposed-perimeter'].include? warning_case hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml_bldg.slabs[0].exposed_perimeter = 0 - - elsif ['slab-wing-insulation-present-with-no-perimeter-insulation'].include? warning_case - hpxml, hpxml_bldg = _create_hpxml('base.xml') - hpxml_bldg.slabs[0].exterior_vertical_insulation = 0 + elsif ['slab-wing-insulation-present-with-no-perimeter-insulation'].include? warning_case + hpxml, _hpxml_bldg = _create_hpxml('base-foundation-slab-exterior-horizontal-insulation.xml') elsif ['slab-large-exposed-perimeter'].include? warning_case hpxml, hpxml_bldg = _create_hpxml('base.xml') From 035413a8d203cacccb6e43315d944e3ce0431479 Mon Sep 17 00:00:00 2001 From: prsh5175 Date: Wed, 7 Aug 2024 11:06:04 -0600 Subject: [PATCH 30/41] Temporary commit. --- HPXMLtoOpenStudio/measure.xml | 16 +++++----------- HPXMLtoOpenStudio/tests/test_validation.rb | 1 + workflow/hpxml_inputs.json | 1 + ...ation-slab-exterior-horizontal-insulation.xml | 2 +- 4 files changed, 8 insertions(+), 12 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index fb6eb0646c..cf47f2ff9e 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 5bb4264d-673f-4c6c-acda-4e2a5bed7d14 - 2024-07-26T18:21:19Z + a551dd05-3531-4062-aa0c-ebe44d878d6b + 2024-08-07T16:45:56Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -183,7 +183,7 @@ measure.rb rb script - F1B9845C + 8973D089 airflow.rb @@ -345,7 +345,7 @@ hpxml.rb rb resource - 9CBC641F + 1FA5B7FB hpxml_defaults.rb @@ -629,12 +629,6 @@ resource 93120E27 - - in.schedules.csv - csv - test - 2B9C5C95 - test_airflow.rb rb @@ -723,7 +717,7 @@ test_validation.rb rb test - C5368025 + 48CF3F79 test_water_heater.rb diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index 1f6a5f1db6..1ce3d01023 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -1009,6 +1009,7 @@ def test_schema_schematron_warning_messages elsif ['slab-wing-insulation-present-with-no-perimeter-insulation'].include? warning_case hpxml, _hpxml_bldg = _create_hpxml('base-foundation-slab-exterior-horizontal-insulation.xml') + hpxml_bldg.slabs[0].slab_perimeter_insulation_r = 0 elsif ['slab-large-exposed-perimeter'].include? warning_case hpxml, hpxml_bldg = _create_hpxml('base.xml') diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index 08c12625da..7e42c9db88 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -1858,6 +1858,7 @@ }, "sample_files/base-foundation-slab-exterior-horizontal-insulation.xml": { "parent_hpxml": "sample_files/base-foundation-slab.xml", + "slab_perimeter_insulation_r": 5.4, "slab_exterior_horizontal_insulation_r": 5.4, "slab_exterior_horizontal_insulation_width": 2.5, "slab_exterior_horizontal_insulation_depth_below_grade": 1 diff --git a/workflow/sample_files/base-foundation-slab-exterior-horizontal-insulation.xml b/workflow/sample_files/base-foundation-slab-exterior-horizontal-insulation.xml index 9be0f079de..537684e88a 100644 --- a/workflow/sample_files/base-foundation-slab-exterior-horizontal-insulation.xml +++ b/workflow/sample_files/base-foundation-slab-exterior-horizontal-insulation.xml @@ -182,7 +182,7 @@ - 0.0 + 5.4 0.0 From 32574cc549eab8882c183681ac622b42a917d07c Mon Sep 17 00:00:00 2001 From: prsh5175 Date: Wed, 7 Aug 2024 16:17:30 -0600 Subject: [PATCH 31/41] _hpxml_bldg changed to hpxml_bldg in test_validation.rb line 1011 --- HPXMLtoOpenStudio/tests/test_validation.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index 1ce3d01023..fa2ad20751 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -1008,7 +1008,7 @@ def test_schema_schematron_warning_messages hpxml_bldg.slabs[0].exposed_perimeter = 0 elsif ['slab-wing-insulation-present-with-no-perimeter-insulation'].include? warning_case - hpxml, _hpxml_bldg = _create_hpxml('base-foundation-slab-exterior-horizontal-insulation.xml') + hpxml, hpxml_bldg = _create_hpxml('base-foundation-slab-exterior-horizontal-insulation.xml') hpxml_bldg.slabs[0].slab_perimeter_insulation_r = 0 elsif ['slab-large-exposed-perimeter'].include? warning_case From 29f81af2be9437bfb227800aab3d597713dde5f8 Mon Sep 17 00:00:00 2001 From: prsh5175 Date: Wed, 14 Aug 2024 08:29:23 -0600 Subject: [PATCH 32/41] Debug commit: object name fixed for test_validation.rb line 1012 --- BuildResidentialHPXML/measure.xml | 8 ++++---- HPXMLtoOpenStudio/measure.xml | 6 +++--- HPXMLtoOpenStudio/tests/test_validation.rb | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index ea5c0b48fd..08e62ddd9c 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 8d558b94-90a7-4f68-86a0-8f80b41ddbb5 - 2024-08-06T22:34:22Z + ad61fc66-e687-42b2-89c4-96e557bd3ae6 + 2024-08-13T21:13:43Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -7416,7 +7416,7 @@ README.md md readme - B702F428 + 884866A1 README.md.erb @@ -7433,7 +7433,7 @@ measure.rb rb script - 0472491B + 2D4D4756 geometry.rb diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 0008dcc78c..7450be2f8c 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - db434054-c05b-45ce-8134-a195100fecaf - 2024-08-06T21:58:01Z + 9a384ddb-972a-4cea-8ccd-9fd84482f133 + 2024-08-13T21:13:46Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -717,7 +717,7 @@ test_validation.rb rb test - 48CF3F79 + 4B65479E test_water_heater.rb diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index fa2ad20751..7a0e99655a 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -1009,7 +1009,7 @@ def test_schema_schematron_warning_messages elsif ['slab-wing-insulation-present-with-no-perimeter-insulation'].include? warning_case hpxml, hpxml_bldg = _create_hpxml('base-foundation-slab-exterior-horizontal-insulation.xml') - hpxml_bldg.slabs[0].slab_perimeter_insulation_r = 0 + hpxml_bldg.slabs[0].perimeter_insulation_r_value = 0 elsif ['slab-large-exposed-perimeter'].include? warning_case hpxml, hpxml_bldg = _create_hpxml('base.xml') From 3d1c454e8737815a948a8772583b9bcbce0d7dc5 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 14 Aug 2024 17:43:12 +0000 Subject: [PATCH 33/41] Latest results. --- workflow/tests/base_results/results_simulations_bills.csv | 1 + workflow/tests/base_results/results_simulations_energy.csv | 1 + workflow/tests/base_results/results_simulations_hvac.csv | 1 + workflow/tests/base_results/results_simulations_loads.csv | 1 + workflow/tests/base_results/results_simulations_misc.csv | 1 + 5 files changed, 5 insertions(+) diff --git a/workflow/tests/base_results/results_simulations_bills.csv b/workflow/tests/base_results/results_simulations_bills.csv index f839b72280..7f7eeaffb3 100644 --- a/workflow/tests/base_results/results_simulations_bills.csv +++ b/workflow/tests/base_results/results_simulations_bills.csv @@ -173,6 +173,7 @@ base-foundation-conditioned-basement-slab-insulation.xml,1833.57,144.0,1310.1,0. base-foundation-conditioned-basement-wall-insulation.xml,1814.99,144.0,1286.65,0.0,1430.65,144.0,240.34,384.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-foundation-conditioned-crawlspace.xml,1530.37,144.0,1045.54,0.0,1189.54,144.0,196.83,340.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-foundation-multiple.xml,1496.86,144.0,1066.23,0.0,1210.23,144.0,142.63,286.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-foundation-slab-exterior-horizontal-insulation.xml,1450.25,144.0,1050.05,0.0,1194.05,144.0,112.2,256.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-foundation-slab.xml,1465.18,144.0,1059.9,0.0,1203.9,144.0,117.28,261.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-foundation-unconditioned-basement-above-grade.xml,1510.76,144.0,1069.29,0.0,1213.29,144.0,153.47,297.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-foundation-unconditioned-basement-assembly-r.xml,1467.22,144.0,1047.7,0.0,1191.7,144.0,131.52,275.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/workflow/tests/base_results/results_simulations_energy.csv b/workflow/tests/base_results/results_simulations_energy.csv index f8cb7475bc..370dc26f1b 100644 --- a/workflow/tests/base_results/results_simulations_energy.csv +++ b/workflow/tests/base_results/results_simulations_energy.csv @@ -173,6 +173,7 @@ base-foundation-conditioned-basement-slab-insulation.xml,58.486,58.486,35.992,35 base-foundation-conditioned-basement-wall-insulation.xml,58.307,58.307,35.348,35.348,22.959,0.0,0.0,0.0,0.0,0.0,0.0,0.57,0.0,0.0,4.036,0.592,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-foundation-conditioned-crawlspace.xml,47.527,47.527,28.724,28.724,18.803,0.0,0.0,0.0,0.0,0.0,0.0,0.466,0.0,0.0,3.554,0.51,9.208,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-foundation-multiple.xml,42.918,42.918,29.293,29.293,13.625,0.0,0.0,0.0,0.0,0.0,0.0,0.338,0.0,0.0,4.391,0.661,9.18,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.807,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-slab-exterior-horizontal-insulation.xml,39.566,39.566,28.848,28.848,10.718,0.0,0.0,0.0,0.0,0.0,0.0,0.266,0.0,0.0,3.812,0.555,9.2,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.099,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-foundation-slab.xml,40.322,40.322,29.119,29.119,11.203,0.0,0.0,0.0,0.0,0.0,0.0,0.278,0.0,0.0,4.029,0.597,9.199,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.099,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-foundation-unconditioned-basement-above-grade.xml,44.038,44.038,29.377,29.377,14.661,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,4.477,0.677,9.197,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.746,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-foundation-unconditioned-basement-assembly-r.xml,41.347,41.347,28.783,28.783,12.564,0.0,0.0,0.0,0.0,0.0,0.0,0.312,0.0,0.0,4.018,0.591,9.196,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.75,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/workflow/tests/base_results/results_simulations_hvac.csv b/workflow/tests/base_results/results_simulations_hvac.csv index a4da1da24c..b1a247e922 100644 --- a/workflow/tests/base_results/results_simulations_hvac.csv +++ b/workflow/tests/base_results/results_simulations_hvac.csv @@ -173,6 +173,7 @@ base-foundation-conditioned-basement-slab-insulation.xml,6.8,91.76,36000.0,24000 base-foundation-conditioned-basement-wall-insulation.xml,6.8,91.76,36000.0,24000.0,0.0,31451.0,8686.0,7508.0,0.0,575.0,6153.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,20279.0,6137.0,7037.0,0.0,207.0,662.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 base-foundation-conditioned-crawlspace.xml,6.8,91.76,36000.0,24000.0,0.0,21371.0,0.0,7508.0,0.0,575.0,5290.0,0.0,0.0,2362.0,2171.0,3465.0,0.0,0.0,13772.0,0.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,467.0,0.0,3320.0,0.0,0.0,304.0,0.0,-496.0,0.0,800.0 base-foundation-multiple.xml,6.8,91.76,36000.0,24000.0,0.0,23269.0,4969.0,7508.0,0.0,575.0,2198.0,0.0,3538.0,0.0,2171.0,2310.0,0.0,0.0,14634.0,246.0,7037.0,0.0,207.0,281.0,0.0,938.0,0.0,2293.0,311.0,0.0,3320.0,0.0,0.0,469.0,0.0,-331.0,0.0,800.0 +base-foundation-slab-exterior-horizontal-insulation.xml,6.8,91.76,36000.0,24000.0,0.0,28288.0,1699.0,7508.0,0.0,575.0,2198.0,0.0,0.0,11827.0,2171.0,2310.0,0.0,0.0,13449.0,0.0,7037.0,0.0,207.0,281.0,0.0,0.0,0.0,2293.0,311.0,0.0,3320.0,0.0,0.0,469.0,0.0,-331.0,0.0,800.0 base-foundation-slab.xml,6.8,91.76,36000.0,24000.0,0.0,28288.0,1699.0,7508.0,0.0,575.0,2198.0,0.0,0.0,11827.0,2171.0,2310.0,0.0,0.0,13449.0,0.0,7037.0,0.0,207.0,281.0,0.0,0.0,0.0,2293.0,311.0,0.0,3320.0,0.0,0.0,469.0,0.0,-331.0,0.0,800.0 base-foundation-unconditioned-basement-above-grade.xml,6.8,91.76,36000.0,24000.0,0.0,23247.0,4978.0,7508.0,0.0,575.0,2198.0,0.0,3507.0,0.0,2171.0,2310.0,0.0,0.0,14636.0,256.0,7037.0,0.0,207.0,281.0,0.0,930.0,0.0,2293.0,311.0,0.0,3320.0,0.0,0.0,469.0,0.0,-331.0,0.0,800.0 base-foundation-unconditioned-basement-assembly-r.xml,6.8,91.76,36000.0,24000.0,0.0,21082.0,4916.0,7508.0,0.0,575.0,2198.0,0.0,1404.0,0.0,2171.0,2310.0,0.0,0.0,14086.0,264.0,7037.0,0.0,207.0,281.0,0.0,372.0,0.0,2293.0,311.0,0.0,3320.0,0.0,0.0,469.0,0.0,-331.0,0.0,800.0 diff --git a/workflow/tests/base_results/results_simulations_loads.csv b/workflow/tests/base_results/results_simulations_loads.csv index 0e533f2396..4ae00a907e 100644 --- a/workflow/tests/base_results/results_simulations_loads.csv +++ b/workflow/tests/base_results/results_simulations_loads.csv @@ -173,6 +173,7 @@ base-foundation-conditioned-basement-slab-insulation.xml,21.252,0.0,14.498,9.071 base-foundation-conditioned-basement-wall-insulation.xml,21.692,0.0,12.247,9.071,0.615,0.0,0.0,0.0,3.896,3.946,0.554,6.333,0.695,10.933,-13.737,0.0,0.0,0.0,8.89,-0.17,5.314,0.0,0.782,0.0,5.174,-8.581,-2.695,0.0,0.128,-0.107,-0.003,1.448,0.052,-0.411,10.676,0.0,0.0,0.0,-6.448,-0.165,-0.779,-3.625,-0.103,0.0,2.881,7.0,1.812 base-foundation-conditioned-crawlspace.xml,17.752,0.0,10.388,9.178,0.616,0.0,0.0,0.0,4.115,3.879,0.545,5.201,0.683,10.579,-13.64,0.0,0.0,0.0,9.852,-0.141,3.728,0.0,0.78,0.0,0.0,-6.59,-1.583,0.0,0.209,-0.162,-0.01,1.937,0.042,-0.324,10.714,0.0,0.0,0.0,-3.832,-0.138,-0.585,-3.695,-0.106,0.0,0.0,5.406,1.062 base-foundation-multiple.xml,12.866,0.0,13.526,9.122,0.696,0.0,0.0,0.0,3.996,3.639,0.0,0.0,0.822,10.149,-9.933,0.0,0.0,4.484,0.0,-0.753,2.523,0.0,0.0,0.0,2.349,-3.446,-1.231,0.0,-0.342,-0.891,0.0,0.0,0.042,-0.726,14.035,0.0,0.0,-1.481,0.0,-0.75,-0.677,-3.119,0.0,0.0,1.992,4.365,1.415 +base-foundation-slab-exterior-horizontal-insulation.xml,10.119,0.0,11.281,9.178,0.607,0.0,0.0,0.0,4.046,3.699,0.0,0.0,0.772,10.185,-10.676,0.0,0.0,0.0,5.934,-0.513,2.109,0.0,0.728,0.0,0.33,-5.499,-1.299,0.0,-0.182,-0.642,0.0,0.0,0.067,-0.511,13.58,0.0,0.0,0.0,-4.267,-0.51,-0.462,-3.318,-0.208,0.0,0.125,6.518,1.347 base-foundation-slab.xml,10.577,0.0,12.163,9.178,0.607,0.0,0.0,0.0,4.055,3.706,0.0,0.0,0.766,10.177,-10.778,0.0,0.0,0.0,6.504,-0.494,2.118,0.0,0.732,0.0,0.345,-5.537,-1.313,0.0,-0.184,-0.646,0.0,0.0,0.058,-0.547,13.478,0.0,0.0,0.0,-3.094,-0.492,-0.46,-3.446,-0.203,0.0,0.135,6.479,1.333 base-foundation-unconditioned-basement-above-grade.xml,13.845,0.0,13.896,9.122,0.714,0.0,0.0,0.0,4.037,3.671,0.0,0.0,0.81,10.137,-10.206,0.0,0.0,5.23,0.0,-0.702,2.536,0.0,0.0,0.0,2.761,-3.477,-1.245,0.0,-0.283,-0.84,0.0,0.0,0.035,-0.785,13.763,0.0,0.0,-1.208,0.0,-0.698,-0.665,-3.103,0.0,0.0,2.246,4.334,1.401 base-foundation-unconditioned-basement-assembly-r.xml,11.864,0.0,11.993,9.122,0.713,0.0,0.0,0.0,3.985,3.603,0.0,0.0,0.812,10.077,-9.773,0.0,0.0,3.622,0.0,-0.781,2.5,0.0,0.0,0.0,2.126,-3.39,-1.202,0.0,-0.322,-0.848,0.0,0.0,0.071,-0.769,14.196,0.0,0.0,-2.907,0.0,-0.778,-0.697,-2.969,0.0,0.0,1.498,4.421,1.444 diff --git a/workflow/tests/base_results/results_simulations_misc.csv b/workflow/tests/base_results/results_simulations_misc.csv index 5cc31cfce0..14ef2c8bf6 100644 --- a/workflow/tests/base_results/results_simulations_misc.csv +++ b/workflow/tests/base_results/results_simulations_misc.csv @@ -173,6 +173,7 @@ base-foundation-conditioned-basement-slab-insulation.xml,0.0,0.0,1354.7,998.0,11 base-foundation-conditioned-basement-wall-insulation.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2085.8,3465.2,3465.2,23.904,18.554,0.0 base-foundation-conditioned-crawlspace.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1696.0,2769.8,2769.8,16.152,11.732,0.0 base-foundation-multiple.xml,0.0,0.0,1354.7,998.0,11171.5,2652.8,1669.5,3019.3,3019.3,16.101,15.954,0.0 +base-foundation-slab-exterior-horizontal-insulation.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1680.4,2832.3,2832.3,13.079,12.924,0.0 base-foundation-slab.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1676.6,2751.3,2751.3,13.31,13.371,0.0 base-foundation-unconditioned-basement-above-grade.xml,0.0,0.0,1354.7,998.0,11171.5,2652.8,1667.0,3013.6,3013.6,17.348,16.837,0.0 base-foundation-unconditioned-basement-assembly-r.xml,0.0,0.0,1354.7,998.0,11171.5,2652.8,1674.5,2788.9,2788.9,15.54,14.692,0.0 From 584eff2d03dff8c86d1d2f845fbcf051c81cd88e Mon Sep 17 00:00:00 2001 From: prsh5175 Date: Wed, 14 Aug 2024 16:02:39 -0600 Subject: [PATCH 34/41] Changelog updated. --- Changelog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Changelog.md b/Changelog.md index 700b81cba1..816d97b012 100644 --- a/Changelog.md +++ b/Changelog.md @@ -3,6 +3,7 @@ __New Features__ - Updates to HPXML v4.0-rc5. - Adds inputs for modeling skylight curbs and/or shafts. +- Adds exterior horizontal insulation to a slab or basement foundation. - Allows alternative infiltration input `AirInfiltrationMeasurement/LeakinessDescription`, in which the infiltration level is estimated using age of home, climate zone, foundation type, etc. - Central Fan Integrated Supply (CFIS) mechanical ventilation enhancements: - CFIS systems with no strategy to meet remainder of ventilation target (`CFISControls/AdditionalRuntimeOperatingMode="none"`). From 4be66fdaf6c0e808dc2304b6d2794a399501cb98 Mon Sep 17 00:00:00 2001 From: prsh5175 Date: Fri, 16 Aug 2024 11:18:50 -0600 Subject: [PATCH 35/41] Test commit. --- Changelog.md | 2 +- HPXMLtoOpenStudio/measure.xml | 22 +- HPXMLtoOpenStudio/tests/results_annual.csv | 43 + .../tests/results_design_load_details.csv | 10009 ++++++++++++++++ 4 files changed, 10058 insertions(+), 18 deletions(-) create mode 100644 HPXMLtoOpenStudio/tests/results_annual.csv create mode 100644 HPXMLtoOpenStudio/tests/results_design_load_details.csv diff --git a/Changelog.md b/Changelog.md index 816d97b012..6e4bd8870a 100644 --- a/Changelog.md +++ b/Changelog.md @@ -3,7 +3,7 @@ __New Features__ - Updates to HPXML v4.0-rc5. - Adds inputs for modeling skylight curbs and/or shafts. -- Adds exterior horizontal insulation to a slab or basement foundation. +- Adds exterior horizontal insulation to a slab or basement foundation. - Allows alternative infiltration input `AirInfiltrationMeasurement/LeakinessDescription`, in which the infiltration level is estimated using age of home, climate zone, foundation type, etc. - Central Fan Integrated Supply (CFIS) mechanical ventilation enhancements: - CFIS systems with no strategy to meet remainder of ventilation target (`CFISControls/AdditionalRuntimeOperatingMode="none"`). diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 149b9b4f30..eb572f4bdc 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 750796d0-c072-40f1-ab6a-2ed3d215d130 - 2024-08-12T22:41:49Z + a9c7edf9-0106-4839-b97a-a56bf9b358b8 + 2024-08-15T15:35:54Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -183,7 +183,7 @@ measure.rb rb script - 91E70775 + 3007E66D airflow.rb @@ -357,7 +357,7 @@ hpxml_schema/HPXML.xsd xsd resource - 6C78351F + 2A412FE7 hpxml_schema/README.md @@ -629,18 +629,6 @@ resource 93120E27 - - results_annual.json - json - test - 0F850D04 - - - results_design_load_details.json - json - test - 43478902 - test_airflow.rb rb @@ -729,7 +717,7 @@ test_validation.rb rb test - D243A782 + F4CCD040 test_water_heater.rb diff --git a/HPXMLtoOpenStudio/tests/results_annual.csv b/HPXMLtoOpenStudio/tests/results_annual.csv new file mode 100644 index 0000000000..2b324f912d --- /dev/null +++ b/HPXMLtoOpenStudio/tests/results_annual.csv @@ -0,0 +1,43 @@ +HVAC Capacity: Heating (Btu/h),36000.0 +HVAC Capacity: Cooling (Btu/h),24000.0 +HVAC Capacity: Heat Pump Backup (Btu/h),0.0 + +HVAC Design Temperature: Heating (F),6.8 +HVAC Design Temperature: Cooling (F),91.76 + +HVAC Design Load: Heating: Total (Btu/h),17248.0 +HVAC Design Load: Heating: Ducts (Btu/h),1976.0 +HVAC Design Load: Heating: Windows (Btu/h),7508.0 +HVAC Design Load: Heating: Skylights (Btu/h),0.0 +HVAC Design Load: Heating: Doors (Btu/h),575.0 +HVAC Design Load: Heating: Walls (Btu/h),2198.0 +HVAC Design Load: Heating: Roofs (Btu/h),0.0 +HVAC Design Load: Heating: Floors (Btu/h),509.0 +HVAC Design Load: Heating: Slabs (Btu/h),0.0 +HVAC Design Load: Heating: Ceilings (Btu/h),2171.0 +HVAC Design Load: Heating: Infiltration (Btu/h),2310.0 +HVAC Design Load: Heating: Ventilation (Btu/h),0.0 +HVAC Design Load: Heating: Piping (Btu/h),0.0 +HVAC Design Load: Cooling Sensible: Total (Btu/h),13584.0 +HVAC Design Load: Cooling Sensible: Ducts (Btu/h),0.0 +HVAC Design Load: Cooling Sensible: Windows (Btu/h),7037.0 +HVAC Design Load: Cooling Sensible: Skylights (Btu/h),0.0 +HVAC Design Load: Cooling Sensible: Doors (Btu/h),207.0 +HVAC Design Load: Cooling Sensible: Walls (Btu/h),281.0 +HVAC Design Load: Cooling Sensible: Roofs (Btu/h),0.0 +HVAC Design Load: Cooling Sensible: Floors (Btu/h),135.0 +HVAC Design Load: Cooling Sensible: Slabs (Btu/h),0.0 +HVAC Design Load: Cooling Sensible: Ceilings (Btu/h),2293.0 +HVAC Design Load: Cooling Sensible: Infiltration (Btu/h),311.0 +HVAC Design Load: Cooling Sensible: Ventilation (Btu/h),0.0 +HVAC Design Load: Cooling Sensible: Internal Gains (Btu/h),3320.0 +HVAC Design Load: Cooling Sensible: Blower Heat (Btu/h),0.0 +HVAC Design Load: Cooling Sensible: AED Excursion (Btu/h),0.0 +HVAC Design Load: Cooling Latent: Total (Btu/h),469.0 +HVAC Design Load: Cooling Latent: Ducts (Btu/h),0.0 +HVAC Design Load: Cooling Latent: Infiltration (Btu/h),-331.0 +HVAC Design Load: Cooling Latent: Ventilation (Btu/h),0.0 +HVAC Design Load: Cooling Latent: Internal Gains (Btu/h),800.0 + +HVAC Geothermal Loop: Borehole/Trench Count,0 +HVAC Geothermal Loop: Borehole/Trench Length (ft),0.0 diff --git a/HPXMLtoOpenStudio/tests/results_design_load_details.csv b/HPXMLtoOpenStudio/tests/results_design_load_details.csv new file mode 100644 index 0000000000..a2a77f207d --- /dev/null +++ b/HPXMLtoOpenStudio/tests/results_design_load_details.csv @@ -0,0 +1,10009 @@ +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,66.79,26.2 +Windows: Window2,E,66.79,76.5 +Windows: Window3,S,66.79,39.63 +Windows: Window4,W,66.79,76.5 +Doors: Door1,S,21.14,6.13 +Doors: Door2,N,21.14,6.13 +Above Grade Walls: RimJoist1,N,12.83,3.82 +Above Grade Walls: RimJoist2,E,12.83,3.82 +Above Grade Walls: RimJoist3,S,12.83,3.82 +Above Grade Walls: RimJoist4,W,12.83,3.82 +Above Grade Walls: Wall1,N,5.47,1.03 +Above Grade Walls: Wall2,E,5.47,1.03 +Above Grade Walls: Wall3,S,5.47,1.03 +Above Grade Walls: Wall4,W,5.47,1.03 +Above Grade Walls: FoundationWall1,N,47.37,4.33 +Above Grade Walls: FoundationWall2,E,47.37,4.33 +Above Grade Walls: FoundationWall3,S,47.37,4.33 +Above Grade Walls: FoundationWall4,W,47.37,4.33 +Below Grade Walls: FoundationWall1,N,10.42,0 +Below Grade Walls: FoundationWall2,E,10.42,0 +Below Grade Walls: FoundationWall3,S,10.42,0 +Below Grade Walls: FoundationWall4,W,10.42,0 +Ceilings: Floor1,,3.48,1.77 +Floors: Slab1,,1.59,0 +Infiltration,,,,294,138 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,90.0,,,6011,2358 +Windows: Window2,45.0,,,3005,3442 +Windows: Window3,90.0,,,6011,3567 +Windows: Window4,45.0,,,3005,3442 +Doors: Door1,20.0,,,423,123 +Doors: Door2,20.0,,,423,123 +Above Grade Walls: RimJoist1,42.7,,,548,163 +Above Grade Walls: RimJoist2,20.3,,,260,78 +Above Grade Walls: RimJoist3,42.7,,,548,163 +Above Grade Walls: RimJoist4,20.3,,,260,78 +Above Grade Walls: Wall1,366.0,,,2001,375 +Above Grade Walls: Wall2,171.0,,,935,175 +Above Grade Walls: Wall3,326.0,,,1782,334 +Above Grade Walls: Wall4,171.0,,,935,175 +Above Grade Walls: FoundationWall1,38.01,,,1801,165 +Above Grade Walls: FoundationWall2,18.01,,,853,78 +Above Grade Walls: FoundationWall3,38.01,,,1801,165 +Above Grade Walls: FoundationWall4,18.01,,,853,78 +Below Grade Walls: FoundationWall1,375.19,,,3909,0 +Below Grade Walls: FoundationWall2,177.79,,,1852,0 +Below Grade Walls: FoundationWall3,375.19,,,3909,0 +Below Grade Walls: FoundationWall4,177.79,,,1852,0 +Ceilings: Floor1,1539.0,,,5362,2721 +Floors: Slab1,1539.0,,,2448,0 +Infiltration,,,1.0,16862,1559,-2252 +Internal Gains,,,,,3320,800 +Ducts,,,,0,0,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,123 +Total,,,,67650,22805,-1452 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,5237,7923,10457,12606,14242,15685,16680,16974,16466,15551,13584,10146 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,78.84,0 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,,150,,11827,0 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,1699,0,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,28288,13449,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Doors: Door3,N,13.23,4.04 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: Wall3,,2.53,0.77 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Floor2,,1.48,0.45 +Floors: Slab1,,1.29,0 +Infiltration,,,,56,29 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Doors: Door3,4.0,,,53,16 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: Wall3,316.0,,,800,244 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Floor2,400.0,,,592,181 +Floors: Slab1,950.0,,,1223,0 +Infiltration,,,1.0,3251,438,-465 +Internal Gains,,,,,3320,800 +Ducts,,,,8696,6148,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,31787,20332,335 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,2.6,0.69 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,3507,930 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,4978,256,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,23247,14636,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,4.14,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.75,0 +Infiltration,,,,60,30 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,450.0,,,1864,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,2362,0 +Infiltration,,,1.0,3465,467,-496 +Internal Gains,,,,,3320,800 +Ducts,,,,0,0,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,21371,13772,304 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,3.38,0.36 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,4563,488 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,8549,6153,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,27874,20090,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Windows: Window5,N,20.86,9.87 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Above Grade Walls: FoundationWall2,,6.07,0.84 +Above Grade Walls: FoundationWall3,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Below Grade Walls: FoundationWall2,,4.14,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.74,0 +Infiltration,,,,103,53 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Windows: Window5,20.0,,,417,197 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,60.0,,,364,51 +Above Grade Walls: FoundationWall2,150.0,,,910,126 +Above Grade Walls: FoundationWall3,220.0,,,1335,185 +Below Grade Walls: FoundationWall1,420.0,,,1397,0 +Below Grade Walls: FoundationWall2,90.0,,,373,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,2345,0 +Infiltration,,,1.0,5981,808,-858 +Internal Gains,,,,,3320,800 +Ducts,,,,8774,6132,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,34665,20678,-58 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7276,8656,9745,10155,10325,11072,11641,11551,10897,10070,8227,3439 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,2.63,0.7 +Floors: Floor3,,2.62,0.69 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,675.0,,,1773,470 +Floors: Floor3,675.0,,,1766,468 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,4969,246,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,23269,14634,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,41.66,6.61 +Above Grade Walls: FoundationWall2,,6.07,0.84 +Above Grade Walls: FoundationWall3,,41.66,6.61 +Above Grade Walls: FoundationWall4,,6.07,0.84 +Below Grade Walls: FoundationWall1,,9.24,0 +Below Grade Walls: FoundationWall2,,3.33,0 +Below Grade Walls: FoundationWall3,,14.85,0 +Below Grade Walls: FoundationWall4,,4.14,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.6,0 +Floors: Slab2,,1.12,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,20.0,,,833,132 +Above Grade Walls: FoundationWall2,30.0,,,182,25 +Above Grade Walls: FoundationWall3,200.0,,,8332,1321 +Above Grade Walls: FoundationWall4,250.0,,,1517,211 +Below Grade Walls: FoundationWall1,140.0,,,1293,0 +Below Grade Walls: FoundationWall2,210.0,,,698,0 +Below Grade Walls: FoundationWall3,120.0,,,1782,0 +Below Grade Walls: FoundationWall4,150.0,,,621,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1150.0,,,1842,0 +Floors: Slab2,200.0,,,224,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8966,6155,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,43682,21645,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,S,20.86,15.19 +Windows: Window3,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.43,0 +Infiltration,,,,89,46 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,70.5,,,1470,649 +Windows: Window2,70.5,,,1470,1071 +Windows: Window3,105.8,,,2207,3234 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,66.1,,,182,23 +Above Grade Walls: Wall1,1084.9,,,2981,381 +Above Grade Walls: FoundationWall1,85.74,,,520,72 +Below Grade Walls: FoundationWall1,600.16,,,1996,0 +Ceilings: Floor1,900.0,,,1447,1529 +Floors: Slab1,900.0,,,1286,0 +Infiltration,,,1.0,5144,699,-743 +Internal Gains,,,,,3320,800 +Ducts,,,,7510,5094,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,1573 +Total,,,,26789,17853,57 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,2188,3310,4613,5685,6350,7591,9053,9950,10107,9626,7589,2709 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: Wall2,,2.75,0.35 +Above Grade Walls: Wall3,,2.53,0.77 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,1.48,0.45 +Floors: Slab2,,1.29,0 +Infiltration,,,,124,63 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,216.0,,,4505,1990 +Windows: Window2,144.0,,,3003,4402 +Windows: Window3,216.0,,,4505,3281 +Windows: Window4,144.0,,,3003,4402 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: RimJoist2,116.0,,,319,41 +Above Grade Walls: Wall2,1320.0,,,3627,463 +Above Grade Walls: Wall3,320.0,,,810,247 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,400.0,,,592,181 +Floors: Slab2,950.0,,,1223,0 +Infiltration,,,1.0,7199,972,-1033 +Internal Gains,,,,,3320,800 +Ducts,,,,7753,5061,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,44005,27026,-233 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,14192,16851,18936,19673,19954,21416,22553,22391,21130,19478,15746,6612 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Windows: Window5,N,20.86,9.87 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Above Grade Walls: FoundationWall2,,6.07,0.84 +Above Grade Walls: FoundationWall3,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Below Grade Walls: FoundationWall2,,4.14,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.74,0 +Infiltration,,,,103,53 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Windows: Window5,20.0,,,417,197 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,60.0,,,364,51 +Above Grade Walls: FoundationWall2,150.0,,,910,126 +Above Grade Walls: FoundationWall3,220.0,,,1335,185 +Below Grade Walls: FoundationWall1,420.0,,,1397,0 +Below Grade Walls: FoundationWall2,90.0,,,373,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,2345,0 +Infiltration,,,1.0,5981,808,-858 +Internal Gains,,,,,3320,800 +Ducts,,,,8774,6132,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,34665,20678,-58 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7276,8656,9745,10155,10325,11072,11641,11551,10897,10070,8227,3439 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Windows: Window5,N,20.86,9.87 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Above Grade Walls: FoundationWall2,,6.07,0.84 +Above Grade Walls: FoundationWall3,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Below Grade Walls: FoundationWall2,,4.14,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.74,0 +Floors: Slab2,,1.74,0 +Floors: Slab3,,1.74,0 +Infiltration,,,,103,53 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Windows: Window5,20.0,,,417,197 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,60.0,,,364,51 +Above Grade Walls: FoundationWall2,150.0,,,910,126 +Above Grade Walls: FoundationWall3,220.0,,,1335,185 +Below Grade Walls: FoundationWall1,420.0,,,1397,0 +Below Grade Walls: FoundationWall2,90.0,,,373,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,450.0,,,782,0 +Floors: Slab2,450.0,,,782,0 +Floors: Slab3,450.0,,,782,0 +Infiltration,,,1.0,5981,808,-858 +Internal Gains,,,,,3320,800 +Ducts,,,,8774,6132,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,34665,20678,-58 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7276,8656,9745,10155,10325,11072,11641,11551,10897,10070,8227,3439 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,3.26,0.86 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,4401,1167 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,1740,484,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,20902,15100,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,2.6,0.69 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,3513,932 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,6583,1882,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,24858,16262,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,1.61,0.43 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,2172,576 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,7412,2144,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,24346,16169,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor4,,1.61,1.7 +Floors: Floor1,,632.0,67.6 +Floors: Floor2,,19.75,2.11 +Floors: Floor3,,7.8,0.83 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor4,1350.0,,,2171,2293 +Floors: Floor1,450.0,,,284400,30420 +Floors: Floor2,450.0,,,8888,951 +Floors: Floor3,450.0,,,3511,376 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,9595,6384,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,321156,51580,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor4,,1.61,1.7 +Floors: Floor1,,12.64,1.35 +Floors: Floor2,,19.75,2.11 +Floors: Floor3,,7.8,0.83 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor4,1350.0,,,2171,2293 +Floors: Floor1,450.0,,,5688,608 +Floors: Floor2,450.0,,,8888,951 +Floors: Floor3,450.0,,,3511,376 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,8922,6171,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,41771,21555,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor4,,1.61,1.7 +Floors: Floor1,,3.16,0.34 +Floors: Floor2,,19.75,2.11 +Floors: Floor3,,7.8,0.83 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor4,1350.0,,,2171,2293 +Floors: Floor1,450.0,,,1422,152 +Floors: Floor2,450.0,,,8888,951 +Floors: Floor3,450.0,,,3511,376 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,8832,6165,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,37415,21093,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor4,,1.61,1.7 +Floors: Floor1,,3.16,0.34 +Floors: Floor2,,632.0,67.6 +Floors: Floor3,,7.8,0.83 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor4,1350.0,,,2171,2293 +Floors: Floor1,450.0,,,1422,152 +Floors: Floor2,450.0,,,284400,30420 +Floors: Floor3,450.0,,,3511,376 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,9602,6383,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,313698,50780,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor4,,1.61,1.7 +Floors: Floor1,,3.16,0.34 +Floors: Floor2,,12.64,1.35 +Floors: Floor3,,7.8,0.83 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor4,1350.0,,,2171,2293 +Floors: Floor1,450.0,,,1422,152 +Floors: Floor2,450.0,,,5688,608 +Floors: Floor3,450.0,,,3511,376 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,8760,6161,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,34144,20746,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor4,,1.61,1.7 +Floors: Floor1,,3.16,0.34 +Floors: Floor2,,3.16,0.34 +Floors: Floor3,,7.8,0.83 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor4,1350.0,,,2171,2293 +Floors: Floor1,450.0,,,1422,152 +Floors: Floor2,450.0,,,1422,152 +Floors: Floor3,450.0,,,3511,376 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,8621,6155,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,29738,20284,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor4,,1.61,1.7 +Floors: Floor1,,3.16,0.34 +Floors: Floor2,,3.16,0.34 +Floors: Floor3,,632.0,67.6 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor4,1350.0,,,2171,2293 +Floors: Floor1,450.0,,,1422,152 +Floors: Floor2,450.0,,,1422,152 +Floors: Floor3,450.0,,,284400,30420 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,9602,6383,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,311608,50556,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor4,,1.61,1.7 +Floors: Floor1,,3.16,0.34 +Floors: Floor2,,3.16,0.34 +Floors: Floor3,,12.64,1.35 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor4,1350.0,,,2171,2293 +Floors: Floor1,450.0,,,1422,152 +Floors: Floor2,450.0,,,1422,152 +Floors: Floor3,450.0,,,5688,608 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,8702,6158,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,31996,20520,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor4,,1.61,1.7 +Floors: Floor1,,3.16,0.34 +Floors: Floor2,,3.16,0.34 +Floors: Floor3,,3.16,0.34 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor4,1350.0,,,2171,2293 +Floors: Floor1,450.0,,,1422,152 +Floors: Floor2,450.0,,,1422,152 +Floors: Floor3,450.0,,,1422,152 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,8537,6152,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,27565,20058,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,31.92,72.73 +Floors: Floor1,,1.66,0.44 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,43092,98183 +Floors: Floor1,1350.0,,,2246,596 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,8064,2248,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,65993,112182,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,12.64,13.35 +Floors: Floor1,,1.66,0.44 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,17064,18025 +Floors: Floor1,1350.0,,,2246,596 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,7803,2160,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,39704,31937,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,3.16,3.34 +Floors: Floor1,,1.66,0.44 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,4266,4506 +Floors: Floor1,1350.0,,,2246,596 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,7482,2144,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,26585,18402,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,83.82,109.68 +Ceilings: Floor2,,2.62,3.43 +Ceilings: Floor3,,1.03,1.35 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,450.0,,,37720,49358 +Ceilings: Floor2,450.0,,,1179,1542 +Ceilings: Floor3,450.0,,,466,609 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,5211,2052,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,65935,65196,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,12.64,13.35 +Ceilings: Floor2,,19.75,20.86 +Ceilings: Floor3,,7.8,8.24 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,450.0,,,5688,6008 +Ceilings: Floor2,450.0,,,8888,9388 +Ceilings: Floor3,450.0,,,3511,3709 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,9035,6287,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,48481,37026,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,3.16,3.34 +Ceilings: Floor2,,19.75,20.86 +Ceilings: Floor3,,7.8,8.24 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,450.0,,,1422,1502 +Ceilings: Floor2,450.0,,,8888,9388 +Ceilings: Floor3,450.0,,,3511,3709 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8973,6247,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,44154,32480,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,0.43,0.56 +Ceilings: Floor2,,85.69,111.02 +Ceilings: Floor3,,1.06,1.37 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,450.0,,,193,250 +Ceilings: Floor2,450.0,,,38562,49957 +Ceilings: Floor3,450.0,,,476,617 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,5224,2062,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,65814,64520,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,3.16,3.34 +Ceilings: Floor2,,12.64,13.35 +Ceilings: Floor3,,7.8,8.24 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,450.0,,,1422,1502 +Ceilings: Floor2,450.0,,,5688,6008 +Ceilings: Floor3,450.0,,,3511,3709 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8906,6249,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,40886,29102,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,3.16,3.34 +Ceilings: Floor2,,3.16,3.34 +Ceilings: Floor3,,7.8,8.24 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,450.0,,,1422,1502 +Ceilings: Floor2,450.0,,,1422,1502 +Ceilings: Floor3,450.0,,,3511,3709 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8811,6182,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,36525,24528,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,0.43,0.56 +Ceilings: Floor2,,0.43,0.56 +Ceilings: Floor3,,86.23,111.4 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,450.0,,,194,251 +Ceilings: Floor2,450.0,,,194,251 +Ceilings: Floor3,450.0,,,38804,50129 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,5228,2065,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,65780,64330,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,3.16,3.34 +Ceilings: Floor2,,3.16,3.34 +Ceilings: Floor3,,12.64,13.35 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,450.0,,,1422,1502 +Ceilings: Floor2,450.0,,,1422,1502 +Ceilings: Floor3,450.0,,,5688,6008 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8862,6233,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,38753,26879,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,3.16,3.34 +Ceilings: Floor2,,3.16,3.34 +Ceilings: Floor3,,3.16,3.34 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,450.0,,,1422,1502 +Ceilings: Floor2,450.0,,,1422,1502 +Ceilings: Floor3,450.0,,,1422,1502 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8767,6164,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,34392,22304,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,18.56,7.87 +Windows: Window2,E,18.56,24.95 +Windows: Window3,S,18.56,12.65 +Windows: Window4,W,18.56,24.95 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2004,849 +Windows: Window2,72.0,,,1336,1796 +Windows: Window3,108.0,,,2004,1366 +Windows: Window4,72.0,,,1336,1796 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8684,6080,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,31386,18778,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,5654,6759,7635,7968,8113,8724,9194,9135,8625,7948,6430,2743 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,11.71 +Windows: Window3,S,20.86,0.57 +Windows: Window4,W,20.86,0.0 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,843 +Windows: Window3,108.0,,,2252,61 +Windows: Window4,72.0,,,1502,0 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,5986,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,14775,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,2393,2623,2638,2483,2402,2464,2458,2387,2204,2107,2102,924 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,9.57,7.09 +Windows: Window2,E,9.57,10.65 +Windows: Window3,S,9.57,0.32 +Windows: Window4,W,9.57,0.0 +Doors: Door1,S,6.59,4.63 +Above Grade Walls: RimJoist1,,1.26,0.25 +Above Grade Walls: Wall1,,1.26,0.25 +Above Grade Walls: FoundationWall1,,2.78,0.61 +Below Grade Walls: FoundationWall1,,1.53,0 +Ceilings: Floor1,,0.74,1.64 +Floors: Slab1,,0.59,0 +Infiltration,,,,68,35 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,1034,765 +Windows: Window2,72.0,,,689,767 +Windows: Window3,108.0,,,1034,34 +Windows: Window4,72.0,,,689,0 +Doors: Door1,40.0,,,264,185 +Above Grade Walls: RimJoist1,115.6,,,146,29 +Above Grade Walls: Wall1,800.0,,,1009,198 +Above Grade Walls: FoundationWall1,150.0,,,418,92 +Below Grade Walls: FoundationWall1,1050.0,,,1602,0 +Ceilings: Floor1,1350.0,,,996,2212 +Floors: Slab1,1350.0,,,798,0 +Infiltration,,,1.0,2145,364,38 +Internal Gains,,,,,3320,800 +Ducts,,,,6515,6623,27 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,17338,14589,865 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,2441,2612,2563,2345,2211,2231,2196,2110,1928,1860,1909,704 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,14.56,11.63 +Windows: Window2,E,14.56,33.12 +Windows: Window3,S,14.56,15.26 +Windows: Window4,W,14.56,33.12 +Doors: Door1,S,10.03,7.82 +Above Grade Walls: Wall1,,1.92,0.86 +Ceilings: Floor1,,5.07,6.71 +Floors: Slab1,,55.04,0 +Infiltration,,,,37,22 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,1572,1256 +Windows: Window2,72.0,,,1048,2385 +Windows: Window3,108.0,,,1572,1648 +Windows: Window4,72.0,,,1048,2385 +Doors: Door1,40.0,,,401,313 +Above Grade Walls: Wall1,800.0,,,1535,686 +Ceilings: Floor1,1350.0,,,6846,9065 +Floors: Slab1,,150,,8256,0 +Infiltration,,,1.0,1745,565,391 +Internal Gains,,,,,3320,800 +Ducts,,,,1422,68,438 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,25447,21691,1628 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,8469,9457,10086,10083,9995,10678,11354,11490,11075,10410,8733,4291 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,14.56,11.63 +Windows: Window2,E,14.56,33.12 +Windows: Window3,S,14.56,15.26 +Windows: Window4,W,14.56,33.12 +Doors: Door1,S,10.03,7.82 +Above Grade Walls: Wall1,,1.92,0.86 +Ceilings: Floor1,,5.07,6.71 +Floors: Slab1,,55.04,0 +Infiltration,,,,37,22 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,1572,1256 +Windows: Window2,72.0,,,1048,2385 +Windows: Window3,108.0,,,1572,1648 +Windows: Window4,72.0,,,1048,2385 +Doors: Door1,40.0,,,401,313 +Above Grade Walls: Wall1,800.0,,,1535,686 +Ceilings: Floor1,1350.0,,,6846,9065 +Floors: Slab1,,150,,8256,0 +Infiltration,,,1.0,1745,565,391 +Internal Gains,,,,,3320,800 +Ducts,,,,1422,68,438 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,25447,21691,1628 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,8469,9457,10086,10083,9995,10678,11354,11490,11075,10410,8733,4291 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,14.56,11.63 +Windows: Window2,E,14.56,33.12 +Windows: Window3,S,14.56,15.26 +Windows: Window4,W,14.56,33.12 +Doors: Door1,S,10.03,7.82 +Above Grade Walls: Wall1,,1.92,0.86 +Ceilings: Floor1,,1.9,2.52 +Floors: Slab1,,55.04,0 +Infiltration,,,,37,22 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,1572,1256 +Windows: Window2,72.0,,,1048,2385 +Windows: Window3,108.0,,,1572,1648 +Windows: Window4,72.0,,,1048,2385 +Doors: Door1,40.0,,,401,313 +Above Grade Walls: Wall1,800.0,,,1535,686 +Ceilings: Floor1,1350.0,,,2570,3397 +Floors: Slab1,,150,,8256,0 +Infiltration,,,1.0,1745,565,391 +Internal Gains,,,,,3320,800 +Ducts,,,,1398,73,438 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,21146,16029,1628 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,8469,9457,10086,10083,9995,10678,11354,11490,11075,10410,8733,4291 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,14.56,11.63 +Windows: Window2,E,14.56,33.12 +Windows: Window3,S,14.56,15.26 +Windows: Window4,W,14.56,33.12 +Doors: Door1,S,10.03,7.82 +Above Grade Walls: Wall1,,1.92,0.86 +Ceilings: Floor1,,22.31,72.76 +Floors: Slab1,,55.04,0 +Infiltration,,,,37,22 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,1572,1256 +Windows: Window2,72.0,,,1048,2385 +Windows: Window3,108.0,,,1572,1648 +Windows: Window4,72.0,,,1048,2385 +Doors: Door1,40.0,,,401,313 +Above Grade Walls: Wall1,800.0,,,1535,686 +Ceilings: Floor1,1350.0,,,30119,98220 +Floors: Slab1,,150,,8256,0 +Infiltration,,,1.0,1745,565,391 +Internal Gains,,,,,3320,800 +Ducts,,,,1480,55,438 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,48778,110833,1628 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,8469,9457,10086,10083,9995,10678,11354,11490,11075,10410,8733,4291 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,14.56,11.63 +Windows: Window2,E,14.56,33.12 +Windows: Window3,S,14.56,15.26 +Windows: Window4,W,14.56,33.12 +Doors: Door1,S,10.03,7.82 +Above Grade Walls: Wall1,,1.92,0.86 +Ceilings: Floor1,,8.82,15.68 +Floors: Slab1,,55.04,0 +Infiltration,,,,37,22 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,1572,1256 +Windows: Window2,72.0,,,1048,2385 +Windows: Window3,108.0,,,1572,1648 +Windows: Window4,72.0,,,1048,2385 +Doors: Door1,40.0,,,401,313 +Above Grade Walls: Wall1,800.0,,,1535,686 +Ceilings: Floor1,1350.0,,,11912,21173 +Floors: Slab1,,150,,8256,0 +Infiltration,,,1.0,1745,565,391 +Internal Gains,,,,,3320,800 +Ducts,,,,1442,62,438 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,30533,33793,1628 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,8469,9457,10086,10083,9995,10678,11354,11490,11075,10410,8733,4291 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,14.56,11.63 +Windows: Window2,E,14.56,33.12 +Windows: Window3,S,14.56,15.26 +Windows: Window4,W,14.56,33.12 +Doors: Door1,S,10.03,7.82 +Above Grade Walls: Wall1,,1.92,0.86 +Ceilings: Floor1,,2.21,3.92 +Floors: Slab1,,55.04,0 +Infiltration,,,,37,22 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,1572,1256 +Windows: Window2,72.0,,,1048,2385 +Windows: Window3,108.0,,,1572,1648 +Windows: Window4,72.0,,,1048,2385 +Doors: Door1,40.0,,,401,313 +Above Grade Walls: Wall1,800.0,,,1535,686 +Ceilings: Floor1,1350.0,,,2978,5293 +Floors: Slab1,,150,,8256,0 +Infiltration,,,1.0,1745,565,391 +Internal Gains,,,,,3320,800 +Ducts,,,,1400,71,438 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,21557,17922,1628 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,8469,9457,10086,10083,9995,10678,11354,11490,11075,10410,8733,4291 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,632.0,233.0 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,73059,26935 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,9401,6369,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,105673,47190,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,12.64,4.66 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,1461,539 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8741,6141,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,33415,20566,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,3.16,0.44 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,365,51 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8710,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32288,20050,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,632.0,297.6 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,6952,3274 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8932,6083,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,42328,18907,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,12.64,5.95 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,139,65 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8781,5999,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,35363,15614,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,3.16,0.61 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,35,7 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8778,6013,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,35256,15569,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,3.16,0.61 +Above Grade Walls: RimJoist2,,632.0,233.0 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,35,7 +Above Grade Walls: RimJoist2,11.0,,,6952,2563 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8933,6087,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,42332,18203,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,3.16,0.61 +Above Grade Walls: RimJoist2,,12.64,4.66 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,35,7 +Above Grade Walls: RimJoist2,11.0,,,139,51 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8781,5999,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,35368,15602,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,3.16,0.61 +Above Grade Walls: RimJoist2,,3.16,0.44 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,35,7 +Above Grade Walls: RimJoist2,11.0,,,35,5 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8778,6013,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,35261,15570,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,3.16,0.61 +Above Grade Walls: RimJoist2,,3.16,0.44 +Above Grade Walls: RimJoist3,,632.0,93.1 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,35,7 +Above Grade Walls: RimJoist2,11.0,,,35,5 +Above Grade Walls: RimJoist3,11.0,,,6952,1024 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8933,6045,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,42337,16625,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,3.16,0.61 +Above Grade Walls: RimJoist2,,3.16,0.44 +Above Grade Walls: RimJoist3,,12.64,1.86 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,35,7 +Above Grade Walls: RimJoist2,11.0,,,35,5 +Above Grade Walls: RimJoist3,11.0,,,139,20 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8781,6014,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,35373,15589,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,3.16,0.61 +Above Grade Walls: RimJoist2,,3.16,0.44 +Above Grade Walls: RimJoist3,,3.16,0.2 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,35,7 +Above Grade Walls: RimJoist2,11.0,,,35,5 +Above Grade Walls: RimJoist3,11.0,,,35,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8779,6013,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,35266,15571,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,3.16,0.61 +Above Grade Walls: RimJoist2,,3.16,0.44 +Above Grade Walls: RimJoist3,,3.16,0.2 +Above Grade Walls: RimJoist4,,632.0,297.6 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,35,7 +Above Grade Walls: RimJoist2,11.0,,,35,5 +Above Grade Walls: RimJoist3,11.0,,,35,2 +Above Grade Walls: RimJoist4,11.0,,,6952,3274 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8933,6084,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,42342,18909,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,3.16,0.61 +Above Grade Walls: RimJoist2,,3.16,0.44 +Above Grade Walls: RimJoist3,,3.16,0.2 +Above Grade Walls: RimJoist4,,12.64,5.95 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,35,7 +Above Grade Walls: RimJoist2,11.0,,,35,5 +Above Grade Walls: RimJoist3,11.0,,,35,2 +Above Grade Walls: RimJoist4,11.0,,,139,65 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8782,5999,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,35377,15617,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,3.16,0.61 +Above Grade Walls: RimJoist2,,3.16,0.44 +Above Grade Walls: RimJoist3,,3.16,0.2 +Above Grade Walls: RimJoist4,,3.16,0.61 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,35,7 +Above Grade Walls: RimJoist2,11.0,,,35,5 +Above Grade Walls: RimJoist3,11.0,,,35,2 +Above Grade Walls: RimJoist4,11.0,,,35,7 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8779,6013,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,35270,15572,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,3.16,0.61 +Above Grade Walls: RimJoist2,,3.16,0.44 +Above Grade Walls: RimJoist3,,3.16,0.2 +Above Grade Walls: RimJoist4,,3.16,0.61 +Above Grade Walls: RimJoist5,,632.0,297.6 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,35,7 +Above Grade Walls: RimJoist2,11.0,,,35,5 +Above Grade Walls: RimJoist3,11.0,,,35,2 +Above Grade Walls: RimJoist4,11.0,,,35,7 +Above Grade Walls: RimJoist5,11.0,,,6952,3274 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8933,6084,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,42346,18911,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,3.16,0.61 +Above Grade Walls: RimJoist2,,3.16,0.44 +Above Grade Walls: RimJoist3,,3.16,0.2 +Above Grade Walls: RimJoist4,,3.16,0.61 +Above Grade Walls: RimJoist5,,12.64,5.95 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,35,7 +Above Grade Walls: RimJoist2,11.0,,,35,5 +Above Grade Walls: RimJoist3,11.0,,,35,2 +Above Grade Walls: RimJoist4,11.0,,,35,7 +Above Grade Walls: RimJoist5,11.0,,,139,65 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8782,5999,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,35382,15618,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,3.16,0.61 +Above Grade Walls: RimJoist2,,3.16,0.44 +Above Grade Walls: RimJoist3,,3.16,0.2 +Above Grade Walls: RimJoist4,,3.16,0.61 +Above Grade Walls: RimJoist5,,3.16,0.61 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,35,7 +Above Grade Walls: RimJoist2,11.0,,,35,5 +Above Grade Walls: RimJoist3,11.0,,,35,2 +Above Grade Walls: RimJoist4,11.0,,,35,7 +Above Grade Walls: RimJoist5,11.0,,,35,7 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8779,6013,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,35275,15573,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,3.16,0.61 +Above Grade Walls: RimJoist2,,3.16,0.44 +Above Grade Walls: RimJoist3,,3.16,0.2 +Above Grade Walls: RimJoist4,,3.16,0.61 +Above Grade Walls: RimJoist5,,3.16,0.61 +Above Grade Walls: RimJoist6,,632.0,164.6 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,35,7 +Above Grade Walls: RimJoist2,11.0,,,35,5 +Above Grade Walls: RimJoist3,11.0,,,35,2 +Above Grade Walls: RimJoist4,11.0,,,35,7 +Above Grade Walls: RimJoist5,11.0,,,35,7 +Above Grade Walls: RimJoist6,11.0,,,6952,1811 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8933,6053,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,42351,17422,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,3.16,0.61 +Above Grade Walls: RimJoist2,,3.16,0.44 +Above Grade Walls: RimJoist3,,3.16,0.2 +Above Grade Walls: RimJoist4,,3.16,0.61 +Above Grade Walls: RimJoist5,,3.16,0.61 +Above Grade Walls: RimJoist6,,12.64,3.29 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,35,7 +Above Grade Walls: RimJoist2,11.0,,,35,5 +Above Grade Walls: RimJoist3,11.0,,,35,2 +Above Grade Walls: RimJoist4,11.0,,,35,7 +Above Grade Walls: RimJoist5,11.0,,,35,7 +Above Grade Walls: RimJoist6,11.0,,,139,36 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8782,6014,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,35387,15608,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,3.16,0.61 +Above Grade Walls: RimJoist2,,3.16,0.44 +Above Grade Walls: RimJoist3,,3.16,0.2 +Above Grade Walls: RimJoist4,,3.16,0.61 +Above Grade Walls: RimJoist5,,3.16,0.61 +Above Grade Walls: RimJoist6,,3.16,0.25 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,35,7 +Above Grade Walls: RimJoist2,11.0,,,35,5 +Above Grade Walls: RimJoist3,11.0,,,35,2 +Above Grade Walls: RimJoist4,11.0,,,35,7 +Above Grade Walls: RimJoist5,11.0,,,35,7 +Above Grade Walls: RimJoist6,11.0,,,35,3 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8779,6013,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,35280,15574,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,3.16,0.61 +Above Grade Walls: RimJoist2,,3.16,0.44 +Above Grade Walls: RimJoist3,,3.16,0.2 +Above Grade Walls: RimJoist4,,3.16,0.61 +Above Grade Walls: RimJoist5,,3.16,0.61 +Above Grade Walls: RimJoist6,,3.16,0.25 +Above Grade Walls: RimJoist7,,632.0,233.0 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,35,7 +Above Grade Walls: RimJoist2,11.0,,,35,5 +Above Grade Walls: RimJoist3,11.0,,,35,2 +Above Grade Walls: RimJoist4,11.0,,,35,7 +Above Grade Walls: RimJoist5,11.0,,,35,7 +Above Grade Walls: RimJoist6,11.0,,,35,3 +Above Grade Walls: RimJoist7,11.0,,,6952,2563 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8933,6087,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,42355,18207,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,3.16,0.61 +Above Grade Walls: RimJoist2,,3.16,0.44 +Above Grade Walls: RimJoist3,,3.16,0.2 +Above Grade Walls: RimJoist4,,3.16,0.61 +Above Grade Walls: RimJoist5,,3.16,0.61 +Above Grade Walls: RimJoist6,,3.16,0.25 +Above Grade Walls: RimJoist7,,12.64,4.66 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,35,7 +Above Grade Walls: RimJoist2,11.0,,,35,5 +Above Grade Walls: RimJoist3,11.0,,,35,2 +Above Grade Walls: RimJoist4,11.0,,,35,7 +Above Grade Walls: RimJoist5,11.0,,,35,7 +Above Grade Walls: RimJoist6,11.0,,,35,3 +Above Grade Walls: RimJoist7,11.0,,,139,51 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8782,5999,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,35391,15607,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,3.16,0.61 +Above Grade Walls: RimJoist2,,3.16,0.44 +Above Grade Walls: RimJoist3,,3.16,0.2 +Above Grade Walls: RimJoist4,,3.16,0.61 +Above Grade Walls: RimJoist5,,3.16,0.61 +Above Grade Walls: RimJoist6,,3.16,0.25 +Above Grade Walls: RimJoist7,,3.16,0.44 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,35,7 +Above Grade Walls: RimJoist2,11.0,,,35,5 +Above Grade Walls: RimJoist3,11.0,,,35,2 +Above Grade Walls: RimJoist4,11.0,,,35,7 +Above Grade Walls: RimJoist5,11.0,,,35,7 +Above Grade Walls: RimJoist6,11.0,,,35,3 +Above Grade Walls: RimJoist7,11.0,,,35,5 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8779,6013,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,35284,15575,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,3.16,0.61 +Above Grade Walls: RimJoist2,,3.16,0.44 +Above Grade Walls: RimJoist3,,3.16,0.2 +Above Grade Walls: RimJoist4,,3.16,0.61 +Above Grade Walls: RimJoist5,,3.16,0.61 +Above Grade Walls: RimJoist6,,3.16,0.25 +Above Grade Walls: RimJoist7,,3.16,0.44 +Above Grade Walls: RimJoist8,,632.0,297.6 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,35,7 +Above Grade Walls: RimJoist2,11.0,,,35,5 +Above Grade Walls: RimJoist3,11.0,,,35,2 +Above Grade Walls: RimJoist4,11.0,,,35,7 +Above Grade Walls: RimJoist5,11.0,,,35,7 +Above Grade Walls: RimJoist6,11.0,,,35,3 +Above Grade Walls: RimJoist7,11.0,,,35,5 +Above Grade Walls: RimJoist8,11.0,,,6952,3274 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8933,6084,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,42360,18913,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,3.16,0.61 +Above Grade Walls: RimJoist2,,3.16,0.44 +Above Grade Walls: RimJoist3,,3.16,0.2 +Above Grade Walls: RimJoist4,,3.16,0.61 +Above Grade Walls: RimJoist5,,3.16,0.61 +Above Grade Walls: RimJoist6,,3.16,0.25 +Above Grade Walls: RimJoist7,,3.16,0.44 +Above Grade Walls: RimJoist8,,12.64,5.95 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,35,7 +Above Grade Walls: RimJoist2,11.0,,,35,5 +Above Grade Walls: RimJoist3,11.0,,,35,2 +Above Grade Walls: RimJoist4,11.0,,,35,7 +Above Grade Walls: RimJoist5,11.0,,,35,7 +Above Grade Walls: RimJoist6,11.0,,,35,3 +Above Grade Walls: RimJoist7,11.0,,,35,5 +Above Grade Walls: RimJoist8,11.0,,,139,65 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8782,5999,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,35396,15621,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,3.16,0.61 +Above Grade Walls: RimJoist2,,3.16,0.44 +Above Grade Walls: RimJoist3,,3.16,0.2 +Above Grade Walls: RimJoist4,,3.16,0.61 +Above Grade Walls: RimJoist5,,3.16,0.61 +Above Grade Walls: RimJoist6,,3.16,0.25 +Above Grade Walls: RimJoist7,,3.16,0.44 +Above Grade Walls: RimJoist8,,3.16,0.61 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,35,7 +Above Grade Walls: RimJoist2,11.0,,,35,5 +Above Grade Walls: RimJoist3,11.0,,,35,2 +Above Grade Walls: RimJoist4,11.0,,,35,7 +Above Grade Walls: RimJoist5,11.0,,,35,7 +Above Grade Walls: RimJoist6,11.0,,,35,3 +Above Grade Walls: RimJoist7,11.0,,,35,5 +Above Grade Walls: RimJoist8,11.0,,,35,7 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8779,6013,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,35289,15576,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,3.16,0.61 +Above Grade Walls: RimJoist2,,3.16,0.44 +Above Grade Walls: RimJoist3,,3.16,0.2 +Above Grade Walls: RimJoist4,,3.16,0.61 +Above Grade Walls: RimJoist5,,3.16,0.61 +Above Grade Walls: RimJoist6,,3.16,0.25 +Above Grade Walls: RimJoist7,,3.16,0.44 +Above Grade Walls: RimJoist8,,3.16,0.61 +Above Grade Walls: RimJoist9,,632.0,164.6 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,35,7 +Above Grade Walls: RimJoist2,11.0,,,35,5 +Above Grade Walls: RimJoist3,11.0,,,35,2 +Above Grade Walls: RimJoist4,11.0,,,35,7 +Above Grade Walls: RimJoist5,11.0,,,35,7 +Above Grade Walls: RimJoist6,11.0,,,35,3 +Above Grade Walls: RimJoist7,11.0,,,35,5 +Above Grade Walls: RimJoist8,11.0,,,35,7 +Above Grade Walls: RimJoist9,11.0,,,6952,1811 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8933,6054,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,42365,17425,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,3.16,0.61 +Above Grade Walls: RimJoist2,,3.16,0.44 +Above Grade Walls: RimJoist3,,3.16,0.2 +Above Grade Walls: RimJoist4,,3.16,0.61 +Above Grade Walls: RimJoist5,,3.16,0.61 +Above Grade Walls: RimJoist6,,3.16,0.25 +Above Grade Walls: RimJoist7,,3.16,0.44 +Above Grade Walls: RimJoist8,,3.16,0.61 +Above Grade Walls: RimJoist9,,12.64,3.29 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,35,7 +Above Grade Walls: RimJoist2,11.0,,,35,5 +Above Grade Walls: RimJoist3,11.0,,,35,2 +Above Grade Walls: RimJoist4,11.0,,,35,7 +Above Grade Walls: RimJoist5,11.0,,,35,7 +Above Grade Walls: RimJoist6,11.0,,,35,3 +Above Grade Walls: RimJoist7,11.0,,,35,5 +Above Grade Walls: RimJoist8,11.0,,,35,7 +Above Grade Walls: RimJoist9,11.0,,,139,36 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8782,6014,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,35401,15611,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,3.16,0.61 +Above Grade Walls: RimJoist2,,3.16,0.44 +Above Grade Walls: RimJoist3,,3.16,0.2 +Above Grade Walls: RimJoist4,,3.16,0.61 +Above Grade Walls: RimJoist5,,3.16,0.61 +Above Grade Walls: RimJoist6,,3.16,0.25 +Above Grade Walls: RimJoist7,,3.16,0.44 +Above Grade Walls: RimJoist8,,3.16,0.61 +Above Grade Walls: RimJoist9,,3.16,0.25 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,35,7 +Above Grade Walls: RimJoist2,11.0,,,35,5 +Above Grade Walls: RimJoist3,11.0,,,35,2 +Above Grade Walls: RimJoist4,11.0,,,35,7 +Above Grade Walls: RimJoist5,11.0,,,35,7 +Above Grade Walls: RimJoist6,11.0,,,35,3 +Above Grade Walls: RimJoist7,11.0,,,35,5 +Above Grade Walls: RimJoist8,11.0,,,35,7 +Above Grade Walls: RimJoist9,11.0,,,35,3 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8779,6013,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,35294,15577,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,3.16,0.61 +Above Grade Walls: RimJoist2,,3.16,0.44 +Above Grade Walls: RimJoist3,,3.16,0.2 +Above Grade Walls: RimJoist4,,3.16,0.61 +Above Grade Walls: RimJoist5,,3.16,0.61 +Above Grade Walls: RimJoist6,,3.16,0.25 +Above Grade Walls: RimJoist7,,3.16,0.44 +Above Grade Walls: RimJoist8,,3.16,0.61 +Above Grade Walls: RimJoist9,,3.16,0.25 +Above Grade Walls: RimJoist10,,632.0,233.0 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,35,7 +Above Grade Walls: RimJoist2,11.0,,,35,5 +Above Grade Walls: RimJoist3,11.0,,,35,2 +Above Grade Walls: RimJoist4,11.0,,,35,7 +Above Grade Walls: RimJoist5,11.0,,,35,7 +Above Grade Walls: RimJoist6,11.0,,,35,3 +Above Grade Walls: RimJoist7,11.0,,,35,5 +Above Grade Walls: RimJoist8,11.0,,,35,7 +Above Grade Walls: RimJoist9,11.0,,,35,3 +Above Grade Walls: RimJoist10,11.0,,,6952,2563 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8933,6088,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,42369,18210,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,3.16,0.61 +Above Grade Walls: RimJoist2,,3.16,0.44 +Above Grade Walls: RimJoist3,,3.16,0.2 +Above Grade Walls: RimJoist4,,3.16,0.61 +Above Grade Walls: RimJoist5,,3.16,0.61 +Above Grade Walls: RimJoist6,,3.16,0.25 +Above Grade Walls: RimJoist7,,3.16,0.44 +Above Grade Walls: RimJoist8,,3.16,0.61 +Above Grade Walls: RimJoist9,,3.16,0.25 +Above Grade Walls: RimJoist10,,12.64,4.66 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,35,7 +Above Grade Walls: RimJoist2,11.0,,,35,5 +Above Grade Walls: RimJoist3,11.0,,,35,2 +Above Grade Walls: RimJoist4,11.0,,,35,7 +Above Grade Walls: RimJoist5,11.0,,,35,7 +Above Grade Walls: RimJoist6,11.0,,,35,3 +Above Grade Walls: RimJoist7,11.0,,,35,5 +Above Grade Walls: RimJoist8,11.0,,,35,7 +Above Grade Walls: RimJoist9,11.0,,,35,3 +Above Grade Walls: RimJoist10,11.0,,,139,51 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8782,5999,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,35405,15610,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,3.16,0.61 +Above Grade Walls: RimJoist2,,3.16,0.44 +Above Grade Walls: RimJoist3,,3.16,0.2 +Above Grade Walls: RimJoist4,,3.16,0.61 +Above Grade Walls: RimJoist5,,3.16,0.61 +Above Grade Walls: RimJoist6,,3.16,0.25 +Above Grade Walls: RimJoist7,,3.16,0.44 +Above Grade Walls: RimJoist8,,3.16,0.61 +Above Grade Walls: RimJoist9,,3.16,0.25 +Above Grade Walls: RimJoist10,,3.16,0.44 +Above Grade Walls: Wall1,,5.27,0.51 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,35,7 +Above Grade Walls: RimJoist2,11.0,,,35,5 +Above Grade Walls: RimJoist3,11.0,,,35,2 +Above Grade Walls: RimJoist4,11.0,,,35,7 +Above Grade Walls: RimJoist5,11.0,,,35,7 +Above Grade Walls: RimJoist6,11.0,,,35,3 +Above Grade Walls: RimJoist7,11.0,,,35,5 +Above Grade Walls: RimJoist8,11.0,,,35,7 +Above Grade Walls: RimJoist9,11.0,,,35,3 +Above Grade Walls: RimJoist10,11.0,,,35,5 +Above Grade Walls: Wall1,96.0,,,506,48 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8779,6013,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,35298,15578,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,632.0,233.0 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,505600,186400 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,9644,6468,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,536576,206514,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,12.64,4.66 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,10112,3728 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8895,6165,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,40339,23540,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.44 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2528,351 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8718,6114,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32578,20111,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,632.0,93.1 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,60672,8938 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,9360,6183,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,96000,24627,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,12.64,1.86 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,1213,179 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8797,6002,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,35978,15687,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,2.2,0.16 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,220,16 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8784,6012,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,35055,15541,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,632.0,45.33 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,63200,4533 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,9369,6115,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,98620,20160,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,12.64,0.91 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,1264,91 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8801,5999,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,36116,15602,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,3.16,0.23 +Above Grade Walls: Wall3,,3.01,0.5 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,316,23 +Above Grade Walls: Wall3,96.0,,,289,48 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8786,6013,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,35153,15548,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,3.16,0.23 +Above Grade Walls: Wall3,,632.0,105.6 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,316,23 +Above Grade Walls: Wall3,96.0,,,60672,10138 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,9360,6225,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,96110,25849,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,3.16,0.23 +Above Grade Walls: Wall3,,12.64,2.11 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,316,23 +Above Grade Walls: Wall3,96.0,,,1213,203 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8800,6002,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,36091,15692,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,3.16,0.23 +Above Grade Walls: Wall3,,3.16,0.53 +Above Grade Walls: Wall4,,8.9,0.85 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,316,23 +Above Grade Walls: Wall3,96.0,,,303,51 +Above Grade Walls: Wall4,100.0,,,890,85 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8786,6013,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,35168,15550,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,3.16,0.23 +Above Grade Walls: Wall3,,3.16,0.53 +Above Grade Walls: Wall4,,632.0,60.6 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,316,23 +Above Grade Walls: Wall3,96.0,,,303,51 +Above Grade Walls: Wall4,100.0,,,63200,6060 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,9367,6155,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,98059,21668,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,3.16,0.23 +Above Grade Walls: Wall3,,3.16,0.53 +Above Grade Walls: Wall4,,12.64,1.21 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,316,23 +Above Grade Walls: Wall3,96.0,,,303,51 +Above Grade Walls: Wall4,100.0,,,1264,121 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8786,6014,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,35541,15587,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,3.16,0.23 +Above Grade Walls: Wall3,,3.16,0.53 +Above Grade Walls: Wall4,,3.16,0.2 +Above Grade Walls: Wall5,,3.93,0.62 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,316,23 +Above Grade Walls: Wall3,96.0,,,303,51 +Above Grade Walls: Wall4,100.0,,,316,20 +Above Grade Walls: Wall5,109.0,,,428,68 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8772,6011,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,34579,15483,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,3.16,0.23 +Above Grade Walls: Wall3,,3.16,0.53 +Above Grade Walls: Wall4,,3.16,0.2 +Above Grade Walls: Wall5,,632.0,100.2 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,316,23 +Above Grade Walls: Wall3,96.0,,,303,51 +Above Grade Walls: Wall4,100.0,,,316,20 +Above Grade Walls: Wall5,109.0,,,68888,10922 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,9386,6230,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,103653,26556,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,3.16,0.23 +Above Grade Walls: Wall3,,3.16,0.53 +Above Grade Walls: Wall4,,3.16,0.2 +Above Grade Walls: Wall5,,12.64,2.0 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,316,23 +Above Grade Walls: Wall3,96.0,,,303,51 +Above Grade Walls: Wall4,100.0,,,316,20 +Above Grade Walls: Wall5,109.0,,,1378,218 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8786,6000,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,35543,15622,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,3.16,0.23 +Above Grade Walls: Wall3,,3.16,0.53 +Above Grade Walls: Wall4,,3.16,0.2 +Above Grade Walls: Wall5,,3.16,0.44 +Above Grade Walls: Wall6,,46.81,10.19 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,316,23 +Above Grade Walls: Wall3,96.0,,,303,51 +Above Grade Walls: Wall4,100.0,,,316,20 +Above Grade Walls: Wall5,109.0,,,344,48 +Above Grade Walls: Wall6,109.0,,,5103,1111 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8769,6010,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,34493,15463,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,3.16,0.23 +Above Grade Walls: Wall3,,3.16,0.53 +Above Grade Walls: Wall4,,3.16,0.2 +Above Grade Walls: Wall5,,3.16,0.44 +Above Grade Walls: Wall6,,632.0,137.6 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,316,23 +Above Grade Walls: Wall3,96.0,,,303,51 +Above Grade Walls: Wall4,100.0,,,316,20 +Above Grade Walls: Wall5,109.0,,,344,48 +Above Grade Walls: Wall6,109.0,,,68888,14998 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,9370,6253,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,98879,29592,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,3.16,0.23 +Above Grade Walls: Wall3,,3.16,0.53 +Above Grade Walls: Wall4,,3.16,0.2 +Above Grade Walls: Wall5,,3.16,0.44 +Above Grade Walls: Wall6,,12.64,2.75 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,316,23 +Above Grade Walls: Wall3,96.0,,,303,51 +Above Grade Walls: Wall4,100.0,,,316,20 +Above Grade Walls: Wall5,109.0,,,344,48 +Above Grade Walls: Wall6,109.0,,,1378,300 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8662,5982,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,30660,14623,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,3.16,0.23 +Above Grade Walls: Wall3,,3.16,0.53 +Above Grade Walls: Wall4,,3.16,0.2 +Above Grade Walls: Wall5,,3.16,0.44 +Above Grade Walls: Wall6,,3.16,0.53 +Above Grade Walls: Wall7,,7.8,1.79 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,316,23 +Above Grade Walls: Wall3,96.0,,,303,51 +Above Grade Walls: Wall4,100.0,,,316,20 +Above Grade Walls: Wall5,109.0,,,344,48 +Above Grade Walls: Wall6,109.0,,,344,58 +Above Grade Walls: Wall7,109.0,,,850,195 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8615,5959,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,29580,14358,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,3.16,0.23 +Above Grade Walls: Wall3,,3.16,0.53 +Above Grade Walls: Wall4,,3.16,0.2 +Above Grade Walls: Wall5,,3.16,0.44 +Above Grade Walls: Wall6,,3.16,0.53 +Above Grade Walls: Wall7,,632.0,164.6 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,316,23 +Above Grade Walls: Wall3,96.0,,,303,51 +Above Grade Walls: Wall4,100.0,,,316,20 +Above Grade Walls: Wall5,109.0,,,344,48 +Above Grade Walls: Wall6,109.0,,,344,58 +Above Grade Walls: Wall7,109.0,,,68888,17941 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,9368,6247,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,98371,32392,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,3.16,0.23 +Above Grade Walls: Wall3,,3.16,0.53 +Above Grade Walls: Wall4,,3.16,0.2 +Above Grade Walls: Wall5,,3.16,0.44 +Above Grade Walls: Wall6,,3.16,0.53 +Above Grade Walls: Wall7,,12.64,2.9 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,316,23 +Above Grade Walls: Wall3,96.0,,,303,51 +Above Grade Walls: Wall4,100.0,,,316,20 +Above Grade Walls: Wall5,109.0,,,344,48 +Above Grade Walls: Wall6,109.0,,,344,58 +Above Grade Walls: Wall7,109.0,,,1378,316 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8634,5979,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,30127,14499,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,3.16,0.23 +Above Grade Walls: Wall3,,3.16,0.53 +Above Grade Walls: Wall4,,3.16,0.2 +Above Grade Walls: Wall5,,3.16,0.44 +Above Grade Walls: Wall6,,3.16,0.53 +Above Grade Walls: Wall7,,3.16,0.23 +Above Grade Walls: Wall8,,11.7,1.36 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,316,23 +Above Grade Walls: Wall3,96.0,,,303,51 +Above Grade Walls: Wall4,100.0,,,316,20 +Above Grade Walls: Wall5,109.0,,,344,48 +Above Grade Walls: Wall6,109.0,,,344,58 +Above Grade Walls: Wall7,109.0,,,344,25 +Above Grade Walls: Wall8,109.0,,,1276,149 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8596,5965,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,29055,14194,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,3.16,0.23 +Above Grade Walls: Wall3,,3.16,0.53 +Above Grade Walls: Wall4,,3.16,0.2 +Above Grade Walls: Wall5,,3.16,0.44 +Above Grade Walls: Wall6,,3.16,0.53 +Above Grade Walls: Wall7,,3.16,0.23 +Above Grade Walls: Wall8,,632.0,73.64 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,316,23 +Above Grade Walls: Wall3,96.0,,,303,51 +Above Grade Walls: Wall4,100.0,,,316,20 +Above Grade Walls: Wall5,109.0,,,344,48 +Above Grade Walls: Wall6,109.0,,,344,58 +Above Grade Walls: Wall7,109.0,,,344,25 +Above Grade Walls: Wall8,109.0,,,68888,8027 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,9365,6164,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,97437,22270,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,3.16,0.23 +Above Grade Walls: Wall3,,3.16,0.53 +Above Grade Walls: Wall4,,3.16,0.2 +Above Grade Walls: Wall5,,3.16,0.44 +Above Grade Walls: Wall6,,3.16,0.53 +Above Grade Walls: Wall7,,3.16,0.23 +Above Grade Walls: Wall8,,12.64,1.47 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,316,23 +Above Grade Walls: Wall3,96.0,,,303,51 +Above Grade Walls: Wall4,100.0,,,316,20 +Above Grade Walls: Wall5,109.0,,,344,48 +Above Grade Walls: Wall6,109.0,,,344,58 +Above Grade Walls: Wall7,109.0,,,344,25 +Above Grade Walls: Wall8,109.0,,,1378,161 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8600,5965,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,29161,14206,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,3.16,0.23 +Above Grade Walls: Wall3,,3.16,0.53 +Above Grade Walls: Wall4,,3.16,0.2 +Above Grade Walls: Wall5,,3.16,0.44 +Above Grade Walls: Wall6,,3.16,0.53 +Above Grade Walls: Wall7,,3.16,0.23 +Above Grade Walls: Wall8,,3.16,0.37 +Above Grade Walls: Wall9,,1.07,0.18 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,316,23 +Above Grade Walls: Wall3,96.0,,,303,51 +Above Grade Walls: Wall4,100.0,,,316,20 +Above Grade Walls: Wall5,109.0,,,344,48 +Above Grade Walls: Wall6,109.0,,,344,58 +Above Grade Walls: Wall7,109.0,,,344,25 +Above Grade Walls: Wall8,109.0,,,344,40 +Above Grade Walls: Wall9,89.0,,,96,16 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8558,5962,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,28086,14082,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,3.16,0.23 +Above Grade Walls: Wall3,,3.16,0.53 +Above Grade Walls: Wall4,,3.16,0.2 +Above Grade Walls: Wall5,,3.16,0.44 +Above Grade Walls: Wall6,,3.16,0.53 +Above Grade Walls: Wall7,,3.16,0.23 +Above Grade Walls: Wall8,,3.16,0.37 +Above Grade Walls: Wall9,,632.0,105.6 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,316,23 +Above Grade Walls: Wall3,96.0,,,303,51 +Above Grade Walls: Wall4,100.0,,,316,20 +Above Grade Walls: Wall5,109.0,,,344,48 +Above Grade Walls: Wall6,109.0,,,344,58 +Above Grade Walls: Wall7,109.0,,,344,25 +Above Grade Walls: Wall8,109.0,,,344,40 +Above Grade Walls: Wall9,89.0,,,56248,9398 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,9315,6167,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,84995,23670,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,3.16,0.23 +Above Grade Walls: Wall3,,3.16,0.53 +Above Grade Walls: Wall4,,3.16,0.2 +Above Grade Walls: Wall5,,3.16,0.44 +Above Grade Walls: Wall6,,3.16,0.53 +Above Grade Walls: Wall7,,3.16,0.23 +Above Grade Walls: Wall8,,3.16,0.37 +Above Grade Walls: Wall9,,12.64,2.11 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,316,23 +Above Grade Walls: Wall3,96.0,,,303,51 +Above Grade Walls: Wall4,100.0,,,316,20 +Above Grade Walls: Wall5,109.0,,,344,48 +Above Grade Walls: Wall6,109.0,,,344,58 +Above Grade Walls: Wall7,109.0,,,344,25 +Above Grade Walls: Wall8,109.0,,,344,40 +Above Grade Walls: Wall9,89.0,,,1125,188 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8599,5953,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,29157,14245,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,3.16,0.23 +Above Grade Walls: Wall3,,3.16,0.53 +Above Grade Walls: Wall4,,3.16,0.2 +Above Grade Walls: Wall5,,3.16,0.44 +Above Grade Walls: Wall6,,3.16,0.53 +Above Grade Walls: Wall7,,3.16,0.23 +Above Grade Walls: Wall8,,3.16,0.37 +Above Grade Walls: Wall9,,3.16,0.53 +Above Grade Walls: Wall10,,8.0,1.11 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,316,23 +Above Grade Walls: Wall3,96.0,,,303,51 +Above Grade Walls: Wall4,100.0,,,316,20 +Above Grade Walls: Wall5,109.0,,,344,48 +Above Grade Walls: Wall6,109.0,,,344,58 +Above Grade Walls: Wall7,109.0,,,344,25 +Above Grade Walls: Wall8,109.0,,,344,40 +Above Grade Walls: Wall9,89.0,,,281,47 +Above Grade Walls: Wall10,89.0,,,712,99 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8566,5963,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,28280,14114,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,3.16,0.23 +Above Grade Walls: Wall3,,3.16,0.53 +Above Grade Walls: Wall4,,3.16,0.2 +Above Grade Walls: Wall5,,3.16,0.44 +Above Grade Walls: Wall6,,3.16,0.53 +Above Grade Walls: Wall7,,3.16,0.23 +Above Grade Walls: Wall8,,3.16,0.37 +Above Grade Walls: Wall9,,3.16,0.53 +Above Grade Walls: Wall10,,632.0,100.2 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,316,23 +Above Grade Walls: Wall3,96.0,,,303,51 +Above Grade Walls: Wall4,100.0,,,316,20 +Above Grade Walls: Wall5,109.0,,,344,48 +Above Grade Walls: Wall6,109.0,,,344,58 +Above Grade Walls: Wall7,109.0,,,344,25 +Above Grade Walls: Wall8,109.0,,,344,40 +Above Grade Walls: Wall9,89.0,,,281,47 +Above Grade Walls: Wall10,89.0,,,56248,8918 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,9313,6158,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,84563,23128,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,3.16,0.23 +Above Grade Walls: Wall3,,3.16,0.53 +Above Grade Walls: Wall4,,3.16,0.2 +Above Grade Walls: Wall5,,3.16,0.44 +Above Grade Walls: Wall6,,3.16,0.53 +Above Grade Walls: Wall7,,3.16,0.23 +Above Grade Walls: Wall8,,3.16,0.37 +Above Grade Walls: Wall9,,3.16,0.53 +Above Grade Walls: Wall10,,12.64,2.0 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,316,23 +Above Grade Walls: Wall3,96.0,,,303,51 +Above Grade Walls: Wall4,100.0,,,316,20 +Above Grade Walls: Wall5,109.0,,,344,48 +Above Grade Walls: Wall6,109.0,,,344,58 +Above Grade Walls: Wall7,109.0,,,344,25 +Above Grade Walls: Wall8,109.0,,,344,40 +Above Grade Walls: Wall9,89.0,,,281,47 +Above Grade Walls: Wall10,89.0,,,1125,178 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8583,5965,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,28709,14196,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,3.16,0.23 +Above Grade Walls: Wall3,,3.16,0.53 +Above Grade Walls: Wall4,,3.16,0.2 +Above Grade Walls: Wall5,,3.16,0.44 +Above Grade Walls: Wall6,,3.16,0.53 +Above Grade Walls: Wall7,,3.16,0.23 +Above Grade Walls: Wall8,,3.16,0.37 +Above Grade Walls: Wall9,,3.16,0.53 +Above Grade Walls: Wall10,,3.16,0.37 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,316,23 +Above Grade Walls: Wall3,96.0,,,303,51 +Above Grade Walls: Wall4,100.0,,,316,20 +Above Grade Walls: Wall5,109.0,,,344,48 +Above Grade Walls: Wall6,109.0,,,344,58 +Above Grade Walls: Wall7,109.0,,,344,25 +Above Grade Walls: Wall8,109.0,,,344,40 +Above Grade Walls: Wall9,89.0,,,281,47 +Above Grade Walls: Wall10,89.0,,,281,33 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8548,5961,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,27831,14046,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,3.16,0.23 +Above Grade Walls: Wall3,,3.16,0.53 +Above Grade Walls: Wall4,,3.16,0.2 +Above Grade Walls: Wall5,,3.16,0.44 +Above Grade Walls: Wall6,,3.16,0.53 +Above Grade Walls: Wall7,,3.16,0.23 +Above Grade Walls: Wall8,,3.16,0.37 +Above Grade Walls: Wall9,,3.16,0.53 +Above Grade Walls: Wall10,,3.16,0.37 +Above Grade Walls: Wall11,,632.0,60.6 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,316,23 +Above Grade Walls: Wall3,96.0,,,303,51 +Above Grade Walls: Wall4,100.0,,,316,20 +Above Grade Walls: Wall5,109.0,,,344,48 +Above Grade Walls: Wall6,109.0,,,344,58 +Above Grade Walls: Wall7,109.0,,,344,25 +Above Grade Walls: Wall8,109.0,,,344,40 +Above Grade Walls: Wall9,89.0,,,281,47 +Above Grade Walls: Wall10,89.0,,,281,33 +Above Grade Walls: Wall11,109.0,,,68888,6605 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,9360,6143,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,96154,20701,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,3.16,0.23 +Above Grade Walls: Wall3,,3.16,0.53 +Above Grade Walls: Wall4,,3.16,0.2 +Above Grade Walls: Wall5,,3.16,0.44 +Above Grade Walls: Wall6,,3.16,0.53 +Above Grade Walls: Wall7,,3.16,0.23 +Above Grade Walls: Wall8,,3.16,0.37 +Above Grade Walls: Wall9,,3.16,0.53 +Above Grade Walls: Wall10,,3.16,0.37 +Above Grade Walls: Wall11,,12.64,1.21 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,316,23 +Above Grade Walls: Wall3,96.0,,,303,51 +Above Grade Walls: Wall4,100.0,,,316,20 +Above Grade Walls: Wall5,109.0,,,344,48 +Above Grade Walls: Wall6,109.0,,,344,58 +Above Grade Walls: Wall7,109.0,,,344,25 +Above Grade Walls: Wall8,109.0,,,344,40 +Above Grade Walls: Wall9,89.0,,,281,47 +Above Grade Walls: Wall10,89.0,,,281,33 +Above Grade Walls: Wall11,109.0,,,1378,132 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8548,5961,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,27831,14046,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.87 +Windows: Window2,E,20.86,35.06 +Windows: Window3,S,20.86,16.92 +Windows: Window4,W,20.86,35.06 +Doors: Door1,N,14.36,5.17 +Doors: Door2,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.5 +Above Grade Walls: RimJoist2,,2.75,0.35 +Above Grade Walls: RimJoist3,,2.75,0.17 +Above Grade Walls: RimJoist4,,2.75,0.5 +Above Grade Walls: RimJoist5,,2.75,0.5 +Above Grade Walls: RimJoist6,,2.75,0.2 +Above Grade Walls: RimJoist7,,2.75,0.35 +Above Grade Walls: RimJoist8,,2.75,0.5 +Above Grade Walls: RimJoist9,,2.75,0.2 +Above Grade Walls: RimJoist10,,2.75,0.35 +Above Grade Walls: Wall1,,3.16,0.23 +Above Grade Walls: Wall2,,3.16,0.23 +Above Grade Walls: Wall3,,3.16,0.53 +Above Grade Walls: Wall4,,3.16,0.2 +Above Grade Walls: Wall5,,3.16,0.44 +Above Grade Walls: Wall6,,3.16,0.53 +Above Grade Walls: Wall7,,3.16,0.23 +Above Grade Walls: Wall8,,3.16,0.37 +Above Grade Walls: Wall9,,3.16,0.53 +Above Grade Walls: Wall10,,3.16,0.37 +Above Grade Walls: Wall11,,3.16,0.2 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,13.0,,,271,128 +Windows: Window2,9.0,,,188,315 +Windows: Window3,13.0,,,271,220 +Windows: Window4,9.0,,,188,315 +Doors: Door1,20.0,,,287,103 +Doors: Door2,20.0,,,287,103 +Above Grade Walls: RimJoist1,11.0,,,30,5 +Above Grade Walls: RimJoist2,11.0,,,30,4 +Above Grade Walls: RimJoist3,11.0,,,30,2 +Above Grade Walls: RimJoist4,11.0,,,30,5 +Above Grade Walls: RimJoist5,11.0,,,30,5 +Above Grade Walls: RimJoist6,11.0,,,30,2 +Above Grade Walls: RimJoist7,11.0,,,30,4 +Above Grade Walls: RimJoist8,11.0,,,30,5 +Above Grade Walls: RimJoist9,11.0,,,30,2 +Above Grade Walls: RimJoist10,11.0,,,30,4 +Above Grade Walls: Wall1,96.0,,,303,22 +Above Grade Walls: Wall2,100.0,,,316,23 +Above Grade Walls: Wall3,96.0,,,303,51 +Above Grade Walls: Wall4,100.0,,,316,20 +Above Grade Walls: Wall5,109.0,,,344,48 +Above Grade Walls: Wall6,109.0,,,344,58 +Above Grade Walls: Wall7,109.0,,,344,25 +Above Grade Walls: Wall8,109.0,,,344,40 +Above Grade Walls: Wall9,89.0,,,281,47 +Above Grade Walls: Wall10,89.0,,,281,33 +Above Grade Walls: Wall11,109.0,,,344,22 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8513,5943,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,26763,13917,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,85.46,0 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,,150,,12818,0 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,1704,0,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,29285,13449,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,85.46,0 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,,150,,12818,0 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,1704,0,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,29285,13449,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,36.65,0 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,,150,,5497,0 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,1658,0,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,21917,13449,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,36.65,0 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,,150,,5497,0 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,1658,0,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,21917,13449,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,25.53,0 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,,150,,3829,0 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,1643,0,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,20235,13449,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,25.53,0 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,,150,,3829,0 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,1643,0,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,20235,13449,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,81.79,0 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,,150,,12269,0 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,1702,0,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,28732,13449,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,77.98,0 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,,150,,11697,0 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,1699,0,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,28157,13449,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,78.84,0 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,,150,,11827,0 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,1699,0,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,28288,13449,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,70.14,0 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,,150,,10521,0 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,1692,0,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,26975,13449,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,34.76,0 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,,150,,5214,0 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,1656,0,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,21632,13449,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,34.76,0 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,,150,,5214,0 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,1656,0,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,21632,13449,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,23.94,0 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,,150,,3591,0 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,1641,0,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,19994,13449,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,23.94,0 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,,150,,3591,0 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,1641,0,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,19994,13449,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Skylights: Skylight1,N,61.3,112.53 +Skylights: Skylight2,S,61.3,116.86 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Skylights: Skylight1,15.0,,,920,1688 +Skylights: Skylight2,15.0,,,920,1753 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1320.0,,,2123,2242 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8759,6164,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,34080,23481,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,8425,10331,11969,12867,13435,14478,15161,15029,14128,12943,10552,5500 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Skylights: Skylight1,N,61.3,3.14 +Skylights: Skylight2,S,61.3,31.83 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Skylights: Skylight1,15.0,,,920,47 +Skylights: Skylight2,15.0,,,920,477 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1320.0,,,2123,2242 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8759,6141,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,34080,20541,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7427,8875,10033,10494,10689,11437,11986,11843,11133,10215,8244,3592 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,9.57,7.09 +Windows: Window2,E,9.57,28.59 +Windows: Window3,S,9.57,9.03 +Windows: Window4,W,9.57,28.59 +Skylights: Skylight1,N,28.13,2.43 +Skylights: Skylight2,S,28.13,29.13 +Doors: Door1,S,6.59,4.63 +Above Grade Walls: RimJoist1,,1.26,0.25 +Above Grade Walls: Wall1,,1.26,0.25 +Above Grade Walls: FoundationWall1,,2.78,0.61 +Below Grade Walls: FoundationWall1,,1.53,0 +Ceilings: Floor1,,0.74,1.64 +Floors: Slab1,,0.59,0 +Infiltration,,,,68,35 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,1034,765 +Windows: Window2,72.0,,,689,2058 +Windows: Window3,108.0,,,1034,975 +Windows: Window4,72.0,,,689,2058 +Skylights: Skylight1,15.0,,,422,36 +Skylights: Skylight2,15.0,,,422,437 +Doors: Door1,40.0,,,264,185 +Above Grade Walls: RimJoist1,115.6,,,146,29 +Above Grade Walls: Wall1,800.0,,,1009,198 +Above Grade Walls: FoundationWall1,150.0,,,418,92 +Below Grade Walls: FoundationWall1,1050.0,,,1602,0 +Ceilings: Floor1,1320.0,,,974,2162 +Floors: Slab1,1350.0,,,798,0 +Infiltration,,,1.0,2145,364,38 +Internal Gains,,,,,3320,800 +Ducts,,,,6559,6773,27 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,18203,19453,865 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,6950,7903,8439,8348,8225,8951,9725,9977,9629,8950,7249,2774 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Roof1,,632.0,332.6 +Floors: Slab1,,1.29,0 +Infiltration,,,,120,61 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,120.0,,,2503,3668 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,120.0,,,2503,3668 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,929.0,,,2553,326 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Roof1,1509.3,,,953878,501993 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,6931,933,-992 +Internal Gains,,,,,3320,800 +Ducts,,,,0,0,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,979904,516918,-192 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,10446,11824,12539,12270,12021,13241,14608,15181,14798,13774,10968,4425 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Roof1,,12.64,6.65 +Floors: Slab1,,1.29,0 +Infiltration,,,,120,61 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,120.0,,,2503,3668 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,120.0,,,2503,3668 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,929.0,,,2553,326 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Roof1,1509.3,,,19078,10040 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,6931,933,-992 +Internal Gains,,,,,3320,800 +Ducts,,,,0,0,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,45104,24964,-192 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,10446,11824,12539,12270,12021,13241,14608,15181,14798,13774,10968,4425 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Roof1,,3.16,0.87 +Floors: Slab1,,1.29,0 +Infiltration,,,,120,61 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,120.0,,,2503,3668 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,120.0,,,2503,3668 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,929.0,,,2553,326 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Roof1,1509.3,,,4769,1320 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,6931,933,-992 +Internal Gains,,,,,3320,800 +Ducts,,,,0,0,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,30796,16245,-192 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,10446,11824,12539,12270,12021,13241,14608,15181,14798,13774,10968,4425 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,632.0,227.6 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,25280,9104 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,9134,6249,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,57370,29073,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,12.64,4.55 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,506,182 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8707,6111,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32168,20014,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,3.16,1.14 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,126,46 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8695,6108,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,31778,19874,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,3.33,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.29,0 +Infiltration,,,,80,41 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,1050.0,,,3492,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,1738,0 +Infiltration,,,1.0,4620,622,-661 +Internal Gains,,,,,3320,800 +Ducts,,,,8709,6112,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,32239,20039,139 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: RimJoist1,,2.75,0.35 +Above Grade Walls: Wall1,,2.75,0.35 +Above Grade Walls: FoundationWall1,,6.07,0.84 +Below Grade Walls: FoundationWall1,,4.14,0 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,1.75,0 +Infiltration,,,,60,30 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: RimJoist1,115.6,,,318,41 +Above Grade Walls: Wall1,800.0,,,2198,281 +Above Grade Walls: FoundationWall1,150.0,,,910,126 +Below Grade Walls: FoundationWall1,450.0,,,1864,0 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,1350.0,,,2362,0 +Infiltration,,,1.0,3465,467,-496 +Internal Gains,,,,,3320,800 +Ducts,,,,0,0,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,21371,13772,304 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor1,,1.61,1.7 +Floors: Slab1,,78.84,0 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor1,1350.0,,,2171,2293 +Floors: Slab1,,150,,11827,0 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,1699,0,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,28288,13449,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,2.63,0.7 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,3545,940 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,4979,256,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,23286,14645,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,5.52,1.46 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,7447,1975 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,2071,0,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,24280,15424,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,1.06,0.28 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,1427,379 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,5869,1706,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,22058,15533,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,1.66,0.44 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,2246,596 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,7388,2136,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,24396,16181,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,6.07,9.16 +Windows: Window2,E,6.07,30.66 +Windows: Window3,S,6.07,11.11 +Windows: Window4,W,6.07,30.66 +Doors: Door1,S,4.18,6.97 +Above Grade Walls: Wall1,,0.8,0.7 +Ceilings: Floor1,,0.47,1.9 +Floors: Slab1,,22.93,0 +Infiltration,,,,32,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,655,990 +Windows: Window2,72.0,,,437,2208 +Windows: Window3,108.0,,,655,1199 +Windows: Window4,72.0,,,437,2208 +Doors: Door1,40.0,,,167,279 +Above Grade Walls: Wall1,800.0,,,639,556 +Ceilings: Floor1,1350.0,,,631,2565 +Floors: Slab1,,150,,3439,0 +Infiltration,,,1.0,639,343,760 +Internal Gains,,,,,3320,800 +Ducts,,,,785,-217,954 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,8484,13451,2514 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,8118,8810,9092,8782,8484,9103,9838,10137,9877,9348,7842,3576 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,3.38,0.36 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,140.0,,,2920,1290 +Windows: Window2,20.0,,,417,611 +Windows: Window3,140.0,,,2920,2127 +Windows: Window4,20.0,,,417,611 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,1109.7,,,3049,389 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,4563,488 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,2636,804,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,701 +Total,,,,21978,13153,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,4081,5730,7581,9032,9811,10011,9527,8423,7228,6460,5476,2575 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,3.38,0.36 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,140.0,,,2920,1290 +Windows: Window2,20.0,,,417,611 +Windows: Window3,140.0,,,2920,2127 +Windows: Window4,20.0,,,417,611 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,1109.7,,,3049,389 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,4563,488 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,2636,804,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,701 +Total,,,,21978,13153,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,4081,5730,7581,9032,9811,10011,9527,8423,7228,6460,5476,2575 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,3.38,0.36 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,140.0,,,2920,1290 +Windows: Window2,20.0,,,417,611 +Windows: Window3,140.0,,,2920,2127 +Windows: Window4,20.0,,,417,611 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,1109.7,,,3049,389 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,4563,488 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,2636,804,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,701 +Total,,,,21978,13153,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,4081,5730,7581,9032,9811,10011,9527,8423,7228,6460,5476,2575 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,3.48,0.92 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,4692,1244 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,5025,202,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,24479,14895,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,1.66,0.44 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,2245,595 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,4942,262,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,21949,14306,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,0.64,0.17 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,871,231 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,4899,266,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,20531,13945,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,3.48,0.92 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,4692,1244 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,5025,202,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,24479,14895,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,3.48,0.92 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,4692,1244 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,5025,202,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,24479,14895,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,3.48,0.92 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,4692,1244 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,5025,202,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,24479,14895,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,3.48,0.92 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,4692,1244 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,5025,202,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,24479,14895,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,3.48,0.92 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,4692,1244 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,5025,202,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,24479,14895,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,3.48,0.92 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,4692,1244 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,5025,202,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,24479,14895,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,3.48,0.92 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,4692,1244 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,5025,202,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,24479,14895,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,3.48,0.92 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,4692,1244 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,5025,202,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,24479,14895,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,8.46,2.24 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,11426,3030 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,3685,153,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,29873,16632,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,2.3,0.61 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,3105,823 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,2017,0,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,19885,14272,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,0.72,0.19 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,975,259 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,1984,0,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,17722,13708,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,2.3,0.61 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,3105,823 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,2017,0,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,19885,14272,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,0.72,0.19 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,975,259 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,1984,0,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,17722,13708,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,1.33,0.35 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,1797,477 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,1998,0,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,18557,13926,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 + +Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM +Windows: Window1,N,20.86,9.21 +Windows: Window2,E,20.86,30.57 +Windows: Window3,S,20.86,15.19 +Windows: Window4,W,20.86,30.57 +Doors: Door1,S,14.36,5.17 +Above Grade Walls: Wall1,,2.75,0.35 +Ceilings: Floor2,,1.61,1.7 +Floors: Floor1,,0.38,0.1 +Infiltration,,,,40,20 +Ventilation,,,,0,0 + +Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) +Windows: Window1,108.0,,,2252,995 +Windows: Window2,72.0,,,1502,2201 +Windows: Window3,108.0,,,2252,1640 +Windows: Window4,72.0,,,1502,2201 +Doors: Door1,40.0,,,575,207 +Above Grade Walls: Wall1,800.0,,,2198,281 +Ceilings: Floor2,1350.0,,,2171,2293 +Floors: Floor1,1350.0,,,509,135 +Infiltration,,,1.0,2310,311,-331 +Internal Gains,,,,,3320,800 +Ducts,,,,1976,0,0 +Ventilation,,,,0,0,0 +Piping,,,,0 +Blower Heat,,,,,0 +AED Excursion,,,,,0 +Total,,,,17248,13584,469 + +Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) +MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 From 383a9ff6e55fa980d10c12893ca392c942b45211 Mon Sep 17 00:00:00 2001 From: prsh5175 Date: Tue, 27 Aug 2024 13:17:34 -0600 Subject: [PATCH 36/41] Adding exterior horizontal insulation R-value to the total soil path R-value for HVAC sizing calculations. --- BuildResidentialHPXML/measure.xml | 10 +++---- HPXMLtoOpenStudio/measure.xml | 32 +++++++++++++++------- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 4 +++ 3 files changed, 31 insertions(+), 15 deletions(-) diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 191df5480f..52969815a8 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 85f5790a-07a6-4ceb-829a-7738e682fa6f - 2024-08-21T17:13:24Z + e3912347-949f-4d44-87bd-0882dabba47f + 2024-08-27T19:08:21Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -7416,7 +7416,7 @@ README.md md readme - FCAE28E2 + 39380C85 README.md.erb @@ -7433,7 +7433,7 @@ measure.rb rb script - E52B375E + 5914390D constants.rb @@ -7451,7 +7451,7 @@ test_build_residential_hpxml.rb rb test - BC30D013 + 3636F36A diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 6e56b6f5c0..389adfe2c3 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 7321ba66-676f-4f45-9829-5507f160b9be - 2024-08-21T22:48:41Z + 7a7eacdc-ca83-4a12-af3e-9f1976a6d99d + 2024-08-27T19:12:10Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -183,7 +183,7 @@ measure.rb rb script - 38982B5D + CA5BC337 airflow.rb @@ -213,7 +213,7 @@ constructions.rb rb resource - 7C326501 + 1AEF514B data/Xing_okstate_0664D_13659_Table_A-3.csv @@ -357,13 +357,13 @@ hpxml.rb rb resource - 84AE64ED + D96E2996 hpxml_defaults.rb rb resource - 9F57A47A + F91D94C6 hpxml_schema/HPXML.xsd @@ -399,7 +399,7 @@ hvac_sizing.rb rb resource - 35FCD771 + 8433294D lighting.rb @@ -641,6 +641,18 @@ resource 93120E27 + + results_annual.csv + csv + test + 656341D9 + + + results_design_load_details.csv + csv + test + B2F544C7 + test_airflow.rb rb @@ -657,13 +669,13 @@ test_defaults.rb rb test - 029FF7CE + B9A34BA0 test_enclosure.rb rb test - 45F2A863 + D4340A44 test_generator.rb @@ -729,7 +741,7 @@ test_validation.rb rb test - 6EDC8C3A + 502A31E3 test_water_heater.rb diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index ed3b2fdc83..f16ebe845c 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -4329,6 +4329,10 @@ def self.calc_slab_f_value(slab, ground_conductivity) end end + if slab.exterior_horizontal_insulation_width > 0 + r_ins += slab.exterior_horizontal_insulation_r_value + end + # Air Films = Indoor Finish + Indoor Air Film + Exposed Air Film (Figure A12-6 pg. 517) r_air_film = 0.05 + 0.92 + 0.17 From 2ec49599cbd0937c71315c7e5a4e764603f00651 Mon Sep 17 00:00:00 2001 From: prsh5175 Date: Tue, 27 Aug 2024 15:45:51 -0600 Subject: [PATCH 37/41] Adding further conditions to utilizing exterior horizontal insulation in ACCA Manual J calculations for HVAC sizing, and adjusting the conditions to independently account for insulations encountered in the soil path. --- HPXMLtoOpenStudio/measure.xml | 6 +-- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 44 +++++++++++++--------- 2 files changed, 30 insertions(+), 20 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 389adfe2c3..4d98ba8284 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 7a7eacdc-ca83-4a12-af3e-9f1976a6d99d - 2024-08-27T19:12:10Z + 44c3f3f8-4bf5-425f-9805-6662cb308ee3 + 2024-08-27T21:44:03Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -399,7 +399,7 @@ hvac_sizing.rb rb resource - 8433294D + C66480A0 lighting.rb diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index f16ebe845c..bd3b9495bf 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -1390,9 +1390,14 @@ def self.process_load_slabs(mj, hpxml_bldg, all_zone_loads, all_space_loads) slab_is_insulated = false if slab.under_slab_insulation_width.to_f > 0 && slab.under_slab_insulation_r_value > 0 slab_is_insulated = true - elsif slab.perimeter_insulation_depth > 0 && slab.perimeter_insulation_r_value > 0 + end + if slab.perimeter_insulation_depth > 0 && slab.perimeter_insulation_r_value > 0 + slab_is_insulated = true + end + if slab.under_slab_insulation_spans_entire_slab && slab.under_slab_insulation_r_value > 0 slab_is_insulated = true - elsif slab.under_slab_insulation_spans_entire_slab && slab.under_slab_insulation_r_value > 0 + end + if slab.exterior_horizontal_insulation_width.to_f > 0 && slab.exterior_horizontal_insulation_r_value.to_f > 0 slab_is_insulated = true end @@ -4303,35 +4308,40 @@ def self.calc_slab_f_value(slab, ground_conductivity) u_effective = [] for radius in 0..path_radius spl = [Math::PI * radius - 1, 0].max # soil path length (SPL) - + r_ins = 0.0 # Concrete, gravel, and insulation if radius == 0 r_concrete = 0.0 r_gravel = 0.0 # No gravel on edge if slab.perimeter_insulation_depth > 0 r_ins = slab.perimeter_insulation_r_value # Insulation on edge - else - r_ins = 0.0 end else r_concrete = Material.Concrete(slab.thickness).rvalue r_gravel = [slab_r_gravel_per_inch * (12.0 - slab.thickness), 0].max if slab.under_slab_insulation_spans_entire_slab - r_ins = slab.under_slab_insulation_r_value - elsif radius <= slab.under_slab_insulation_width && radius <= slab.perimeter_insulation_depth - r_ins = slab.under_slab_insulation_r_value + slab.perimeter_insulation_r_value - elsif radius <= slab.under_slab_insulation_width - r_ins = slab.under_slab_insulation_r_value - elsif radius <= slab.perimeter_insulation_depth - r_ins = slab.perimeter_insulation_r_value - else - r_ins = 0.0 + r_ins += slab.under_slab_insulation_r_value + end + if radius <= slab.under_slab_insulation_width && radius <= slab.perimeter_insulation_depth + r_ins += slab.under_slab_insulation_r_value + slab.perimeter_insulation_r_value + end + if radius <= slab.under_slab_insulation_width + r_ins += slab.under_slab_insulation_r_value + end + if radius <= slab.perimeter_insulation_depth + r_ins += slab.perimeter_insulation_r_value + end + if slab.exterior_horizontal_insulation_r_value.to_f != nil && slab.exterior_horizontal_insulation_r_value.to_f > 0 + if radius >= slab.exterior_horizontal_insulation_depth_below_grade.to_f + hypotenuse = Math.sqrt(slab.exterior_horizontal_insulation_depth_below_grade**2 + slab.exterior_horizontal_insulation_width**2) + if radius <= hypotenuse + r_ins += slab.exterior_horizontal_insulation_r_value.to_f + end + end end end - if slab.exterior_horizontal_insulation_width > 0 - r_ins += slab.exterior_horizontal_insulation_r_value - end + # Air Films = Indoor Finish + Indoor Air Film + Exposed Air Film (Figure A12-6 pg. 517) r_air_film = 0.05 + 0.92 + 0.17 From a9e37ff37b70b5ef66082744083004f5ffec3c7e Mon Sep 17 00:00:00 2001 From: prsh5175 Date: Tue, 27 Aug 2024 16:37:21 -0600 Subject: [PATCH 38/41] Removing redundant statement in line 4334 of hvac_sizing.rb. --- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index bd3b9495bf..97bcfb5d31 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -4331,7 +4331,7 @@ def self.calc_slab_f_value(slab, ground_conductivity) if radius <= slab.perimeter_insulation_depth r_ins += slab.perimeter_insulation_r_value end - if slab.exterior_horizontal_insulation_r_value.to_f != nil && slab.exterior_horizontal_insulation_r_value.to_f > 0 + if slab.exterior_horizontal_insulation_r_value.to_f > 0 if radius >= slab.exterior_horizontal_insulation_depth_below_grade.to_f hypotenuse = Math.sqrt(slab.exterior_horizontal_insulation_depth_below_grade**2 + slab.exterior_horizontal_insulation_width**2) if radius <= hypotenuse From c5ef7c66cae6124f90bab7e01b8f5217b3463e2e Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 28 Aug 2024 16:58:24 +0000 Subject: [PATCH 39/41] Latest results. --- workflow/tests/base_results/results_simulations_hvac.csv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workflow/tests/base_results/results_simulations_hvac.csv b/workflow/tests/base_results/results_simulations_hvac.csv index b1a247e922..81eef7ddd3 100644 --- a/workflow/tests/base_results/results_simulations_hvac.csv +++ b/workflow/tests/base_results/results_simulations_hvac.csv @@ -173,7 +173,7 @@ base-foundation-conditioned-basement-slab-insulation.xml,6.8,91.76,36000.0,24000 base-foundation-conditioned-basement-wall-insulation.xml,6.8,91.76,36000.0,24000.0,0.0,31451.0,8686.0,7508.0,0.0,575.0,6153.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,20279.0,6137.0,7037.0,0.0,207.0,662.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 base-foundation-conditioned-crawlspace.xml,6.8,91.76,36000.0,24000.0,0.0,21371.0,0.0,7508.0,0.0,575.0,5290.0,0.0,0.0,2362.0,2171.0,3465.0,0.0,0.0,13772.0,0.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,467.0,0.0,3320.0,0.0,0.0,304.0,0.0,-496.0,0.0,800.0 base-foundation-multiple.xml,6.8,91.76,36000.0,24000.0,0.0,23269.0,4969.0,7508.0,0.0,575.0,2198.0,0.0,3538.0,0.0,2171.0,2310.0,0.0,0.0,14634.0,246.0,7037.0,0.0,207.0,281.0,0.0,938.0,0.0,2293.0,311.0,0.0,3320.0,0.0,0.0,469.0,0.0,-331.0,0.0,800.0 -base-foundation-slab-exterior-horizontal-insulation.xml,6.8,91.76,36000.0,24000.0,0.0,28288.0,1699.0,7508.0,0.0,575.0,2198.0,0.0,0.0,11827.0,2171.0,2310.0,0.0,0.0,13449.0,0.0,7037.0,0.0,207.0,281.0,0.0,0.0,0.0,2293.0,311.0,0.0,3320.0,0.0,0.0,469.0,0.0,-331.0,0.0,800.0 +base-foundation-slab-exterior-horizontal-insulation.xml,6.8,91.76,36000.0,24000.0,0.0,27987.0,1698.0,7508.0,0.0,575.0,2198.0,0.0,0.0,11527.0,2171.0,2310.0,0.0,0.0,13449.0,0.0,7037.0,0.0,207.0,281.0,0.0,0.0,0.0,2293.0,311.0,0.0,3320.0,0.0,0.0,469.0,0.0,-331.0,0.0,800.0 base-foundation-slab.xml,6.8,91.76,36000.0,24000.0,0.0,28288.0,1699.0,7508.0,0.0,575.0,2198.0,0.0,0.0,11827.0,2171.0,2310.0,0.0,0.0,13449.0,0.0,7037.0,0.0,207.0,281.0,0.0,0.0,0.0,2293.0,311.0,0.0,3320.0,0.0,0.0,469.0,0.0,-331.0,0.0,800.0 base-foundation-unconditioned-basement-above-grade.xml,6.8,91.76,36000.0,24000.0,0.0,23247.0,4978.0,7508.0,0.0,575.0,2198.0,0.0,3507.0,0.0,2171.0,2310.0,0.0,0.0,14636.0,256.0,7037.0,0.0,207.0,281.0,0.0,930.0,0.0,2293.0,311.0,0.0,3320.0,0.0,0.0,469.0,0.0,-331.0,0.0,800.0 base-foundation-unconditioned-basement-assembly-r.xml,6.8,91.76,36000.0,24000.0,0.0,21082.0,4916.0,7508.0,0.0,575.0,2198.0,0.0,1404.0,0.0,2171.0,2310.0,0.0,0.0,14086.0,264.0,7037.0,0.0,207.0,281.0,0.0,372.0,0.0,2293.0,311.0,0.0,3320.0,0.0,0.0,469.0,0.0,-331.0,0.0,800.0 @@ -475,5 +475,5 @@ house045.xml,-13.72,81.14,70000.0,30000.0,0.0,52712.0,0.0,8558.0,455.0,472.0,244 house046.xml,24.62,91.58,18000.0,18000.0,17065.0,16969.0,3903.0,1800.0,0.0,182.0,2847.0,0.0,0.0,0.0,1604.0,6633.0,0.0,0.0,15259.0,3713.0,2218.0,0.0,110.0,1595.0,0.0,0.0,0.0,1823.0,1399.0,0.0,2860.0,0.0,1540.0,2698.0,483.0,1815.0,0.0,400.0 house047.xml,19.22,86.72,20000.0,18000.0,0.0,7271.0,1053.0,1216.0,0.0,0.0,630.0,0.0,0.0,662.0,0.0,3710.0,0.0,0.0,4205.0,0.0,522.0,0.0,0.0,200.0,0.0,0.0,0.0,0.0,623.0,0.0,2860.0,0.0,0.0,1652.0,0.0,1252.0,0.0,400.0 house048.xml,25.88,98.42,63000.0,46500.0,0.0,51897.0,11933.0,4499.0,0.0,694.0,9939.0,828.0,63.0,10750.0,2249.0,7887.0,3053.0,0.0,31511.0,8098.0,4943.0,0.0,589.0,7960.0,547.0,57.0,0.0,1959.0,2188.0,1621.0,3550.0,0.0,0.0,4760.0,1126.0,1513.0,1121.0,1000.0 -house049.xml,33.26,106.16,39000.0,16000.0,0.0,19219.0,0.0,5635.0,0.0,0.0,5319.0,0.0,0.0,2446.0,1357.0,3370.0,1091.0,0.0,21829.0,0.0,7292.0,0.0,0.0,6460.0,0.0,0.0,0.0,2075.0,1986.0,926.0,3090.0,0.0,0.0,-351.0,0.0,-717.0,-233.0,600.0 +house049.xml,33.26,106.16,39000.0,16000.0,0.0,19031.0,0.0,5635.0,0.0,0.0,5319.0,0.0,0.0,2258.0,1357.0,3370.0,1091.0,0.0,21829.0,0.0,7292.0,0.0,0.0,6460.0,0.0,0.0,0.0,2075.0,1986.0,926.0,3090.0,0.0,0.0,-351.0,0.0,-717.0,-233.0,600.0 house050.xml,28.58,87.08,58000.0,29000.0,0.0,22123.0,7611.0,3277.0,0.0,949.0,3299.0,0.0,2075.0,0.0,1771.0,2150.0,991.0,0.0,20101.0,5095.0,5540.0,0.0,572.0,1304.0,0.0,605.0,0.0,1585.0,324.0,289.0,3320.0,0.0,1466.0,1243.0,110.0,88.0,245.0,800.0 From 535b72801bd4309494c701fc9c2f8fb097a3a5e3 Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Fri, 30 Aug 2024 09:02:20 -0600 Subject: [PATCH 40/41] Misc bugfixes and cleanup. --- BuildResidentialHPXML/README.md | 6 +- BuildResidentialHPXML/measure.rb | 6 +- BuildResidentialHPXML/measure.xml | 14 +- Changelog.md | 2 +- HPXMLtoOpenStudio/measure.xml | 34 +- HPXMLtoOpenStudio/resources/constructions.rb | 4 +- .../hpxml_schematron/EPvalidator.xml | 2 - HPXMLtoOpenStudio/resources/hvac_sizing.rb | 24 +- HPXMLtoOpenStudio/tests/results_annual.csv | 43 - .../tests/results_design_load_details.csv | 10009 ---------------- HPXMLtoOpenStudio/tests/test_hvac_sizing.rb | 3 + HPXMLtoOpenStudio/tests/test_validation.rb | 8 +- docs/source/workflow_inputs.rst | 3 +- 13 files changed, 45 insertions(+), 10113 deletions(-) delete mode 100644 HPXMLtoOpenStudio/tests/results_annual.csv delete mode 100644 HPXMLtoOpenStudio/tests/results_design_load_details.csv diff --git a/BuildResidentialHPXML/README.md b/BuildResidentialHPXML/README.md index de788e0bea..7b954c3003 100644 --- a/BuildResidentialHPXML/README.md +++ b/BuildResidentialHPXML/README.md @@ -1022,7 +1022,7 @@ Depth from grade to bottom of vertical slab perimeter insulation. Applies to sla **Slab: Exterior Horizontal Insulation Nominal R-value** -Nominal R-value of the slab exterior horizontal (wing/skirt) insulation. Applies to slab-on-grade foundations and basement/crawlspace floors. +Nominal R-value of the slab exterior horizontal insulation. Applies to slab-on-grade foundations and basement/crawlspace floors. - **Name:** ``slab_exterior_horizontal_insulation_r`` - **Type:** ``Double`` @@ -1035,7 +1035,7 @@ Nominal R-value of the slab exterior horizontal (wing/skirt) insulation. Applies **Slab: Exterior Horizontal Insulation Width** -Width of the slab exterior horizontal (wing/skirt) insulation measured from the exterior surface of the vertical slab perimeter insulation. Applies to slab-on-grade foundations and basement/crawlspace floors. +Width of the slab exterior horizontal insulation measured from the exterior surface of the vertical slab perimeter insulation. Applies to slab-on-grade foundations and basement/crawlspace floors. - **Name:** ``slab_exterior_horizontal_insulation_width`` - **Type:** ``Double`` @@ -1048,7 +1048,7 @@ Width of the slab exterior horizontal (wing/skirt) insulation measured from the **Slab: Exterior Horizontal Insulation Depth Below Grade** -Depth of the slab exterior horizontal (wing/skirt) insulation measured from the top surface of the slab exterior horizontal insulation. Applies to slab-on-grade foundations and basement/crawlspace floors. +Depth of the slab exterior horizontal insulation measured from the top surface of the slab exterior horizontal insulation. Applies to slab-on-grade foundations and basement/crawlspace floors. - **Name:** ``slab_exterior_horizontal_insulation_depth_below_grade`` - **Type:** ``Double`` diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 1a9333ed1d..497454c92d 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -637,19 +637,19 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('slab_exterior_horizontal_insulation_r', false) arg.setDisplayName('Slab: Exterior Horizontal Insulation Nominal R-value') arg.setUnits('h-ft^2-R/Btu') - arg.setDescription('Nominal R-value of the slab exterior horizontal (wing/skirt) insulation. Applies to slab-on-grade foundations and basement/crawlspace floors.') + arg.setDescription('Nominal R-value of the slab exterior horizontal insulation. Applies to slab-on-grade foundations and basement/crawlspace floors.') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('slab_exterior_horizontal_insulation_width', false) arg.setDisplayName('Slab: Exterior Horizontal Insulation Width') arg.setUnits('ft') - arg.setDescription('Width of the slab exterior horizontal (wing/skirt) insulation measured from the exterior surface of the vertical slab perimeter insulation. Applies to slab-on-grade foundations and basement/crawlspace floors.') + arg.setDescription('Width of the slab exterior horizontal insulation measured from the exterior surface of the vertical slab perimeter insulation. Applies to slab-on-grade foundations and basement/crawlspace floors.') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('slab_exterior_horizontal_insulation_depth_below_grade', false) arg.setDisplayName('Slab: Exterior Horizontal Insulation Depth Below Grade') arg.setUnits('ft') - arg.setDescription('Depth of the slab exterior horizontal (wing/skirt) insulation measured from the top surface of the slab exterior horizontal insulation. Applies to slab-on-grade foundations and basement/crawlspace floors.') + arg.setDescription('Depth of the slab exterior horizontal insulation measured from the top surface of the slab exterior horizontal insulation. Applies to slab-on-grade foundations and basement/crawlspace floors.') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('slab_under_insulation_r', true) diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index c99fe28c82..160cc7783d 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 3852085e-1613-4c19-983f-3c5bcfdc19aa - 2024-08-28T13:49:31Z + cc583c34-5fa1-4ec6-8ce1-932fe6575ac3 + 2024-08-30T14:45:05Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -1415,7 +1415,7 @@ slab_exterior_horizontal_insulation_r Slab: Exterior Horizontal Insulation Nominal R-value - Nominal R-value of the slab exterior horizontal (wing/skirt) insulation. Applies to slab-on-grade foundations and basement/crawlspace floors. + Nominal R-value of the slab exterior horizontal insulation. Applies to slab-on-grade foundations and basement/crawlspace floors. Double h-ft^2-R/Btu false @@ -1424,7 +1424,7 @@ slab_exterior_horizontal_insulation_width Slab: Exterior Horizontal Insulation Width - Width of the slab exterior horizontal (wing/skirt) insulation measured from the exterior surface of the vertical slab perimeter insulation. Applies to slab-on-grade foundations and basement/crawlspace floors. + Width of the slab exterior horizontal insulation measured from the exterior surface of the vertical slab perimeter insulation. Applies to slab-on-grade foundations and basement/crawlspace floors. Double ft false @@ -1433,7 +1433,7 @@ slab_exterior_horizontal_insulation_depth_below_grade Slab: Exterior Horizontal Insulation Depth Below Grade - Depth of the slab exterior horizontal (wing/skirt) insulation measured from the top surface of the slab exterior horizontal insulation. Applies to slab-on-grade foundations and basement/crawlspace floors. + Depth of the slab exterior horizontal insulation measured from the top surface of the slab exterior horizontal insulation. Applies to slab-on-grade foundations and basement/crawlspace floors. Double ft false @@ -7416,7 +7416,7 @@ README.md md readme - F2662668 + 5533A263 README.md.erb @@ -7433,7 +7433,7 @@ measure.rb rb script - 55D502E8 + 6D3C7443 constants.rb diff --git a/Changelog.md b/Changelog.md index 1fca748827..13aa5fdb0d 100644 --- a/Changelog.md +++ b/Changelog.md @@ -3,7 +3,7 @@ __New Features__ - Updates to HPXML v4.0 final release. - Adds inputs for modeling skylight curbs and/or shafts. -- Adds exterior horizontal insulation to a slab or basement foundation. +- Allows modeling exterior horizontal insulation for a slab-on-grade foundation (or basement/crawlspace floor). - Allows alternative infiltration input `AirInfiltrationMeasurement/LeakinessDescription`, in which the infiltration level is estimated using age of home, climate zone, foundation type, etc. - Updates hot water end uses for operational calculations (i.e., when `NumberofResidents` provided) based on FSEC study. - Central Fan Integrated Supply (CFIS) mechanical ventilation enhancements: diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 7814aed55e..fc127d930a 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 6f1b71cd-073a-4b20-bbc1-1e4d5ce1a151 - 2024-08-28T20:08:55Z + fe32292f-c2f6-4021-b408-5b0e5ac8f45a + 2024-08-30T15:02:13Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -183,7 +183,7 @@ measure.rb rb script - 6064F61F + 94AC624A airflow.rb @@ -213,7 +213,7 @@ constructions.rb rb resource - 1AEF514B + F2B9F3E6 data/Xing_okstate_0664D_13659_Table_A-3.csv @@ -357,13 +357,13 @@ hpxml.rb rb resource - 9222D4D6 + AC825F6B hpxml_defaults.rb rb resource - 6EC55ED7 + 09FCBD16 hpxml_schema/HPXML.xsd @@ -381,7 +381,7 @@ hpxml_schematron/EPvalidator.xml xml resource - AE956548 + DB85E710 hpxml_schematron/iso-schematron.xsd @@ -399,7 +399,7 @@ hvac_sizing.rb rb resource - 4205705D + A15272FB lighting.rb @@ -641,18 +641,6 @@ resource 93120E27 - - results_annual.csv - csv - test - 656341D9 - - - results_design_load_details.csv - csv - test - B2F544C7 - test_airflow.rb rb @@ -669,7 +657,7 @@ test_defaults.rb rb test - CBD787A1 + C12A1863 test_enclosure.rb @@ -699,7 +687,7 @@ test_hvac_sizing.rb rb test - 487BF287 + 3BA204D7 test_lighting.rb @@ -741,7 +729,7 @@ test_validation.rb rb test - 502A31E3 + ABE770EA test_water_heater.rb diff --git a/HPXMLtoOpenStudio/resources/constructions.rb b/HPXMLtoOpenStudio/resources/constructions.rb index 9a88304c24..c4ced8b388 100644 --- a/HPXMLtoOpenStudio/resources/constructions.rb +++ b/HPXMLtoOpenStudio/resources/constructions.rb @@ -2036,11 +2036,11 @@ def self.create_kiva_slab_foundation(model, int_horiz_r, int_horiz_width, int_ve end # Exterior horizontal insulation - if (ext_horiz_r > 0) && (ext_horiz_depth > 0) && (ext_horiz_width > 0) + if (ext_horiz_r > 0) && (ext_horiz_width > 0) ext_horiz_mat = create_insulation_material(model, 'exterior horizontal ins', ext_horiz_r) foundation.setExteriorHorizontalInsulationMaterial(ext_horiz_mat) foundation.setExteriorHorizontalInsulationDepth(UnitConversions.convert(ext_horiz_depth, 'ft', 'm')) - foundation.setExteriorHorizontalInsulationWidth(ext_horiz_width) + foundation.setExteriorHorizontalInsulationWidth(UnitConversions.convert(ext_horiz_width, 'ft', 'm')) end foundation.setWallHeightAboveGrade(UnitConversions.convert(concrete_thick_in, 'in', 'm')) diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 510251d4ac..668521a678 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -819,11 +819,9 @@ Expected 0 or 1 element(s) for xpath: DepthBelowGrade Expected 1 element(s) for xpath: PerimeterInsulation/Layer/NominalRValue Expected 1 element(s) for xpath: PerimeterInsulation/Layer/InsulationDepth - Expected 0 or 1 element(s) for xpath: ExteriorHorizontalInsulation/Layer/NominalRValue Expected 0 or 1 element(s) for xpath: ExteriorHorizontalInsulation/Layer/InsulationWidth Expected 0 or 1 element(s) for xpath: ExteriorHorizontalInsulation/Layer/InsulationDepthBelowGrade - Expected 1 element(s) for xpath: UnderSlabInsulation/Layer/NominalRValue Expected 1 element(s) for xpath: UnderSlabInsulation/Layer/InsulationWidth | UnderSlabInsulation/Layer/InsulationSpansEntireSlab[text()="true"] Expected 0 or 1 element(s) for xpath: extension/GapInsulationRValue diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index 80d3f472fe..aa1886eece 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -1397,7 +1397,7 @@ def self.process_load_slabs(mj, hpxml_bldg, all_zone_loads, all_space_loads) if slab.under_slab_insulation_spans_entire_slab && slab.under_slab_insulation_r_value > 0 slab_is_insulated = true end - if slab.exterior_horizontal_insulation_width.to_f > 0 && slab.exterior_horizontal_insulation_r_value.to_f > 0 + if slab.exterior_horizontal_insulation_width > 0 && slab.exterior_horizontal_insulation_r_value > 0 slab_is_insulated = true end @@ -4307,22 +4307,18 @@ def self.calc_slab_f_value(slab, ground_conductivity) r_concrete = Material.Concrete(slab.thickness).rvalue r_gravel = [slab_r_gravel_per_inch * (12.0 - slab.thickness), 0].max if slab.under_slab_insulation_spans_entire_slab - r_ins += slab.under_slab_insulation_r_value.to_f + r_ins += slab.under_slab_insulation_r_value + elsif radius <= slab.under_slab_insulation_width + r_ins += slab.under_slab_insulation_r_value end - if radius <= slab.under_slab_insulation_width.to_f && radius <= slab.perimeter_insulation_depth.to_f - r_ins += slab.under_slab_insulation_r_value.to_f + slab.perimeter_insulation_r_value.to_f + if radius <= slab.perimeter_insulation_depth + r_ins += slab.perimeter_insulation_r_value end - if radius <= slab.under_slab_insulation_width.to_f - r_ins += slab.under_slab_insulation_r_value.to_f - end - if radius <= slab.perimeter_insulation_depth.to_f - r_ins += slab.perimeter_insulation_r_value.to_f - end - if slab.exterior_horizontal_insulation_r_value.to_f > 0 - if radius >= slab.exterior_horizontal_insulation_depth_below_grade.to_f - hypotenuse = Math.sqrt(slab.exterior_horizontal_insulation_depth_below_grade.to_f**2 + slab.exterior_horizontal_insulation_width.to_f**2) + if slab.exterior_horizontal_insulation_r_value > 0 + if radius >= slab.exterior_horizontal_insulation_depth_below_grade + hypotenuse = Math.sqrt(slab.exterior_horizontal_insulation_depth_below_grade**2 + slab.exterior_horizontal_insulation_width**2) if radius <= hypotenuse - r_ins += slab.exterior_horizontal_insulation_r_value.to_f + r_ins += slab.exterior_horizontal_insulation_r_value end end end diff --git a/HPXMLtoOpenStudio/tests/results_annual.csv b/HPXMLtoOpenStudio/tests/results_annual.csv deleted file mode 100644 index 2b324f912d..0000000000 --- a/HPXMLtoOpenStudio/tests/results_annual.csv +++ /dev/null @@ -1,43 +0,0 @@ -HVAC Capacity: Heating (Btu/h),36000.0 -HVAC Capacity: Cooling (Btu/h),24000.0 -HVAC Capacity: Heat Pump Backup (Btu/h),0.0 - -HVAC Design Temperature: Heating (F),6.8 -HVAC Design Temperature: Cooling (F),91.76 - -HVAC Design Load: Heating: Total (Btu/h),17248.0 -HVAC Design Load: Heating: Ducts (Btu/h),1976.0 -HVAC Design Load: Heating: Windows (Btu/h),7508.0 -HVAC Design Load: Heating: Skylights (Btu/h),0.0 -HVAC Design Load: Heating: Doors (Btu/h),575.0 -HVAC Design Load: Heating: Walls (Btu/h),2198.0 -HVAC Design Load: Heating: Roofs (Btu/h),0.0 -HVAC Design Load: Heating: Floors (Btu/h),509.0 -HVAC Design Load: Heating: Slabs (Btu/h),0.0 -HVAC Design Load: Heating: Ceilings (Btu/h),2171.0 -HVAC Design Load: Heating: Infiltration (Btu/h),2310.0 -HVAC Design Load: Heating: Ventilation (Btu/h),0.0 -HVAC Design Load: Heating: Piping (Btu/h),0.0 -HVAC Design Load: Cooling Sensible: Total (Btu/h),13584.0 -HVAC Design Load: Cooling Sensible: Ducts (Btu/h),0.0 -HVAC Design Load: Cooling Sensible: Windows (Btu/h),7037.0 -HVAC Design Load: Cooling Sensible: Skylights (Btu/h),0.0 -HVAC Design Load: Cooling Sensible: Doors (Btu/h),207.0 -HVAC Design Load: Cooling Sensible: Walls (Btu/h),281.0 -HVAC Design Load: Cooling Sensible: Roofs (Btu/h),0.0 -HVAC Design Load: Cooling Sensible: Floors (Btu/h),135.0 -HVAC Design Load: Cooling Sensible: Slabs (Btu/h),0.0 -HVAC Design Load: Cooling Sensible: Ceilings (Btu/h),2293.0 -HVAC Design Load: Cooling Sensible: Infiltration (Btu/h),311.0 -HVAC Design Load: Cooling Sensible: Ventilation (Btu/h),0.0 -HVAC Design Load: Cooling Sensible: Internal Gains (Btu/h),3320.0 -HVAC Design Load: Cooling Sensible: Blower Heat (Btu/h),0.0 -HVAC Design Load: Cooling Sensible: AED Excursion (Btu/h),0.0 -HVAC Design Load: Cooling Latent: Total (Btu/h),469.0 -HVAC Design Load: Cooling Latent: Ducts (Btu/h),0.0 -HVAC Design Load: Cooling Latent: Infiltration (Btu/h),-331.0 -HVAC Design Load: Cooling Latent: Ventilation (Btu/h),0.0 -HVAC Design Load: Cooling Latent: Internal Gains (Btu/h),800.0 - -HVAC Geothermal Loop: Borehole/Trench Count,0 -HVAC Geothermal Loop: Borehole/Trench Length (ft),0.0 diff --git a/HPXMLtoOpenStudio/tests/results_design_load_details.csv b/HPXMLtoOpenStudio/tests/results_design_load_details.csv deleted file mode 100644 index a2a77f207d..0000000000 --- a/HPXMLtoOpenStudio/tests/results_design_load_details.csv +++ /dev/null @@ -1,10009 +0,0 @@ -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,66.79,26.2 -Windows: Window2,E,66.79,76.5 -Windows: Window3,S,66.79,39.63 -Windows: Window4,W,66.79,76.5 -Doors: Door1,S,21.14,6.13 -Doors: Door2,N,21.14,6.13 -Above Grade Walls: RimJoist1,N,12.83,3.82 -Above Grade Walls: RimJoist2,E,12.83,3.82 -Above Grade Walls: RimJoist3,S,12.83,3.82 -Above Grade Walls: RimJoist4,W,12.83,3.82 -Above Grade Walls: Wall1,N,5.47,1.03 -Above Grade Walls: Wall2,E,5.47,1.03 -Above Grade Walls: Wall3,S,5.47,1.03 -Above Grade Walls: Wall4,W,5.47,1.03 -Above Grade Walls: FoundationWall1,N,47.37,4.33 -Above Grade Walls: FoundationWall2,E,47.37,4.33 -Above Grade Walls: FoundationWall3,S,47.37,4.33 -Above Grade Walls: FoundationWall4,W,47.37,4.33 -Below Grade Walls: FoundationWall1,N,10.42,0 -Below Grade Walls: FoundationWall2,E,10.42,0 -Below Grade Walls: FoundationWall3,S,10.42,0 -Below Grade Walls: FoundationWall4,W,10.42,0 -Ceilings: Floor1,,3.48,1.77 -Floors: Slab1,,1.59,0 -Infiltration,,,,294,138 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,90.0,,,6011,2358 -Windows: Window2,45.0,,,3005,3442 -Windows: Window3,90.0,,,6011,3567 -Windows: Window4,45.0,,,3005,3442 -Doors: Door1,20.0,,,423,123 -Doors: Door2,20.0,,,423,123 -Above Grade Walls: RimJoist1,42.7,,,548,163 -Above Grade Walls: RimJoist2,20.3,,,260,78 -Above Grade Walls: RimJoist3,42.7,,,548,163 -Above Grade Walls: RimJoist4,20.3,,,260,78 -Above Grade Walls: Wall1,366.0,,,2001,375 -Above Grade Walls: Wall2,171.0,,,935,175 -Above Grade Walls: Wall3,326.0,,,1782,334 -Above Grade Walls: Wall4,171.0,,,935,175 -Above Grade Walls: FoundationWall1,38.01,,,1801,165 -Above Grade Walls: FoundationWall2,18.01,,,853,78 -Above Grade Walls: FoundationWall3,38.01,,,1801,165 -Above Grade Walls: FoundationWall4,18.01,,,853,78 -Below Grade Walls: FoundationWall1,375.19,,,3909,0 -Below Grade Walls: FoundationWall2,177.79,,,1852,0 -Below Grade Walls: FoundationWall3,375.19,,,3909,0 -Below Grade Walls: FoundationWall4,177.79,,,1852,0 -Ceilings: Floor1,1539.0,,,5362,2721 -Floors: Slab1,1539.0,,,2448,0 -Infiltration,,,1.0,16862,1559,-2252 -Internal Gains,,,,,3320,800 -Ducts,,,,0,0,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,123 -Total,,,,67650,22805,-1452 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,5237,7923,10457,12606,14242,15685,16680,16974,16466,15551,13584,10146 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,78.84,0 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,,150,,11827,0 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,1699,0,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,28288,13449,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Doors: Door3,N,13.23,4.04 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: Wall3,,2.53,0.77 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Floor2,,1.48,0.45 -Floors: Slab1,,1.29,0 -Infiltration,,,,56,29 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Doors: Door3,4.0,,,53,16 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: Wall3,316.0,,,800,244 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Floor2,400.0,,,592,181 -Floors: Slab1,950.0,,,1223,0 -Infiltration,,,1.0,3251,438,-465 -Internal Gains,,,,,3320,800 -Ducts,,,,8696,6148,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,31787,20332,335 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,2.6,0.69 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,3507,930 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,4978,256,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,23247,14636,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,4.14,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.75,0 -Infiltration,,,,60,30 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,450.0,,,1864,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,2362,0 -Infiltration,,,1.0,3465,467,-496 -Internal Gains,,,,,3320,800 -Ducts,,,,0,0,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,21371,13772,304 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,3.38,0.36 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,4563,488 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,8549,6153,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,27874,20090,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Windows: Window5,N,20.86,9.87 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Above Grade Walls: FoundationWall2,,6.07,0.84 -Above Grade Walls: FoundationWall3,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Below Grade Walls: FoundationWall2,,4.14,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.74,0 -Infiltration,,,,103,53 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Windows: Window5,20.0,,,417,197 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,60.0,,,364,51 -Above Grade Walls: FoundationWall2,150.0,,,910,126 -Above Grade Walls: FoundationWall3,220.0,,,1335,185 -Below Grade Walls: FoundationWall1,420.0,,,1397,0 -Below Grade Walls: FoundationWall2,90.0,,,373,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,2345,0 -Infiltration,,,1.0,5981,808,-858 -Internal Gains,,,,,3320,800 -Ducts,,,,8774,6132,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,34665,20678,-58 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7276,8656,9745,10155,10325,11072,11641,11551,10897,10070,8227,3439 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,2.63,0.7 -Floors: Floor3,,2.62,0.69 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,675.0,,,1773,470 -Floors: Floor3,675.0,,,1766,468 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,4969,246,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,23269,14634,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,41.66,6.61 -Above Grade Walls: FoundationWall2,,6.07,0.84 -Above Grade Walls: FoundationWall3,,41.66,6.61 -Above Grade Walls: FoundationWall4,,6.07,0.84 -Below Grade Walls: FoundationWall1,,9.24,0 -Below Grade Walls: FoundationWall2,,3.33,0 -Below Grade Walls: FoundationWall3,,14.85,0 -Below Grade Walls: FoundationWall4,,4.14,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.6,0 -Floors: Slab2,,1.12,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,20.0,,,833,132 -Above Grade Walls: FoundationWall2,30.0,,,182,25 -Above Grade Walls: FoundationWall3,200.0,,,8332,1321 -Above Grade Walls: FoundationWall4,250.0,,,1517,211 -Below Grade Walls: FoundationWall1,140.0,,,1293,0 -Below Grade Walls: FoundationWall2,210.0,,,698,0 -Below Grade Walls: FoundationWall3,120.0,,,1782,0 -Below Grade Walls: FoundationWall4,150.0,,,621,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1150.0,,,1842,0 -Floors: Slab2,200.0,,,224,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8966,6155,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,43682,21645,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,S,20.86,15.19 -Windows: Window3,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.43,0 -Infiltration,,,,89,46 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,70.5,,,1470,649 -Windows: Window2,70.5,,,1470,1071 -Windows: Window3,105.8,,,2207,3234 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,66.1,,,182,23 -Above Grade Walls: Wall1,1084.9,,,2981,381 -Above Grade Walls: FoundationWall1,85.74,,,520,72 -Below Grade Walls: FoundationWall1,600.16,,,1996,0 -Ceilings: Floor1,900.0,,,1447,1529 -Floors: Slab1,900.0,,,1286,0 -Infiltration,,,1.0,5144,699,-743 -Internal Gains,,,,,3320,800 -Ducts,,,,7510,5094,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,1573 -Total,,,,26789,17853,57 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,2188,3310,4613,5685,6350,7591,9053,9950,10107,9626,7589,2709 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: Wall2,,2.75,0.35 -Above Grade Walls: Wall3,,2.53,0.77 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,1.48,0.45 -Floors: Slab2,,1.29,0 -Infiltration,,,,124,63 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,216.0,,,4505,1990 -Windows: Window2,144.0,,,3003,4402 -Windows: Window3,216.0,,,4505,3281 -Windows: Window4,144.0,,,3003,4402 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: RimJoist2,116.0,,,319,41 -Above Grade Walls: Wall2,1320.0,,,3627,463 -Above Grade Walls: Wall3,320.0,,,810,247 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,400.0,,,592,181 -Floors: Slab2,950.0,,,1223,0 -Infiltration,,,1.0,7199,972,-1033 -Internal Gains,,,,,3320,800 -Ducts,,,,7753,5061,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,44005,27026,-233 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,14192,16851,18936,19673,19954,21416,22553,22391,21130,19478,15746,6612 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Windows: Window5,N,20.86,9.87 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Above Grade Walls: FoundationWall2,,6.07,0.84 -Above Grade Walls: FoundationWall3,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Below Grade Walls: FoundationWall2,,4.14,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.74,0 -Infiltration,,,,103,53 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Windows: Window5,20.0,,,417,197 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,60.0,,,364,51 -Above Grade Walls: FoundationWall2,150.0,,,910,126 -Above Grade Walls: FoundationWall3,220.0,,,1335,185 -Below Grade Walls: FoundationWall1,420.0,,,1397,0 -Below Grade Walls: FoundationWall2,90.0,,,373,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,2345,0 -Infiltration,,,1.0,5981,808,-858 -Internal Gains,,,,,3320,800 -Ducts,,,,8774,6132,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,34665,20678,-58 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7276,8656,9745,10155,10325,11072,11641,11551,10897,10070,8227,3439 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Windows: Window5,N,20.86,9.87 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Above Grade Walls: FoundationWall2,,6.07,0.84 -Above Grade Walls: FoundationWall3,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Below Grade Walls: FoundationWall2,,4.14,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.74,0 -Floors: Slab2,,1.74,0 -Floors: Slab3,,1.74,0 -Infiltration,,,,103,53 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Windows: Window5,20.0,,,417,197 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,60.0,,,364,51 -Above Grade Walls: FoundationWall2,150.0,,,910,126 -Above Grade Walls: FoundationWall3,220.0,,,1335,185 -Below Grade Walls: FoundationWall1,420.0,,,1397,0 -Below Grade Walls: FoundationWall2,90.0,,,373,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,450.0,,,782,0 -Floors: Slab2,450.0,,,782,0 -Floors: Slab3,450.0,,,782,0 -Infiltration,,,1.0,5981,808,-858 -Internal Gains,,,,,3320,800 -Ducts,,,,8774,6132,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,34665,20678,-58 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7276,8656,9745,10155,10325,11072,11641,11551,10897,10070,8227,3439 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,3.26,0.86 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,4401,1167 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,1740,484,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,20902,15100,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,2.6,0.69 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,3513,932 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,6583,1882,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,24858,16262,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,1.61,0.43 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,2172,576 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,7412,2144,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,24346,16169,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor4,,1.61,1.7 -Floors: Floor1,,632.0,67.6 -Floors: Floor2,,19.75,2.11 -Floors: Floor3,,7.8,0.83 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor4,1350.0,,,2171,2293 -Floors: Floor1,450.0,,,284400,30420 -Floors: Floor2,450.0,,,8888,951 -Floors: Floor3,450.0,,,3511,376 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,9595,6384,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,321156,51580,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor4,,1.61,1.7 -Floors: Floor1,,12.64,1.35 -Floors: Floor2,,19.75,2.11 -Floors: Floor3,,7.8,0.83 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor4,1350.0,,,2171,2293 -Floors: Floor1,450.0,,,5688,608 -Floors: Floor2,450.0,,,8888,951 -Floors: Floor3,450.0,,,3511,376 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,8922,6171,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,41771,21555,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor4,,1.61,1.7 -Floors: Floor1,,3.16,0.34 -Floors: Floor2,,19.75,2.11 -Floors: Floor3,,7.8,0.83 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor4,1350.0,,,2171,2293 -Floors: Floor1,450.0,,,1422,152 -Floors: Floor2,450.0,,,8888,951 -Floors: Floor3,450.0,,,3511,376 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,8832,6165,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,37415,21093,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor4,,1.61,1.7 -Floors: Floor1,,3.16,0.34 -Floors: Floor2,,632.0,67.6 -Floors: Floor3,,7.8,0.83 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor4,1350.0,,,2171,2293 -Floors: Floor1,450.0,,,1422,152 -Floors: Floor2,450.0,,,284400,30420 -Floors: Floor3,450.0,,,3511,376 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,9602,6383,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,313698,50780,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor4,,1.61,1.7 -Floors: Floor1,,3.16,0.34 -Floors: Floor2,,12.64,1.35 -Floors: Floor3,,7.8,0.83 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor4,1350.0,,,2171,2293 -Floors: Floor1,450.0,,,1422,152 -Floors: Floor2,450.0,,,5688,608 -Floors: Floor3,450.0,,,3511,376 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,8760,6161,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,34144,20746,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor4,,1.61,1.7 -Floors: Floor1,,3.16,0.34 -Floors: Floor2,,3.16,0.34 -Floors: Floor3,,7.8,0.83 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor4,1350.0,,,2171,2293 -Floors: Floor1,450.0,,,1422,152 -Floors: Floor2,450.0,,,1422,152 -Floors: Floor3,450.0,,,3511,376 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,8621,6155,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,29738,20284,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor4,,1.61,1.7 -Floors: Floor1,,3.16,0.34 -Floors: Floor2,,3.16,0.34 -Floors: Floor3,,632.0,67.6 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor4,1350.0,,,2171,2293 -Floors: Floor1,450.0,,,1422,152 -Floors: Floor2,450.0,,,1422,152 -Floors: Floor3,450.0,,,284400,30420 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,9602,6383,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,311608,50556,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor4,,1.61,1.7 -Floors: Floor1,,3.16,0.34 -Floors: Floor2,,3.16,0.34 -Floors: Floor3,,12.64,1.35 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor4,1350.0,,,2171,2293 -Floors: Floor1,450.0,,,1422,152 -Floors: Floor2,450.0,,,1422,152 -Floors: Floor3,450.0,,,5688,608 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,8702,6158,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,31996,20520,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor4,,1.61,1.7 -Floors: Floor1,,3.16,0.34 -Floors: Floor2,,3.16,0.34 -Floors: Floor3,,3.16,0.34 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor4,1350.0,,,2171,2293 -Floors: Floor1,450.0,,,1422,152 -Floors: Floor2,450.0,,,1422,152 -Floors: Floor3,450.0,,,1422,152 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,8537,6152,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,27565,20058,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,31.92,72.73 -Floors: Floor1,,1.66,0.44 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,43092,98183 -Floors: Floor1,1350.0,,,2246,596 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,8064,2248,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,65993,112182,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,12.64,13.35 -Floors: Floor1,,1.66,0.44 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,17064,18025 -Floors: Floor1,1350.0,,,2246,596 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,7803,2160,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,39704,31937,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,3.16,3.34 -Floors: Floor1,,1.66,0.44 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,4266,4506 -Floors: Floor1,1350.0,,,2246,596 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,7482,2144,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,26585,18402,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,83.82,109.68 -Ceilings: Floor2,,2.62,3.43 -Ceilings: Floor3,,1.03,1.35 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,450.0,,,37720,49358 -Ceilings: Floor2,450.0,,,1179,1542 -Ceilings: Floor3,450.0,,,466,609 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,5211,2052,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,65935,65196,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,12.64,13.35 -Ceilings: Floor2,,19.75,20.86 -Ceilings: Floor3,,7.8,8.24 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,450.0,,,5688,6008 -Ceilings: Floor2,450.0,,,8888,9388 -Ceilings: Floor3,450.0,,,3511,3709 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,9035,6287,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,48481,37026,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,3.16,3.34 -Ceilings: Floor2,,19.75,20.86 -Ceilings: Floor3,,7.8,8.24 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,450.0,,,1422,1502 -Ceilings: Floor2,450.0,,,8888,9388 -Ceilings: Floor3,450.0,,,3511,3709 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8973,6247,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,44154,32480,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,0.43,0.56 -Ceilings: Floor2,,85.69,111.02 -Ceilings: Floor3,,1.06,1.37 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,450.0,,,193,250 -Ceilings: Floor2,450.0,,,38562,49957 -Ceilings: Floor3,450.0,,,476,617 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,5224,2062,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,65814,64520,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,3.16,3.34 -Ceilings: Floor2,,12.64,13.35 -Ceilings: Floor3,,7.8,8.24 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,450.0,,,1422,1502 -Ceilings: Floor2,450.0,,,5688,6008 -Ceilings: Floor3,450.0,,,3511,3709 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8906,6249,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,40886,29102,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,3.16,3.34 -Ceilings: Floor2,,3.16,3.34 -Ceilings: Floor3,,7.8,8.24 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,450.0,,,1422,1502 -Ceilings: Floor2,450.0,,,1422,1502 -Ceilings: Floor3,450.0,,,3511,3709 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8811,6182,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,36525,24528,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,0.43,0.56 -Ceilings: Floor2,,0.43,0.56 -Ceilings: Floor3,,86.23,111.4 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,450.0,,,194,251 -Ceilings: Floor2,450.0,,,194,251 -Ceilings: Floor3,450.0,,,38804,50129 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,5228,2065,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,65780,64330,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,3.16,3.34 -Ceilings: Floor2,,3.16,3.34 -Ceilings: Floor3,,12.64,13.35 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,450.0,,,1422,1502 -Ceilings: Floor2,450.0,,,1422,1502 -Ceilings: Floor3,450.0,,,5688,6008 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8862,6233,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,38753,26879,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,3.16,3.34 -Ceilings: Floor2,,3.16,3.34 -Ceilings: Floor3,,3.16,3.34 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,450.0,,,1422,1502 -Ceilings: Floor2,450.0,,,1422,1502 -Ceilings: Floor3,450.0,,,1422,1502 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8767,6164,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,34392,22304,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,18.56,7.87 -Windows: Window2,E,18.56,24.95 -Windows: Window3,S,18.56,12.65 -Windows: Window4,W,18.56,24.95 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2004,849 -Windows: Window2,72.0,,,1336,1796 -Windows: Window3,108.0,,,2004,1366 -Windows: Window4,72.0,,,1336,1796 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8684,6080,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,31386,18778,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,5654,6759,7635,7968,8113,8724,9194,9135,8625,7948,6430,2743 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,11.71 -Windows: Window3,S,20.86,0.57 -Windows: Window4,W,20.86,0.0 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,843 -Windows: Window3,108.0,,,2252,61 -Windows: Window4,72.0,,,1502,0 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,5986,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,14775,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,2393,2623,2638,2483,2402,2464,2458,2387,2204,2107,2102,924 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,9.57,7.09 -Windows: Window2,E,9.57,10.65 -Windows: Window3,S,9.57,0.32 -Windows: Window4,W,9.57,0.0 -Doors: Door1,S,6.59,4.63 -Above Grade Walls: RimJoist1,,1.26,0.25 -Above Grade Walls: Wall1,,1.26,0.25 -Above Grade Walls: FoundationWall1,,2.78,0.61 -Below Grade Walls: FoundationWall1,,1.53,0 -Ceilings: Floor1,,0.74,1.64 -Floors: Slab1,,0.59,0 -Infiltration,,,,68,35 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,1034,765 -Windows: Window2,72.0,,,689,767 -Windows: Window3,108.0,,,1034,34 -Windows: Window4,72.0,,,689,0 -Doors: Door1,40.0,,,264,185 -Above Grade Walls: RimJoist1,115.6,,,146,29 -Above Grade Walls: Wall1,800.0,,,1009,198 -Above Grade Walls: FoundationWall1,150.0,,,418,92 -Below Grade Walls: FoundationWall1,1050.0,,,1602,0 -Ceilings: Floor1,1350.0,,,996,2212 -Floors: Slab1,1350.0,,,798,0 -Infiltration,,,1.0,2145,364,38 -Internal Gains,,,,,3320,800 -Ducts,,,,6515,6623,27 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,17338,14589,865 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,2441,2612,2563,2345,2211,2231,2196,2110,1928,1860,1909,704 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,14.56,11.63 -Windows: Window2,E,14.56,33.12 -Windows: Window3,S,14.56,15.26 -Windows: Window4,W,14.56,33.12 -Doors: Door1,S,10.03,7.82 -Above Grade Walls: Wall1,,1.92,0.86 -Ceilings: Floor1,,5.07,6.71 -Floors: Slab1,,55.04,0 -Infiltration,,,,37,22 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,1572,1256 -Windows: Window2,72.0,,,1048,2385 -Windows: Window3,108.0,,,1572,1648 -Windows: Window4,72.0,,,1048,2385 -Doors: Door1,40.0,,,401,313 -Above Grade Walls: Wall1,800.0,,,1535,686 -Ceilings: Floor1,1350.0,,,6846,9065 -Floors: Slab1,,150,,8256,0 -Infiltration,,,1.0,1745,565,391 -Internal Gains,,,,,3320,800 -Ducts,,,,1422,68,438 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,25447,21691,1628 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,8469,9457,10086,10083,9995,10678,11354,11490,11075,10410,8733,4291 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,14.56,11.63 -Windows: Window2,E,14.56,33.12 -Windows: Window3,S,14.56,15.26 -Windows: Window4,W,14.56,33.12 -Doors: Door1,S,10.03,7.82 -Above Grade Walls: Wall1,,1.92,0.86 -Ceilings: Floor1,,5.07,6.71 -Floors: Slab1,,55.04,0 -Infiltration,,,,37,22 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,1572,1256 -Windows: Window2,72.0,,,1048,2385 -Windows: Window3,108.0,,,1572,1648 -Windows: Window4,72.0,,,1048,2385 -Doors: Door1,40.0,,,401,313 -Above Grade Walls: Wall1,800.0,,,1535,686 -Ceilings: Floor1,1350.0,,,6846,9065 -Floors: Slab1,,150,,8256,0 -Infiltration,,,1.0,1745,565,391 -Internal Gains,,,,,3320,800 -Ducts,,,,1422,68,438 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,25447,21691,1628 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,8469,9457,10086,10083,9995,10678,11354,11490,11075,10410,8733,4291 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,14.56,11.63 -Windows: Window2,E,14.56,33.12 -Windows: Window3,S,14.56,15.26 -Windows: Window4,W,14.56,33.12 -Doors: Door1,S,10.03,7.82 -Above Grade Walls: Wall1,,1.92,0.86 -Ceilings: Floor1,,1.9,2.52 -Floors: Slab1,,55.04,0 -Infiltration,,,,37,22 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,1572,1256 -Windows: Window2,72.0,,,1048,2385 -Windows: Window3,108.0,,,1572,1648 -Windows: Window4,72.0,,,1048,2385 -Doors: Door1,40.0,,,401,313 -Above Grade Walls: Wall1,800.0,,,1535,686 -Ceilings: Floor1,1350.0,,,2570,3397 -Floors: Slab1,,150,,8256,0 -Infiltration,,,1.0,1745,565,391 -Internal Gains,,,,,3320,800 -Ducts,,,,1398,73,438 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,21146,16029,1628 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,8469,9457,10086,10083,9995,10678,11354,11490,11075,10410,8733,4291 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,14.56,11.63 -Windows: Window2,E,14.56,33.12 -Windows: Window3,S,14.56,15.26 -Windows: Window4,W,14.56,33.12 -Doors: Door1,S,10.03,7.82 -Above Grade Walls: Wall1,,1.92,0.86 -Ceilings: Floor1,,22.31,72.76 -Floors: Slab1,,55.04,0 -Infiltration,,,,37,22 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,1572,1256 -Windows: Window2,72.0,,,1048,2385 -Windows: Window3,108.0,,,1572,1648 -Windows: Window4,72.0,,,1048,2385 -Doors: Door1,40.0,,,401,313 -Above Grade Walls: Wall1,800.0,,,1535,686 -Ceilings: Floor1,1350.0,,,30119,98220 -Floors: Slab1,,150,,8256,0 -Infiltration,,,1.0,1745,565,391 -Internal Gains,,,,,3320,800 -Ducts,,,,1480,55,438 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,48778,110833,1628 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,8469,9457,10086,10083,9995,10678,11354,11490,11075,10410,8733,4291 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,14.56,11.63 -Windows: Window2,E,14.56,33.12 -Windows: Window3,S,14.56,15.26 -Windows: Window4,W,14.56,33.12 -Doors: Door1,S,10.03,7.82 -Above Grade Walls: Wall1,,1.92,0.86 -Ceilings: Floor1,,8.82,15.68 -Floors: Slab1,,55.04,0 -Infiltration,,,,37,22 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,1572,1256 -Windows: Window2,72.0,,,1048,2385 -Windows: Window3,108.0,,,1572,1648 -Windows: Window4,72.0,,,1048,2385 -Doors: Door1,40.0,,,401,313 -Above Grade Walls: Wall1,800.0,,,1535,686 -Ceilings: Floor1,1350.0,,,11912,21173 -Floors: Slab1,,150,,8256,0 -Infiltration,,,1.0,1745,565,391 -Internal Gains,,,,,3320,800 -Ducts,,,,1442,62,438 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,30533,33793,1628 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,8469,9457,10086,10083,9995,10678,11354,11490,11075,10410,8733,4291 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,14.56,11.63 -Windows: Window2,E,14.56,33.12 -Windows: Window3,S,14.56,15.26 -Windows: Window4,W,14.56,33.12 -Doors: Door1,S,10.03,7.82 -Above Grade Walls: Wall1,,1.92,0.86 -Ceilings: Floor1,,2.21,3.92 -Floors: Slab1,,55.04,0 -Infiltration,,,,37,22 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,1572,1256 -Windows: Window2,72.0,,,1048,2385 -Windows: Window3,108.0,,,1572,1648 -Windows: Window4,72.0,,,1048,2385 -Doors: Door1,40.0,,,401,313 -Above Grade Walls: Wall1,800.0,,,1535,686 -Ceilings: Floor1,1350.0,,,2978,5293 -Floors: Slab1,,150,,8256,0 -Infiltration,,,1.0,1745,565,391 -Internal Gains,,,,,3320,800 -Ducts,,,,1400,71,438 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,21557,17922,1628 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,8469,9457,10086,10083,9995,10678,11354,11490,11075,10410,8733,4291 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,632.0,233.0 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,73059,26935 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,9401,6369,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,105673,47190,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,12.64,4.66 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,1461,539 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8741,6141,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,33415,20566,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,3.16,0.44 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,365,51 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8710,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32288,20050,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,632.0,297.6 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,6952,3274 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8932,6083,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,42328,18907,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,12.64,5.95 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,139,65 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8781,5999,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,35363,15614,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,3.16,0.61 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,35,7 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8778,6013,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,35256,15569,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,3.16,0.61 -Above Grade Walls: RimJoist2,,632.0,233.0 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,35,7 -Above Grade Walls: RimJoist2,11.0,,,6952,2563 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8933,6087,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,42332,18203,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,3.16,0.61 -Above Grade Walls: RimJoist2,,12.64,4.66 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,35,7 -Above Grade Walls: RimJoist2,11.0,,,139,51 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8781,5999,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,35368,15602,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,3.16,0.61 -Above Grade Walls: RimJoist2,,3.16,0.44 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,35,7 -Above Grade Walls: RimJoist2,11.0,,,35,5 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8778,6013,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,35261,15570,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,3.16,0.61 -Above Grade Walls: RimJoist2,,3.16,0.44 -Above Grade Walls: RimJoist3,,632.0,93.1 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,35,7 -Above Grade Walls: RimJoist2,11.0,,,35,5 -Above Grade Walls: RimJoist3,11.0,,,6952,1024 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8933,6045,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,42337,16625,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,3.16,0.61 -Above Grade Walls: RimJoist2,,3.16,0.44 -Above Grade Walls: RimJoist3,,12.64,1.86 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,35,7 -Above Grade Walls: RimJoist2,11.0,,,35,5 -Above Grade Walls: RimJoist3,11.0,,,139,20 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8781,6014,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,35373,15589,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,3.16,0.61 -Above Grade Walls: RimJoist2,,3.16,0.44 -Above Grade Walls: RimJoist3,,3.16,0.2 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,35,7 -Above Grade Walls: RimJoist2,11.0,,,35,5 -Above Grade Walls: RimJoist3,11.0,,,35,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8779,6013,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,35266,15571,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,3.16,0.61 -Above Grade Walls: RimJoist2,,3.16,0.44 -Above Grade Walls: RimJoist3,,3.16,0.2 -Above Grade Walls: RimJoist4,,632.0,297.6 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,35,7 -Above Grade Walls: RimJoist2,11.0,,,35,5 -Above Grade Walls: RimJoist3,11.0,,,35,2 -Above Grade Walls: RimJoist4,11.0,,,6952,3274 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8933,6084,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,42342,18909,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,3.16,0.61 -Above Grade Walls: RimJoist2,,3.16,0.44 -Above Grade Walls: RimJoist3,,3.16,0.2 -Above Grade Walls: RimJoist4,,12.64,5.95 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,35,7 -Above Grade Walls: RimJoist2,11.0,,,35,5 -Above Grade Walls: RimJoist3,11.0,,,35,2 -Above Grade Walls: RimJoist4,11.0,,,139,65 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8782,5999,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,35377,15617,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,3.16,0.61 -Above Grade Walls: RimJoist2,,3.16,0.44 -Above Grade Walls: RimJoist3,,3.16,0.2 -Above Grade Walls: RimJoist4,,3.16,0.61 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,35,7 -Above Grade Walls: RimJoist2,11.0,,,35,5 -Above Grade Walls: RimJoist3,11.0,,,35,2 -Above Grade Walls: RimJoist4,11.0,,,35,7 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8779,6013,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,35270,15572,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,3.16,0.61 -Above Grade Walls: RimJoist2,,3.16,0.44 -Above Grade Walls: RimJoist3,,3.16,0.2 -Above Grade Walls: RimJoist4,,3.16,0.61 -Above Grade Walls: RimJoist5,,632.0,297.6 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,35,7 -Above Grade Walls: RimJoist2,11.0,,,35,5 -Above Grade Walls: RimJoist3,11.0,,,35,2 -Above Grade Walls: RimJoist4,11.0,,,35,7 -Above Grade Walls: RimJoist5,11.0,,,6952,3274 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8933,6084,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,42346,18911,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,3.16,0.61 -Above Grade Walls: RimJoist2,,3.16,0.44 -Above Grade Walls: RimJoist3,,3.16,0.2 -Above Grade Walls: RimJoist4,,3.16,0.61 -Above Grade Walls: RimJoist5,,12.64,5.95 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,35,7 -Above Grade Walls: RimJoist2,11.0,,,35,5 -Above Grade Walls: RimJoist3,11.0,,,35,2 -Above Grade Walls: RimJoist4,11.0,,,35,7 -Above Grade Walls: RimJoist5,11.0,,,139,65 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8782,5999,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,35382,15618,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,3.16,0.61 -Above Grade Walls: RimJoist2,,3.16,0.44 -Above Grade Walls: RimJoist3,,3.16,0.2 -Above Grade Walls: RimJoist4,,3.16,0.61 -Above Grade Walls: RimJoist5,,3.16,0.61 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,35,7 -Above Grade Walls: RimJoist2,11.0,,,35,5 -Above Grade Walls: RimJoist3,11.0,,,35,2 -Above Grade Walls: RimJoist4,11.0,,,35,7 -Above Grade Walls: RimJoist5,11.0,,,35,7 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8779,6013,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,35275,15573,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,3.16,0.61 -Above Grade Walls: RimJoist2,,3.16,0.44 -Above Grade Walls: RimJoist3,,3.16,0.2 -Above Grade Walls: RimJoist4,,3.16,0.61 -Above Grade Walls: RimJoist5,,3.16,0.61 -Above Grade Walls: RimJoist6,,632.0,164.6 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,35,7 -Above Grade Walls: RimJoist2,11.0,,,35,5 -Above Grade Walls: RimJoist3,11.0,,,35,2 -Above Grade Walls: RimJoist4,11.0,,,35,7 -Above Grade Walls: RimJoist5,11.0,,,35,7 -Above Grade Walls: RimJoist6,11.0,,,6952,1811 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8933,6053,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,42351,17422,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,3.16,0.61 -Above Grade Walls: RimJoist2,,3.16,0.44 -Above Grade Walls: RimJoist3,,3.16,0.2 -Above Grade Walls: RimJoist4,,3.16,0.61 -Above Grade Walls: RimJoist5,,3.16,0.61 -Above Grade Walls: RimJoist6,,12.64,3.29 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,35,7 -Above Grade Walls: RimJoist2,11.0,,,35,5 -Above Grade Walls: RimJoist3,11.0,,,35,2 -Above Grade Walls: RimJoist4,11.0,,,35,7 -Above Grade Walls: RimJoist5,11.0,,,35,7 -Above Grade Walls: RimJoist6,11.0,,,139,36 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8782,6014,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,35387,15608,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,3.16,0.61 -Above Grade Walls: RimJoist2,,3.16,0.44 -Above Grade Walls: RimJoist3,,3.16,0.2 -Above Grade Walls: RimJoist4,,3.16,0.61 -Above Grade Walls: RimJoist5,,3.16,0.61 -Above Grade Walls: RimJoist6,,3.16,0.25 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,35,7 -Above Grade Walls: RimJoist2,11.0,,,35,5 -Above Grade Walls: RimJoist3,11.0,,,35,2 -Above Grade Walls: RimJoist4,11.0,,,35,7 -Above Grade Walls: RimJoist5,11.0,,,35,7 -Above Grade Walls: RimJoist6,11.0,,,35,3 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8779,6013,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,35280,15574,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,3.16,0.61 -Above Grade Walls: RimJoist2,,3.16,0.44 -Above Grade Walls: RimJoist3,,3.16,0.2 -Above Grade Walls: RimJoist4,,3.16,0.61 -Above Grade Walls: RimJoist5,,3.16,0.61 -Above Grade Walls: RimJoist6,,3.16,0.25 -Above Grade Walls: RimJoist7,,632.0,233.0 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,35,7 -Above Grade Walls: RimJoist2,11.0,,,35,5 -Above Grade Walls: RimJoist3,11.0,,,35,2 -Above Grade Walls: RimJoist4,11.0,,,35,7 -Above Grade Walls: RimJoist5,11.0,,,35,7 -Above Grade Walls: RimJoist6,11.0,,,35,3 -Above Grade Walls: RimJoist7,11.0,,,6952,2563 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8933,6087,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,42355,18207,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,3.16,0.61 -Above Grade Walls: RimJoist2,,3.16,0.44 -Above Grade Walls: RimJoist3,,3.16,0.2 -Above Grade Walls: RimJoist4,,3.16,0.61 -Above Grade Walls: RimJoist5,,3.16,0.61 -Above Grade Walls: RimJoist6,,3.16,0.25 -Above Grade Walls: RimJoist7,,12.64,4.66 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,35,7 -Above Grade Walls: RimJoist2,11.0,,,35,5 -Above Grade Walls: RimJoist3,11.0,,,35,2 -Above Grade Walls: RimJoist4,11.0,,,35,7 -Above Grade Walls: RimJoist5,11.0,,,35,7 -Above Grade Walls: RimJoist6,11.0,,,35,3 -Above Grade Walls: RimJoist7,11.0,,,139,51 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8782,5999,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,35391,15607,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,3.16,0.61 -Above Grade Walls: RimJoist2,,3.16,0.44 -Above Grade Walls: RimJoist3,,3.16,0.2 -Above Grade Walls: RimJoist4,,3.16,0.61 -Above Grade Walls: RimJoist5,,3.16,0.61 -Above Grade Walls: RimJoist6,,3.16,0.25 -Above Grade Walls: RimJoist7,,3.16,0.44 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,35,7 -Above Grade Walls: RimJoist2,11.0,,,35,5 -Above Grade Walls: RimJoist3,11.0,,,35,2 -Above Grade Walls: RimJoist4,11.0,,,35,7 -Above Grade Walls: RimJoist5,11.0,,,35,7 -Above Grade Walls: RimJoist6,11.0,,,35,3 -Above Grade Walls: RimJoist7,11.0,,,35,5 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8779,6013,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,35284,15575,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,3.16,0.61 -Above Grade Walls: RimJoist2,,3.16,0.44 -Above Grade Walls: RimJoist3,,3.16,0.2 -Above Grade Walls: RimJoist4,,3.16,0.61 -Above Grade Walls: RimJoist5,,3.16,0.61 -Above Grade Walls: RimJoist6,,3.16,0.25 -Above Grade Walls: RimJoist7,,3.16,0.44 -Above Grade Walls: RimJoist8,,632.0,297.6 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,35,7 -Above Grade Walls: RimJoist2,11.0,,,35,5 -Above Grade Walls: RimJoist3,11.0,,,35,2 -Above Grade Walls: RimJoist4,11.0,,,35,7 -Above Grade Walls: RimJoist5,11.0,,,35,7 -Above Grade Walls: RimJoist6,11.0,,,35,3 -Above Grade Walls: RimJoist7,11.0,,,35,5 -Above Grade Walls: RimJoist8,11.0,,,6952,3274 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8933,6084,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,42360,18913,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,3.16,0.61 -Above Grade Walls: RimJoist2,,3.16,0.44 -Above Grade Walls: RimJoist3,,3.16,0.2 -Above Grade Walls: RimJoist4,,3.16,0.61 -Above Grade Walls: RimJoist5,,3.16,0.61 -Above Grade Walls: RimJoist6,,3.16,0.25 -Above Grade Walls: RimJoist7,,3.16,0.44 -Above Grade Walls: RimJoist8,,12.64,5.95 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,35,7 -Above Grade Walls: RimJoist2,11.0,,,35,5 -Above Grade Walls: RimJoist3,11.0,,,35,2 -Above Grade Walls: RimJoist4,11.0,,,35,7 -Above Grade Walls: RimJoist5,11.0,,,35,7 -Above Grade Walls: RimJoist6,11.0,,,35,3 -Above Grade Walls: RimJoist7,11.0,,,35,5 -Above Grade Walls: RimJoist8,11.0,,,139,65 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8782,5999,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,35396,15621,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,3.16,0.61 -Above Grade Walls: RimJoist2,,3.16,0.44 -Above Grade Walls: RimJoist3,,3.16,0.2 -Above Grade Walls: RimJoist4,,3.16,0.61 -Above Grade Walls: RimJoist5,,3.16,0.61 -Above Grade Walls: RimJoist6,,3.16,0.25 -Above Grade Walls: RimJoist7,,3.16,0.44 -Above Grade Walls: RimJoist8,,3.16,0.61 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,35,7 -Above Grade Walls: RimJoist2,11.0,,,35,5 -Above Grade Walls: RimJoist3,11.0,,,35,2 -Above Grade Walls: RimJoist4,11.0,,,35,7 -Above Grade Walls: RimJoist5,11.0,,,35,7 -Above Grade Walls: RimJoist6,11.0,,,35,3 -Above Grade Walls: RimJoist7,11.0,,,35,5 -Above Grade Walls: RimJoist8,11.0,,,35,7 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8779,6013,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,35289,15576,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,3.16,0.61 -Above Grade Walls: RimJoist2,,3.16,0.44 -Above Grade Walls: RimJoist3,,3.16,0.2 -Above Grade Walls: RimJoist4,,3.16,0.61 -Above Grade Walls: RimJoist5,,3.16,0.61 -Above Grade Walls: RimJoist6,,3.16,0.25 -Above Grade Walls: RimJoist7,,3.16,0.44 -Above Grade Walls: RimJoist8,,3.16,0.61 -Above Grade Walls: RimJoist9,,632.0,164.6 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,35,7 -Above Grade Walls: RimJoist2,11.0,,,35,5 -Above Grade Walls: RimJoist3,11.0,,,35,2 -Above Grade Walls: RimJoist4,11.0,,,35,7 -Above Grade Walls: RimJoist5,11.0,,,35,7 -Above Grade Walls: RimJoist6,11.0,,,35,3 -Above Grade Walls: RimJoist7,11.0,,,35,5 -Above Grade Walls: RimJoist8,11.0,,,35,7 -Above Grade Walls: RimJoist9,11.0,,,6952,1811 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8933,6054,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,42365,17425,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,3.16,0.61 -Above Grade Walls: RimJoist2,,3.16,0.44 -Above Grade Walls: RimJoist3,,3.16,0.2 -Above Grade Walls: RimJoist4,,3.16,0.61 -Above Grade Walls: RimJoist5,,3.16,0.61 -Above Grade Walls: RimJoist6,,3.16,0.25 -Above Grade Walls: RimJoist7,,3.16,0.44 -Above Grade Walls: RimJoist8,,3.16,0.61 -Above Grade Walls: RimJoist9,,12.64,3.29 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,35,7 -Above Grade Walls: RimJoist2,11.0,,,35,5 -Above Grade Walls: RimJoist3,11.0,,,35,2 -Above Grade Walls: RimJoist4,11.0,,,35,7 -Above Grade Walls: RimJoist5,11.0,,,35,7 -Above Grade Walls: RimJoist6,11.0,,,35,3 -Above Grade Walls: RimJoist7,11.0,,,35,5 -Above Grade Walls: RimJoist8,11.0,,,35,7 -Above Grade Walls: RimJoist9,11.0,,,139,36 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8782,6014,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,35401,15611,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,3.16,0.61 -Above Grade Walls: RimJoist2,,3.16,0.44 -Above Grade Walls: RimJoist3,,3.16,0.2 -Above Grade Walls: RimJoist4,,3.16,0.61 -Above Grade Walls: RimJoist5,,3.16,0.61 -Above Grade Walls: RimJoist6,,3.16,0.25 -Above Grade Walls: RimJoist7,,3.16,0.44 -Above Grade Walls: RimJoist8,,3.16,0.61 -Above Grade Walls: RimJoist9,,3.16,0.25 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,35,7 -Above Grade Walls: RimJoist2,11.0,,,35,5 -Above Grade Walls: RimJoist3,11.0,,,35,2 -Above Grade Walls: RimJoist4,11.0,,,35,7 -Above Grade Walls: RimJoist5,11.0,,,35,7 -Above Grade Walls: RimJoist6,11.0,,,35,3 -Above Grade Walls: RimJoist7,11.0,,,35,5 -Above Grade Walls: RimJoist8,11.0,,,35,7 -Above Grade Walls: RimJoist9,11.0,,,35,3 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8779,6013,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,35294,15577,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,3.16,0.61 -Above Grade Walls: RimJoist2,,3.16,0.44 -Above Grade Walls: RimJoist3,,3.16,0.2 -Above Grade Walls: RimJoist4,,3.16,0.61 -Above Grade Walls: RimJoist5,,3.16,0.61 -Above Grade Walls: RimJoist6,,3.16,0.25 -Above Grade Walls: RimJoist7,,3.16,0.44 -Above Grade Walls: RimJoist8,,3.16,0.61 -Above Grade Walls: RimJoist9,,3.16,0.25 -Above Grade Walls: RimJoist10,,632.0,233.0 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,35,7 -Above Grade Walls: RimJoist2,11.0,,,35,5 -Above Grade Walls: RimJoist3,11.0,,,35,2 -Above Grade Walls: RimJoist4,11.0,,,35,7 -Above Grade Walls: RimJoist5,11.0,,,35,7 -Above Grade Walls: RimJoist6,11.0,,,35,3 -Above Grade Walls: RimJoist7,11.0,,,35,5 -Above Grade Walls: RimJoist8,11.0,,,35,7 -Above Grade Walls: RimJoist9,11.0,,,35,3 -Above Grade Walls: RimJoist10,11.0,,,6952,2563 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8933,6088,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,42369,18210,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,3.16,0.61 -Above Grade Walls: RimJoist2,,3.16,0.44 -Above Grade Walls: RimJoist3,,3.16,0.2 -Above Grade Walls: RimJoist4,,3.16,0.61 -Above Grade Walls: RimJoist5,,3.16,0.61 -Above Grade Walls: RimJoist6,,3.16,0.25 -Above Grade Walls: RimJoist7,,3.16,0.44 -Above Grade Walls: RimJoist8,,3.16,0.61 -Above Grade Walls: RimJoist9,,3.16,0.25 -Above Grade Walls: RimJoist10,,12.64,4.66 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,35,7 -Above Grade Walls: RimJoist2,11.0,,,35,5 -Above Grade Walls: RimJoist3,11.0,,,35,2 -Above Grade Walls: RimJoist4,11.0,,,35,7 -Above Grade Walls: RimJoist5,11.0,,,35,7 -Above Grade Walls: RimJoist6,11.0,,,35,3 -Above Grade Walls: RimJoist7,11.0,,,35,5 -Above Grade Walls: RimJoist8,11.0,,,35,7 -Above Grade Walls: RimJoist9,11.0,,,35,3 -Above Grade Walls: RimJoist10,11.0,,,139,51 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8782,5999,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,35405,15610,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,3.16,0.61 -Above Grade Walls: RimJoist2,,3.16,0.44 -Above Grade Walls: RimJoist3,,3.16,0.2 -Above Grade Walls: RimJoist4,,3.16,0.61 -Above Grade Walls: RimJoist5,,3.16,0.61 -Above Grade Walls: RimJoist6,,3.16,0.25 -Above Grade Walls: RimJoist7,,3.16,0.44 -Above Grade Walls: RimJoist8,,3.16,0.61 -Above Grade Walls: RimJoist9,,3.16,0.25 -Above Grade Walls: RimJoist10,,3.16,0.44 -Above Grade Walls: Wall1,,5.27,0.51 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,35,7 -Above Grade Walls: RimJoist2,11.0,,,35,5 -Above Grade Walls: RimJoist3,11.0,,,35,2 -Above Grade Walls: RimJoist4,11.0,,,35,7 -Above Grade Walls: RimJoist5,11.0,,,35,7 -Above Grade Walls: RimJoist6,11.0,,,35,3 -Above Grade Walls: RimJoist7,11.0,,,35,5 -Above Grade Walls: RimJoist8,11.0,,,35,7 -Above Grade Walls: RimJoist9,11.0,,,35,3 -Above Grade Walls: RimJoist10,11.0,,,35,5 -Above Grade Walls: Wall1,96.0,,,506,48 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8779,6013,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,35298,15578,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,632.0,233.0 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,505600,186400 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,9644,6468,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,536576,206514,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,12.64,4.66 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,10112,3728 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8895,6165,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,40339,23540,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.44 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2528,351 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8718,6114,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32578,20111,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,632.0,93.1 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,60672,8938 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,9360,6183,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,96000,24627,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,12.64,1.86 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,1213,179 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8797,6002,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,35978,15687,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,2.2,0.16 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,220,16 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8784,6012,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,35055,15541,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,632.0,45.33 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,63200,4533 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,9369,6115,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,98620,20160,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,12.64,0.91 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,1264,91 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8801,5999,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,36116,15602,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,3.16,0.23 -Above Grade Walls: Wall3,,3.01,0.5 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,316,23 -Above Grade Walls: Wall3,96.0,,,289,48 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8786,6013,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,35153,15548,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,3.16,0.23 -Above Grade Walls: Wall3,,632.0,105.6 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,316,23 -Above Grade Walls: Wall3,96.0,,,60672,10138 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,9360,6225,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,96110,25849,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,3.16,0.23 -Above Grade Walls: Wall3,,12.64,2.11 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,316,23 -Above Grade Walls: Wall3,96.0,,,1213,203 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8800,6002,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,36091,15692,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,3.16,0.23 -Above Grade Walls: Wall3,,3.16,0.53 -Above Grade Walls: Wall4,,8.9,0.85 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,316,23 -Above Grade Walls: Wall3,96.0,,,303,51 -Above Grade Walls: Wall4,100.0,,,890,85 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8786,6013,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,35168,15550,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,3.16,0.23 -Above Grade Walls: Wall3,,3.16,0.53 -Above Grade Walls: Wall4,,632.0,60.6 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,316,23 -Above Grade Walls: Wall3,96.0,,,303,51 -Above Grade Walls: Wall4,100.0,,,63200,6060 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,9367,6155,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,98059,21668,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,3.16,0.23 -Above Grade Walls: Wall3,,3.16,0.53 -Above Grade Walls: Wall4,,12.64,1.21 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,316,23 -Above Grade Walls: Wall3,96.0,,,303,51 -Above Grade Walls: Wall4,100.0,,,1264,121 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8786,6014,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,35541,15587,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,3.16,0.23 -Above Grade Walls: Wall3,,3.16,0.53 -Above Grade Walls: Wall4,,3.16,0.2 -Above Grade Walls: Wall5,,3.93,0.62 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,316,23 -Above Grade Walls: Wall3,96.0,,,303,51 -Above Grade Walls: Wall4,100.0,,,316,20 -Above Grade Walls: Wall5,109.0,,,428,68 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8772,6011,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,34579,15483,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,3.16,0.23 -Above Grade Walls: Wall3,,3.16,0.53 -Above Grade Walls: Wall4,,3.16,0.2 -Above Grade Walls: Wall5,,632.0,100.2 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,316,23 -Above Grade Walls: Wall3,96.0,,,303,51 -Above Grade Walls: Wall4,100.0,,,316,20 -Above Grade Walls: Wall5,109.0,,,68888,10922 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,9386,6230,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,103653,26556,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,3.16,0.23 -Above Grade Walls: Wall3,,3.16,0.53 -Above Grade Walls: Wall4,,3.16,0.2 -Above Grade Walls: Wall5,,12.64,2.0 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,316,23 -Above Grade Walls: Wall3,96.0,,,303,51 -Above Grade Walls: Wall4,100.0,,,316,20 -Above Grade Walls: Wall5,109.0,,,1378,218 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8786,6000,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,35543,15622,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,3.16,0.23 -Above Grade Walls: Wall3,,3.16,0.53 -Above Grade Walls: Wall4,,3.16,0.2 -Above Grade Walls: Wall5,,3.16,0.44 -Above Grade Walls: Wall6,,46.81,10.19 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,316,23 -Above Grade Walls: Wall3,96.0,,,303,51 -Above Grade Walls: Wall4,100.0,,,316,20 -Above Grade Walls: Wall5,109.0,,,344,48 -Above Grade Walls: Wall6,109.0,,,5103,1111 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8769,6010,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,34493,15463,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,3.16,0.23 -Above Grade Walls: Wall3,,3.16,0.53 -Above Grade Walls: Wall4,,3.16,0.2 -Above Grade Walls: Wall5,,3.16,0.44 -Above Grade Walls: Wall6,,632.0,137.6 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,316,23 -Above Grade Walls: Wall3,96.0,,,303,51 -Above Grade Walls: Wall4,100.0,,,316,20 -Above Grade Walls: Wall5,109.0,,,344,48 -Above Grade Walls: Wall6,109.0,,,68888,14998 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,9370,6253,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,98879,29592,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,3.16,0.23 -Above Grade Walls: Wall3,,3.16,0.53 -Above Grade Walls: Wall4,,3.16,0.2 -Above Grade Walls: Wall5,,3.16,0.44 -Above Grade Walls: Wall6,,12.64,2.75 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,316,23 -Above Grade Walls: Wall3,96.0,,,303,51 -Above Grade Walls: Wall4,100.0,,,316,20 -Above Grade Walls: Wall5,109.0,,,344,48 -Above Grade Walls: Wall6,109.0,,,1378,300 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8662,5982,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,30660,14623,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,3.16,0.23 -Above Grade Walls: Wall3,,3.16,0.53 -Above Grade Walls: Wall4,,3.16,0.2 -Above Grade Walls: Wall5,,3.16,0.44 -Above Grade Walls: Wall6,,3.16,0.53 -Above Grade Walls: Wall7,,7.8,1.79 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,316,23 -Above Grade Walls: Wall3,96.0,,,303,51 -Above Grade Walls: Wall4,100.0,,,316,20 -Above Grade Walls: Wall5,109.0,,,344,48 -Above Grade Walls: Wall6,109.0,,,344,58 -Above Grade Walls: Wall7,109.0,,,850,195 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8615,5959,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,29580,14358,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,3.16,0.23 -Above Grade Walls: Wall3,,3.16,0.53 -Above Grade Walls: Wall4,,3.16,0.2 -Above Grade Walls: Wall5,,3.16,0.44 -Above Grade Walls: Wall6,,3.16,0.53 -Above Grade Walls: Wall7,,632.0,164.6 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,316,23 -Above Grade Walls: Wall3,96.0,,,303,51 -Above Grade Walls: Wall4,100.0,,,316,20 -Above Grade Walls: Wall5,109.0,,,344,48 -Above Grade Walls: Wall6,109.0,,,344,58 -Above Grade Walls: Wall7,109.0,,,68888,17941 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,9368,6247,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,98371,32392,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,3.16,0.23 -Above Grade Walls: Wall3,,3.16,0.53 -Above Grade Walls: Wall4,,3.16,0.2 -Above Grade Walls: Wall5,,3.16,0.44 -Above Grade Walls: Wall6,,3.16,0.53 -Above Grade Walls: Wall7,,12.64,2.9 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,316,23 -Above Grade Walls: Wall3,96.0,,,303,51 -Above Grade Walls: Wall4,100.0,,,316,20 -Above Grade Walls: Wall5,109.0,,,344,48 -Above Grade Walls: Wall6,109.0,,,344,58 -Above Grade Walls: Wall7,109.0,,,1378,316 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8634,5979,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,30127,14499,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,3.16,0.23 -Above Grade Walls: Wall3,,3.16,0.53 -Above Grade Walls: Wall4,,3.16,0.2 -Above Grade Walls: Wall5,,3.16,0.44 -Above Grade Walls: Wall6,,3.16,0.53 -Above Grade Walls: Wall7,,3.16,0.23 -Above Grade Walls: Wall8,,11.7,1.36 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,316,23 -Above Grade Walls: Wall3,96.0,,,303,51 -Above Grade Walls: Wall4,100.0,,,316,20 -Above Grade Walls: Wall5,109.0,,,344,48 -Above Grade Walls: Wall6,109.0,,,344,58 -Above Grade Walls: Wall7,109.0,,,344,25 -Above Grade Walls: Wall8,109.0,,,1276,149 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8596,5965,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,29055,14194,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,3.16,0.23 -Above Grade Walls: Wall3,,3.16,0.53 -Above Grade Walls: Wall4,,3.16,0.2 -Above Grade Walls: Wall5,,3.16,0.44 -Above Grade Walls: Wall6,,3.16,0.53 -Above Grade Walls: Wall7,,3.16,0.23 -Above Grade Walls: Wall8,,632.0,73.64 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,316,23 -Above Grade Walls: Wall3,96.0,,,303,51 -Above Grade Walls: Wall4,100.0,,,316,20 -Above Grade Walls: Wall5,109.0,,,344,48 -Above Grade Walls: Wall6,109.0,,,344,58 -Above Grade Walls: Wall7,109.0,,,344,25 -Above Grade Walls: Wall8,109.0,,,68888,8027 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,9365,6164,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,97437,22270,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,3.16,0.23 -Above Grade Walls: Wall3,,3.16,0.53 -Above Grade Walls: Wall4,,3.16,0.2 -Above Grade Walls: Wall5,,3.16,0.44 -Above Grade Walls: Wall6,,3.16,0.53 -Above Grade Walls: Wall7,,3.16,0.23 -Above Grade Walls: Wall8,,12.64,1.47 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,316,23 -Above Grade Walls: Wall3,96.0,,,303,51 -Above Grade Walls: Wall4,100.0,,,316,20 -Above Grade Walls: Wall5,109.0,,,344,48 -Above Grade Walls: Wall6,109.0,,,344,58 -Above Grade Walls: Wall7,109.0,,,344,25 -Above Grade Walls: Wall8,109.0,,,1378,161 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8600,5965,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,29161,14206,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,3.16,0.23 -Above Grade Walls: Wall3,,3.16,0.53 -Above Grade Walls: Wall4,,3.16,0.2 -Above Grade Walls: Wall5,,3.16,0.44 -Above Grade Walls: Wall6,,3.16,0.53 -Above Grade Walls: Wall7,,3.16,0.23 -Above Grade Walls: Wall8,,3.16,0.37 -Above Grade Walls: Wall9,,1.07,0.18 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,316,23 -Above Grade Walls: Wall3,96.0,,,303,51 -Above Grade Walls: Wall4,100.0,,,316,20 -Above Grade Walls: Wall5,109.0,,,344,48 -Above Grade Walls: Wall6,109.0,,,344,58 -Above Grade Walls: Wall7,109.0,,,344,25 -Above Grade Walls: Wall8,109.0,,,344,40 -Above Grade Walls: Wall9,89.0,,,96,16 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8558,5962,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,28086,14082,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,3.16,0.23 -Above Grade Walls: Wall3,,3.16,0.53 -Above Grade Walls: Wall4,,3.16,0.2 -Above Grade Walls: Wall5,,3.16,0.44 -Above Grade Walls: Wall6,,3.16,0.53 -Above Grade Walls: Wall7,,3.16,0.23 -Above Grade Walls: Wall8,,3.16,0.37 -Above Grade Walls: Wall9,,632.0,105.6 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,316,23 -Above Grade Walls: Wall3,96.0,,,303,51 -Above Grade Walls: Wall4,100.0,,,316,20 -Above Grade Walls: Wall5,109.0,,,344,48 -Above Grade Walls: Wall6,109.0,,,344,58 -Above Grade Walls: Wall7,109.0,,,344,25 -Above Grade Walls: Wall8,109.0,,,344,40 -Above Grade Walls: Wall9,89.0,,,56248,9398 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,9315,6167,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,84995,23670,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,3.16,0.23 -Above Grade Walls: Wall3,,3.16,0.53 -Above Grade Walls: Wall4,,3.16,0.2 -Above Grade Walls: Wall5,,3.16,0.44 -Above Grade Walls: Wall6,,3.16,0.53 -Above Grade Walls: Wall7,,3.16,0.23 -Above Grade Walls: Wall8,,3.16,0.37 -Above Grade Walls: Wall9,,12.64,2.11 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,316,23 -Above Grade Walls: Wall3,96.0,,,303,51 -Above Grade Walls: Wall4,100.0,,,316,20 -Above Grade Walls: Wall5,109.0,,,344,48 -Above Grade Walls: Wall6,109.0,,,344,58 -Above Grade Walls: Wall7,109.0,,,344,25 -Above Grade Walls: Wall8,109.0,,,344,40 -Above Grade Walls: Wall9,89.0,,,1125,188 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8599,5953,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,29157,14245,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,3.16,0.23 -Above Grade Walls: Wall3,,3.16,0.53 -Above Grade Walls: Wall4,,3.16,0.2 -Above Grade Walls: Wall5,,3.16,0.44 -Above Grade Walls: Wall6,,3.16,0.53 -Above Grade Walls: Wall7,,3.16,0.23 -Above Grade Walls: Wall8,,3.16,0.37 -Above Grade Walls: Wall9,,3.16,0.53 -Above Grade Walls: Wall10,,8.0,1.11 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,316,23 -Above Grade Walls: Wall3,96.0,,,303,51 -Above Grade Walls: Wall4,100.0,,,316,20 -Above Grade Walls: Wall5,109.0,,,344,48 -Above Grade Walls: Wall6,109.0,,,344,58 -Above Grade Walls: Wall7,109.0,,,344,25 -Above Grade Walls: Wall8,109.0,,,344,40 -Above Grade Walls: Wall9,89.0,,,281,47 -Above Grade Walls: Wall10,89.0,,,712,99 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8566,5963,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,28280,14114,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,3.16,0.23 -Above Grade Walls: Wall3,,3.16,0.53 -Above Grade Walls: Wall4,,3.16,0.2 -Above Grade Walls: Wall5,,3.16,0.44 -Above Grade Walls: Wall6,,3.16,0.53 -Above Grade Walls: Wall7,,3.16,0.23 -Above Grade Walls: Wall8,,3.16,0.37 -Above Grade Walls: Wall9,,3.16,0.53 -Above Grade Walls: Wall10,,632.0,100.2 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,316,23 -Above Grade Walls: Wall3,96.0,,,303,51 -Above Grade Walls: Wall4,100.0,,,316,20 -Above Grade Walls: Wall5,109.0,,,344,48 -Above Grade Walls: Wall6,109.0,,,344,58 -Above Grade Walls: Wall7,109.0,,,344,25 -Above Grade Walls: Wall8,109.0,,,344,40 -Above Grade Walls: Wall9,89.0,,,281,47 -Above Grade Walls: Wall10,89.0,,,56248,8918 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,9313,6158,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,84563,23128,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,3.16,0.23 -Above Grade Walls: Wall3,,3.16,0.53 -Above Grade Walls: Wall4,,3.16,0.2 -Above Grade Walls: Wall5,,3.16,0.44 -Above Grade Walls: Wall6,,3.16,0.53 -Above Grade Walls: Wall7,,3.16,0.23 -Above Grade Walls: Wall8,,3.16,0.37 -Above Grade Walls: Wall9,,3.16,0.53 -Above Grade Walls: Wall10,,12.64,2.0 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,316,23 -Above Grade Walls: Wall3,96.0,,,303,51 -Above Grade Walls: Wall4,100.0,,,316,20 -Above Grade Walls: Wall5,109.0,,,344,48 -Above Grade Walls: Wall6,109.0,,,344,58 -Above Grade Walls: Wall7,109.0,,,344,25 -Above Grade Walls: Wall8,109.0,,,344,40 -Above Grade Walls: Wall9,89.0,,,281,47 -Above Grade Walls: Wall10,89.0,,,1125,178 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8583,5965,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,28709,14196,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,3.16,0.23 -Above Grade Walls: Wall3,,3.16,0.53 -Above Grade Walls: Wall4,,3.16,0.2 -Above Grade Walls: Wall5,,3.16,0.44 -Above Grade Walls: Wall6,,3.16,0.53 -Above Grade Walls: Wall7,,3.16,0.23 -Above Grade Walls: Wall8,,3.16,0.37 -Above Grade Walls: Wall9,,3.16,0.53 -Above Grade Walls: Wall10,,3.16,0.37 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,316,23 -Above Grade Walls: Wall3,96.0,,,303,51 -Above Grade Walls: Wall4,100.0,,,316,20 -Above Grade Walls: Wall5,109.0,,,344,48 -Above Grade Walls: Wall6,109.0,,,344,58 -Above Grade Walls: Wall7,109.0,,,344,25 -Above Grade Walls: Wall8,109.0,,,344,40 -Above Grade Walls: Wall9,89.0,,,281,47 -Above Grade Walls: Wall10,89.0,,,281,33 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8548,5961,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,27831,14046,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,3.16,0.23 -Above Grade Walls: Wall3,,3.16,0.53 -Above Grade Walls: Wall4,,3.16,0.2 -Above Grade Walls: Wall5,,3.16,0.44 -Above Grade Walls: Wall6,,3.16,0.53 -Above Grade Walls: Wall7,,3.16,0.23 -Above Grade Walls: Wall8,,3.16,0.37 -Above Grade Walls: Wall9,,3.16,0.53 -Above Grade Walls: Wall10,,3.16,0.37 -Above Grade Walls: Wall11,,632.0,60.6 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,316,23 -Above Grade Walls: Wall3,96.0,,,303,51 -Above Grade Walls: Wall4,100.0,,,316,20 -Above Grade Walls: Wall5,109.0,,,344,48 -Above Grade Walls: Wall6,109.0,,,344,58 -Above Grade Walls: Wall7,109.0,,,344,25 -Above Grade Walls: Wall8,109.0,,,344,40 -Above Grade Walls: Wall9,89.0,,,281,47 -Above Grade Walls: Wall10,89.0,,,281,33 -Above Grade Walls: Wall11,109.0,,,68888,6605 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,9360,6143,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,96154,20701,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,3.16,0.23 -Above Grade Walls: Wall3,,3.16,0.53 -Above Grade Walls: Wall4,,3.16,0.2 -Above Grade Walls: Wall5,,3.16,0.44 -Above Grade Walls: Wall6,,3.16,0.53 -Above Grade Walls: Wall7,,3.16,0.23 -Above Grade Walls: Wall8,,3.16,0.37 -Above Grade Walls: Wall9,,3.16,0.53 -Above Grade Walls: Wall10,,3.16,0.37 -Above Grade Walls: Wall11,,12.64,1.21 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,316,23 -Above Grade Walls: Wall3,96.0,,,303,51 -Above Grade Walls: Wall4,100.0,,,316,20 -Above Grade Walls: Wall5,109.0,,,344,48 -Above Grade Walls: Wall6,109.0,,,344,58 -Above Grade Walls: Wall7,109.0,,,344,25 -Above Grade Walls: Wall8,109.0,,,344,40 -Above Grade Walls: Wall9,89.0,,,281,47 -Above Grade Walls: Wall10,89.0,,,281,33 -Above Grade Walls: Wall11,109.0,,,1378,132 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8548,5961,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,27831,14046,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.87 -Windows: Window2,E,20.86,35.06 -Windows: Window3,S,20.86,16.92 -Windows: Window4,W,20.86,35.06 -Doors: Door1,N,14.36,5.17 -Doors: Door2,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.5 -Above Grade Walls: RimJoist2,,2.75,0.35 -Above Grade Walls: RimJoist3,,2.75,0.17 -Above Grade Walls: RimJoist4,,2.75,0.5 -Above Grade Walls: RimJoist5,,2.75,0.5 -Above Grade Walls: RimJoist6,,2.75,0.2 -Above Grade Walls: RimJoist7,,2.75,0.35 -Above Grade Walls: RimJoist8,,2.75,0.5 -Above Grade Walls: RimJoist9,,2.75,0.2 -Above Grade Walls: RimJoist10,,2.75,0.35 -Above Grade Walls: Wall1,,3.16,0.23 -Above Grade Walls: Wall2,,3.16,0.23 -Above Grade Walls: Wall3,,3.16,0.53 -Above Grade Walls: Wall4,,3.16,0.2 -Above Grade Walls: Wall5,,3.16,0.44 -Above Grade Walls: Wall6,,3.16,0.53 -Above Grade Walls: Wall7,,3.16,0.23 -Above Grade Walls: Wall8,,3.16,0.37 -Above Grade Walls: Wall9,,3.16,0.53 -Above Grade Walls: Wall10,,3.16,0.37 -Above Grade Walls: Wall11,,3.16,0.2 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,13.0,,,271,128 -Windows: Window2,9.0,,,188,315 -Windows: Window3,13.0,,,271,220 -Windows: Window4,9.0,,,188,315 -Doors: Door1,20.0,,,287,103 -Doors: Door2,20.0,,,287,103 -Above Grade Walls: RimJoist1,11.0,,,30,5 -Above Grade Walls: RimJoist2,11.0,,,30,4 -Above Grade Walls: RimJoist3,11.0,,,30,2 -Above Grade Walls: RimJoist4,11.0,,,30,5 -Above Grade Walls: RimJoist5,11.0,,,30,5 -Above Grade Walls: RimJoist6,11.0,,,30,2 -Above Grade Walls: RimJoist7,11.0,,,30,4 -Above Grade Walls: RimJoist8,11.0,,,30,5 -Above Grade Walls: RimJoist9,11.0,,,30,2 -Above Grade Walls: RimJoist10,11.0,,,30,4 -Above Grade Walls: Wall1,96.0,,,303,22 -Above Grade Walls: Wall2,100.0,,,316,23 -Above Grade Walls: Wall3,96.0,,,303,51 -Above Grade Walls: Wall4,100.0,,,316,20 -Above Grade Walls: Wall5,109.0,,,344,48 -Above Grade Walls: Wall6,109.0,,,344,58 -Above Grade Walls: Wall7,109.0,,,344,25 -Above Grade Walls: Wall8,109.0,,,344,40 -Above Grade Walls: Wall9,89.0,,,281,47 -Above Grade Walls: Wall10,89.0,,,281,33 -Above Grade Walls: Wall11,109.0,,,344,22 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8513,5943,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,26763,13917,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,1040,1219,1354,1392,1401,1502,1586,1578,1492,1377,1111,454 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,85.46,0 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,,150,,12818,0 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,1704,0,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,29285,13449,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,85.46,0 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,,150,,12818,0 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,1704,0,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,29285,13449,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,36.65,0 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,,150,,5497,0 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,1658,0,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,21917,13449,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,36.65,0 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,,150,,5497,0 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,1658,0,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,21917,13449,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,25.53,0 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,,150,,3829,0 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,1643,0,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,20235,13449,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,25.53,0 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,,150,,3829,0 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,1643,0,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,20235,13449,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,81.79,0 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,,150,,12269,0 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,1702,0,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,28732,13449,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,77.98,0 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,,150,,11697,0 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,1699,0,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,28157,13449,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,78.84,0 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,,150,,11827,0 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,1699,0,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,28288,13449,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,70.14,0 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,,150,,10521,0 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,1692,0,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,26975,13449,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,34.76,0 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,,150,,5214,0 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,1656,0,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,21632,13449,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,34.76,0 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,,150,,5214,0 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,1656,0,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,21632,13449,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,23.94,0 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,,150,,3591,0 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,1641,0,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,19994,13449,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,23.94,0 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,,150,,3591,0 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,1641,0,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,19994,13449,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Skylights: Skylight1,N,61.3,112.53 -Skylights: Skylight2,S,61.3,116.86 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Skylights: Skylight1,15.0,,,920,1688 -Skylights: Skylight2,15.0,,,920,1753 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1320.0,,,2123,2242 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8759,6164,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,34080,23481,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,8425,10331,11969,12867,13435,14478,15161,15029,14128,12943,10552,5500 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Skylights: Skylight1,N,61.3,3.14 -Skylights: Skylight2,S,61.3,31.83 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Skylights: Skylight1,15.0,,,920,47 -Skylights: Skylight2,15.0,,,920,477 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1320.0,,,2123,2242 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8759,6141,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,34080,20541,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7427,8875,10033,10494,10689,11437,11986,11843,11133,10215,8244,3592 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,9.57,7.09 -Windows: Window2,E,9.57,28.59 -Windows: Window3,S,9.57,9.03 -Windows: Window4,W,9.57,28.59 -Skylights: Skylight1,N,28.13,2.43 -Skylights: Skylight2,S,28.13,29.13 -Doors: Door1,S,6.59,4.63 -Above Grade Walls: RimJoist1,,1.26,0.25 -Above Grade Walls: Wall1,,1.26,0.25 -Above Grade Walls: FoundationWall1,,2.78,0.61 -Below Grade Walls: FoundationWall1,,1.53,0 -Ceilings: Floor1,,0.74,1.64 -Floors: Slab1,,0.59,0 -Infiltration,,,,68,35 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,1034,765 -Windows: Window2,72.0,,,689,2058 -Windows: Window3,108.0,,,1034,975 -Windows: Window4,72.0,,,689,2058 -Skylights: Skylight1,15.0,,,422,36 -Skylights: Skylight2,15.0,,,422,437 -Doors: Door1,40.0,,,264,185 -Above Grade Walls: RimJoist1,115.6,,,146,29 -Above Grade Walls: Wall1,800.0,,,1009,198 -Above Grade Walls: FoundationWall1,150.0,,,418,92 -Below Grade Walls: FoundationWall1,1050.0,,,1602,0 -Ceilings: Floor1,1320.0,,,974,2162 -Floors: Slab1,1350.0,,,798,0 -Infiltration,,,1.0,2145,364,38 -Internal Gains,,,,,3320,800 -Ducts,,,,6559,6773,27 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,18203,19453,865 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,6950,7903,8439,8348,8225,8951,9725,9977,9629,8950,7249,2774 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Roof1,,632.0,332.6 -Floors: Slab1,,1.29,0 -Infiltration,,,,120,61 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,120.0,,,2503,3668 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,120.0,,,2503,3668 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,929.0,,,2553,326 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Roof1,1509.3,,,953878,501993 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,6931,933,-992 -Internal Gains,,,,,3320,800 -Ducts,,,,0,0,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,979904,516918,-192 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,10446,11824,12539,12270,12021,13241,14608,15181,14798,13774,10968,4425 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Roof1,,12.64,6.65 -Floors: Slab1,,1.29,0 -Infiltration,,,,120,61 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,120.0,,,2503,3668 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,120.0,,,2503,3668 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,929.0,,,2553,326 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Roof1,1509.3,,,19078,10040 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,6931,933,-992 -Internal Gains,,,,,3320,800 -Ducts,,,,0,0,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,45104,24964,-192 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,10446,11824,12539,12270,12021,13241,14608,15181,14798,13774,10968,4425 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Roof1,,3.16,0.87 -Floors: Slab1,,1.29,0 -Infiltration,,,,120,61 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,120.0,,,2503,3668 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,120.0,,,2503,3668 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,929.0,,,2553,326 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Roof1,1509.3,,,4769,1320 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,6931,933,-992 -Internal Gains,,,,,3320,800 -Ducts,,,,0,0,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,30796,16245,-192 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,10446,11824,12539,12270,12021,13241,14608,15181,14798,13774,10968,4425 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,632.0,227.6 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,25280,9104 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,9134,6249,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,57370,29073,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,12.64,4.55 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,506,182 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8707,6111,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32168,20014,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,3.16,1.14 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,126,46 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8695,6108,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,31778,19874,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,3.33,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.29,0 -Infiltration,,,,80,41 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,1050.0,,,3492,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,1738,0 -Infiltration,,,1.0,4620,622,-661 -Internal Gains,,,,,3320,800 -Ducts,,,,8709,6112,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,32239,20039,139 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: RimJoist1,,2.75,0.35 -Above Grade Walls: Wall1,,2.75,0.35 -Above Grade Walls: FoundationWall1,,6.07,0.84 -Below Grade Walls: FoundationWall1,,4.14,0 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,1.75,0 -Infiltration,,,,60,30 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: RimJoist1,115.6,,,318,41 -Above Grade Walls: Wall1,800.0,,,2198,281 -Above Grade Walls: FoundationWall1,150.0,,,910,126 -Below Grade Walls: FoundationWall1,450.0,,,1864,0 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,1350.0,,,2362,0 -Infiltration,,,1.0,3465,467,-496 -Internal Gains,,,,,3320,800 -Ducts,,,,0,0,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,21371,13772,304 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor1,,1.61,1.7 -Floors: Slab1,,78.84,0 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor1,1350.0,,,2171,2293 -Floors: Slab1,,150,,11827,0 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,1699,0,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,28288,13449,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,2.63,0.7 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,3545,940 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,4979,256,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,23286,14645,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,5.52,1.46 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,7447,1975 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,2071,0,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,24280,15424,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,1.06,0.28 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,1427,379 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,5869,1706,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,22058,15533,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,1.66,0.44 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,2246,596 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,7388,2136,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,24396,16181,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,6.07,9.16 -Windows: Window2,E,6.07,30.66 -Windows: Window3,S,6.07,11.11 -Windows: Window4,W,6.07,30.66 -Doors: Door1,S,4.18,6.97 -Above Grade Walls: Wall1,,0.8,0.7 -Ceilings: Floor1,,0.47,1.9 -Floors: Slab1,,22.93,0 -Infiltration,,,,32,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,655,990 -Windows: Window2,72.0,,,437,2208 -Windows: Window3,108.0,,,655,1199 -Windows: Window4,72.0,,,437,2208 -Doors: Door1,40.0,,,167,279 -Above Grade Walls: Wall1,800.0,,,639,556 -Ceilings: Floor1,1350.0,,,631,2565 -Floors: Slab1,,150,,3439,0 -Infiltration,,,1.0,639,343,760 -Internal Gains,,,,,3320,800 -Ducts,,,,785,-217,954 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,8484,13451,2514 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,8118,8810,9092,8782,8484,9103,9838,10137,9877,9348,7842,3576 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,3.38,0.36 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,140.0,,,2920,1290 -Windows: Window2,20.0,,,417,611 -Windows: Window3,140.0,,,2920,2127 -Windows: Window4,20.0,,,417,611 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,1109.7,,,3049,389 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,4563,488 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,2636,804,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,701 -Total,,,,21978,13153,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,4081,5730,7581,9032,9811,10011,9527,8423,7228,6460,5476,2575 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,3.38,0.36 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,140.0,,,2920,1290 -Windows: Window2,20.0,,,417,611 -Windows: Window3,140.0,,,2920,2127 -Windows: Window4,20.0,,,417,611 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,1109.7,,,3049,389 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,4563,488 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,2636,804,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,701 -Total,,,,21978,13153,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,4081,5730,7581,9032,9811,10011,9527,8423,7228,6460,5476,2575 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,3.38,0.36 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,140.0,,,2920,1290 -Windows: Window2,20.0,,,417,611 -Windows: Window3,140.0,,,2920,2127 -Windows: Window4,20.0,,,417,611 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,1109.7,,,3049,389 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,4563,488 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,2636,804,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,701 -Total,,,,21978,13153,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,4081,5730,7581,9032,9811,10011,9527,8423,7228,6460,5476,2575 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,3.48,0.92 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,4692,1244 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,5025,202,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,24479,14895,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,1.66,0.44 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,2245,595 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,4942,262,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,21949,14306,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,0.64,0.17 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,871,231 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,4899,266,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,20531,13945,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,3.48,0.92 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,4692,1244 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,5025,202,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,24479,14895,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,3.48,0.92 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,4692,1244 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,5025,202,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,24479,14895,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,3.48,0.92 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,4692,1244 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,5025,202,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,24479,14895,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,3.48,0.92 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,4692,1244 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,5025,202,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,24479,14895,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,3.48,0.92 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,4692,1244 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,5025,202,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,24479,14895,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,3.48,0.92 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,4692,1244 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,5025,202,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,24479,14895,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,3.48,0.92 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,4692,1244 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,5025,202,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,24479,14895,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,3.48,0.92 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,4692,1244 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,5025,202,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,24479,14895,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,8.46,2.24 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,11426,3030 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,3685,153,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,29873,16632,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,2.3,0.61 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,3105,823 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,2017,0,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,19885,14272,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,0.72,0.19 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,975,259 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,1984,0,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,17722,13708,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,2.3,0.61 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,3105,823 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,2017,0,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,19885,14272,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,0.72,0.19 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,975,259 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,1984,0,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,17722,13708,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,1.33,0.35 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,1797,477 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,1998,0,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,18557,13926,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 - -Report: MyBuilding: Summary,Orientation,Heating HTM,Cooling HTM,Heating CFM,Cooling CFM -Windows: Window1,N,20.86,9.21 -Windows: Window2,E,20.86,30.57 -Windows: Window3,S,20.86,15.19 -Windows: Window4,W,20.86,30.57 -Doors: Door1,S,14.36,5.17 -Above Grade Walls: Wall1,,2.75,0.35 -Ceilings: Floor2,,1.61,1.7 -Floors: Floor1,,0.38,0.1 -Infiltration,,,,40,20 -Ventilation,,,,0,0 - -Report: MyBuilding: Loads,Area (ft^2),Length (ft),Wall Area Ratio,Heating (Btuh),Cooling Sensible (Btuh),Cooling Latent (Btuh) -Windows: Window1,108.0,,,2252,995 -Windows: Window2,72.0,,,1502,2201 -Windows: Window3,108.0,,,2252,1640 -Windows: Window4,72.0,,,1502,2201 -Doors: Door1,40.0,,,575,207 -Above Grade Walls: Wall1,800.0,,,2198,281 -Ceilings: Floor2,1350.0,,,2171,2293 -Floors: Floor1,1350.0,,,509,135 -Infiltration,,,1.0,2310,311,-331 -Internal Gains,,,,,3320,800 -Ducts,,,,1976,0,0 -Ventilation,,,,0,0,0 -Piping,,,,0 -Blower Heat,,,,,0 -AED Excursion,,,,,0 -Total,,,,17248,13584,469 - -Report: MyBuilding: AED Curve,Hr 8 (Btuh),Hr 9 (Btuh),Hr 10 (Btuh),Hr 11 (Btuh),Hr 12 (Btuh),Hr 13 (Btuh),Hr 14 (Btuh),Hr 15 (Btuh),Hr 16 (Btuh),Hr 17 (Btuh),Hr 18 (Btuh),Hr 19 (Btuh) -MyBuilding,7096,8426,9468,9836,9977,10708,11276,11195,10565,9739,7873,3306 diff --git a/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb b/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb index 23e56bdb01..54ec916169 100644 --- a/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb +++ b/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb @@ -1435,6 +1435,9 @@ def test_manual_j_slab_f_factor slab.under_slab_insulation_width = 0 slab.under_slab_insulation_spans_entire_slab = false slab.under_slab_insulation_r_value = 0 + slab.exterior_horizontal_insulation_r_value = 0 + slab.exterior_horizontal_insulation_width = 0 + slab.exterior_horizontal_insulation_depth_below_grade = 0 # 22A — No Edge Insulation, No insulation Below Floor, any Floor Cover assert_in_epsilon(1.358, HVACSizing.calc_slab_f_value(slab, high_soil_k), tol) diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index fabe0916c7..950dc37976 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -860,9 +860,9 @@ def test_schema_schematron_warning_messages 'plug-load-type-tv-crt' => ["Plug load type 'TV CRT' is not currently handled, the plug load will not be modeled."], 'plug-load-type-tv-plasma' => ["Plug load type 'TV plasma' is not currently handled, the plug load will not be modeled."], 'portable-spa' => ['Portable spa is not currently handled, the portable spa will not be modeled.'], - 'slab-zero-exposed-perimeter' => ['Slab has zero exposed perimeter, this may indicate an input error.'], - 'slab-wing-insulation-present-with-no-perimeter-insulation' => ['There is ExteriorHorizontalInsulation but no PerimeterInsulation, this may indicate an input error.'], + 'slab-ext-horiz-insul-without-perim-insul' => ['There is ExteriorHorizontalInsulation but no PerimeterInsulation, this may indicate an input error.'], 'slab-large-exposed-perimeter' => ['Slab exposed perimeter is more than twice the slab area, this may indicate an input error.'], + 'slab-zero-exposed-perimeter' => ['Slab has zero exposed perimeter, this may indicate an input error.'], 'unit-multiplier' => ['NumberofUnits is greater than 1, indicating that the HPXML Building represents multiple dwelling units; simulation outputs will reflect this unit multiplier.'], 'wrong-units' => ['Thickness is greater than 12 inches; this may indicate incorrect units.', 'Thickness is less than 1 inch; this may indicate incorrect units.', @@ -1010,11 +1010,9 @@ def test_schema_schematron_warning_messages elsif ['slab-zero-exposed-perimeter'].include? warning_case hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml_bldg.slabs[0].exposed_perimeter = 0 - - elsif ['slab-wing-insulation-present-with-no-perimeter-insulation'].include? warning_case + elsif ['slab-ext-horiz-insul-without-perim-insul'].include? warning_case hpxml, hpxml_bldg = _create_hpxml('base-foundation-slab-exterior-horizontal-insulation.xml') hpxml_bldg.slabs[0].perimeter_insulation_r_value = 0 - elsif ['slab-large-exposed-perimeter'].include? warning_case hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml_bldg.slabs[0].exposed_perimeter = hpxml_bldg.slabs[0].area * 2 + 1 diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index eb04814acd..d65bcb575e 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -1464,7 +1464,7 @@ Each space type that borders the ground (i.e., basement, crawlspace, garage, and ``PerimeterInsulation/Layer/NominalRValue`` double F-ft2-hr/Btu >= 0 Yes R-value of vertical insulation (see figure below) ``PerimeterInsulation/Layer/InsulationDepth`` double ft >= 0 Yes Depth from top of slab to bottom of vertical insulation ``ExteriorHorizontalInsulation/SystemIdentifier`` id See [#]_ Unique identifier - ``ExteriorHorizontalInsulation/Layer/NominalRValue`` double F-ft2-hr/Btu >= 0 No 0 R-value of exterior horizontal insulation (see figure below) + ``ExteriorHorizontalInsulation/Layer/NominalRValue`` double F-ft2-hr/Btu >= 0 No 0 R-value of exterior horizontal insulation (see figure below) [#]_ ``ExteriorHorizontalInsulation/Layer/InsulationWidth`` double ft >= 0 No 0 Width of exterior horizontal insulation from slab edge outward ``ExteriorHorizontalInsulation/Layer/InsulationDepthBelowGrade`` double ft >= 0 No 0 Depth from grade to the top of exterior horizontal insulation ``UnderSlabInsulation/SystemIdentifier`` id Yes Unique identifier @@ -1487,6 +1487,7 @@ Each space type that borders the ground (i.e., basement, crawlspace, garage, and .. [#] If DepthBelowGrade not provided, defaults to zero for foundation types without walls. For foundation types with walls, DepthBelowGrade is ignored as the slab's position relative to grade is determined by the ``FoundationWall/DepthBelowGrade`` value(s). .. [#] SystemIdentifier only required if ExteriorHorizontalInsulation is provided. + .. [#] Exterior horizontal insulation (sometimes called wing or skirt insulation) is typically used `in colder regions with frost-susceptible soils to prevent the slab from heaving `_. .. [#] InsulationWidth only required if InsulationSpansEntireSlab=true is not provided. .. [#] InsulationSpansEntireSlab=true only required if InsulationWidth is not provided. .. [#] If GapInsulationRValue not provided, defaults to 5.0 if there is under slab (horizontal) insulation, otherwise 0.0. From fec6dc8d7299eebf616d76d34124bea796df5969 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 30 Aug 2024 16:04:58 +0000 Subject: [PATCH 41/41] Latest results. --- workflow/tests/base_results/results_simulations_bills.csv | 2 +- workflow/tests/base_results/results_simulations_energy.csv | 2 +- workflow/tests/base_results/results_simulations_loads.csv | 2 +- workflow/tests/base_results/results_simulations_misc.csv | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/workflow/tests/base_results/results_simulations_bills.csv b/workflow/tests/base_results/results_simulations_bills.csv index 951116105a..2924e7fb14 100644 --- a/workflow/tests/base_results/results_simulations_bills.csv +++ b/workflow/tests/base_results/results_simulations_bills.csv @@ -173,7 +173,7 @@ base-foundation-conditioned-basement-slab-insulation.xml,1833.57,144.0,1310.1,0. base-foundation-conditioned-basement-wall-insulation.xml,1814.99,144.0,1286.65,0.0,1430.65,144.0,240.34,384.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-foundation-conditioned-crawlspace.xml,1530.37,144.0,1045.54,0.0,1189.54,144.0,196.83,340.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-foundation-multiple.xml,1496.86,144.0,1066.23,0.0,1210.23,144.0,142.63,286.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-foundation-slab-exterior-horizontal-insulation.xml,1450.25,144.0,1050.05,0.0,1194.05,144.0,112.2,256.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-foundation-slab-exterior-horizontal-insulation.xml,1456.43,144.0,1054.44,0.0,1198.44,144.0,113.99,257.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-foundation-slab.xml,1465.18,144.0,1059.9,0.0,1203.9,144.0,117.28,261.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-foundation-unconditioned-basement-above-grade.xml,1510.76,144.0,1069.29,0.0,1213.29,144.0,153.47,297.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-foundation-unconditioned-basement-assembly-r.xml,1467.22,144.0,1047.7,0.0,1191.7,144.0,131.52,275.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/workflow/tests/base_results/results_simulations_energy.csv b/workflow/tests/base_results/results_simulations_energy.csv index 49246bce8a..574865b105 100644 --- a/workflow/tests/base_results/results_simulations_energy.csv +++ b/workflow/tests/base_results/results_simulations_energy.csv @@ -173,7 +173,7 @@ base-foundation-conditioned-basement-slab-insulation.xml,58.486,58.486,35.992,35 base-foundation-conditioned-basement-wall-insulation.xml,58.307,58.307,35.348,35.348,22.959,0.0,0.0,0.0,0.0,0.0,0.0,0.57,0.0,0.0,4.036,0.592,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-foundation-conditioned-crawlspace.xml,47.527,47.527,28.724,28.724,18.803,0.0,0.0,0.0,0.0,0.0,0.0,0.466,0.0,0.0,3.554,0.51,9.208,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-foundation-multiple.xml,42.918,42.918,29.293,29.293,13.625,0.0,0.0,0.0,0.0,0.0,0.0,0.338,0.0,0.0,4.391,0.661,9.18,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.807,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-slab-exterior-horizontal-insulation.xml,39.566,39.566,28.848,28.848,10.718,0.0,0.0,0.0,0.0,0.0,0.0,0.266,0.0,0.0,3.812,0.555,9.2,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.099,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-slab-exterior-horizontal-insulation.xml,39.858,39.858,28.969,28.969,10.889,0.0,0.0,0.0,0.0,0.0,0.0,0.27,0.0,0.0,3.91,0.574,9.2,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.099,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-foundation-slab.xml,40.322,40.322,29.119,29.119,11.203,0.0,0.0,0.0,0.0,0.0,0.0,0.278,0.0,0.0,4.029,0.597,9.199,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.099,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-foundation-unconditioned-basement-above-grade.xml,44.038,44.038,29.377,29.377,14.661,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,4.477,0.677,9.197,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.746,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-foundation-unconditioned-basement-assembly-r.xml,41.347,41.347,28.783,28.783,12.564,0.0,0.0,0.0,0.0,0.0,0.0,0.312,0.0,0.0,4.018,0.591,9.196,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.75,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/workflow/tests/base_results/results_simulations_loads.csv b/workflow/tests/base_results/results_simulations_loads.csv index 6ec0b88bdf..b6a7021a19 100644 --- a/workflow/tests/base_results/results_simulations_loads.csv +++ b/workflow/tests/base_results/results_simulations_loads.csv @@ -173,7 +173,7 @@ base-foundation-conditioned-basement-slab-insulation.xml,21.252,0.0,14.498,9.071 base-foundation-conditioned-basement-wall-insulation.xml,21.692,0.0,12.247,9.071,0.615,0.0,0.0,0.0,3.896,3.946,0.554,6.333,0.695,10.933,-13.737,0.0,0.0,0.0,8.89,-0.17,5.314,0.0,0.782,0.0,5.174,-8.581,-2.695,0.0,0.128,-0.107,-0.003,1.448,0.052,-0.411,10.676,0.0,0.0,0.0,-6.448,-0.165,-0.779,-3.625,-0.103,0.0,2.881,7.0,1.812 base-foundation-conditioned-crawlspace.xml,17.752,0.0,10.388,9.178,0.616,0.0,0.0,0.0,4.115,3.879,0.545,5.201,0.683,10.579,-13.64,0.0,0.0,0.0,9.852,-0.141,3.728,0.0,0.78,0.0,0.0,-6.59,-1.583,0.0,0.209,-0.162,-0.01,1.937,0.042,-0.324,10.714,0.0,0.0,0.0,-3.832,-0.138,-0.585,-3.695,-0.106,0.0,0.0,5.406,1.062 base-foundation-multiple.xml,12.866,0.0,13.526,9.122,0.696,0.0,0.0,0.0,3.996,3.639,0.0,0.0,0.822,10.149,-9.933,0.0,0.0,4.484,0.0,-0.753,2.523,0.0,0.0,0.0,2.349,-3.446,-1.231,0.0,-0.342,-0.891,0.0,0.0,0.042,-0.726,14.035,0.0,0.0,-1.481,0.0,-0.75,-0.677,-3.119,0.0,0.0,1.992,4.365,1.415 -base-foundation-slab-exterior-horizontal-insulation.xml,10.119,0.0,11.281,9.178,0.607,0.0,0.0,0.0,4.046,3.699,0.0,0.0,0.772,10.185,-10.676,0.0,0.0,0.0,5.934,-0.513,2.109,0.0,0.728,0.0,0.33,-5.499,-1.299,0.0,-0.182,-0.642,0.0,0.0,0.067,-0.511,13.58,0.0,0.0,0.0,-4.267,-0.51,-0.462,-3.318,-0.208,0.0,0.125,6.518,1.347 +base-foundation-slab-exterior-horizontal-insulation.xml,10.28,0.0,11.677,9.178,0.607,0.0,0.0,0.0,4.049,3.701,0.0,0.0,0.769,10.178,-10.712,0.0,0.0,0.0,6.132,-0.503,2.112,0.0,0.729,0.0,0.336,-5.509,-1.304,0.0,-0.186,-0.647,0.0,0.0,0.063,-0.537,13.544,0.0,0.0,0.0,-3.74,-0.5,-0.463,-3.38,-0.207,0.0,0.13,6.507,1.342 base-foundation-slab.xml,10.577,0.0,12.163,9.178,0.607,0.0,0.0,0.0,4.055,3.706,0.0,0.0,0.766,10.177,-10.778,0.0,0.0,0.0,6.504,-0.494,2.118,0.0,0.732,0.0,0.345,-5.537,-1.313,0.0,-0.184,-0.646,0.0,0.0,0.058,-0.547,13.478,0.0,0.0,0.0,-3.094,-0.492,-0.46,-3.446,-0.203,0.0,0.135,6.479,1.333 base-foundation-unconditioned-basement-above-grade.xml,13.845,0.0,13.896,9.122,0.714,0.0,0.0,0.0,4.037,3.671,0.0,0.0,0.81,10.137,-10.206,0.0,0.0,5.23,0.0,-0.702,2.536,0.0,0.0,0.0,2.761,-3.477,-1.245,0.0,-0.283,-0.84,0.0,0.0,0.035,-0.785,13.763,0.0,0.0,-1.208,0.0,-0.698,-0.665,-3.103,0.0,0.0,2.246,4.334,1.401 base-foundation-unconditioned-basement-assembly-r.xml,11.864,0.0,11.993,9.122,0.713,0.0,0.0,0.0,3.985,3.603,0.0,0.0,0.812,10.077,-9.773,0.0,0.0,3.622,0.0,-0.781,2.5,0.0,0.0,0.0,2.126,-3.39,-1.202,0.0,-0.322,-0.848,0.0,0.0,0.071,-0.769,14.196,0.0,0.0,-2.907,0.0,-0.778,-0.697,-2.969,0.0,0.0,1.498,4.421,1.444 diff --git a/workflow/tests/base_results/results_simulations_misc.csv b/workflow/tests/base_results/results_simulations_misc.csv index c002ff9001..5b74cbbdf7 100644 --- a/workflow/tests/base_results/results_simulations_misc.csv +++ b/workflow/tests/base_results/results_simulations_misc.csv @@ -173,7 +173,7 @@ base-foundation-conditioned-basement-slab-insulation.xml,0.0,0.0,1354.7,998.0,11 base-foundation-conditioned-basement-wall-insulation.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2085.8,3465.2,3465.2,23.904,18.554,0.0 base-foundation-conditioned-crawlspace.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1696.0,2769.8,2769.8,16.152,11.732,0.0 base-foundation-multiple.xml,0.0,0.0,1354.7,998.0,11171.5,2652.8,1669.5,3019.3,3019.3,16.101,15.954,0.0 -base-foundation-slab-exterior-horizontal-insulation.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1680.4,2832.3,2832.3,13.079,12.924,0.0 +base-foundation-slab-exterior-horizontal-insulation.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1681.3,2864.0,2864.0,13.151,13.106,0.0 base-foundation-slab.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1676.6,2751.3,2751.3,13.31,13.371,0.0 base-foundation-unconditioned-basement-above-grade.xml,0.0,0.0,1354.7,998.0,11171.5,2652.8,1667.0,3013.6,3013.6,17.348,16.837,0.0 base-foundation-unconditioned-basement-assembly-r.xml,0.0,0.0,1354.7,998.0,11171.5,2652.8,1674.5,2788.9,2788.9,15.54,14.692,0.0