NRCan-IETS-CE-O-HBC / HTAP

NRCan's Ruby scripts for batch analysis and optimization with HOT2000
http://www.nrcan.gc.ca/energy/efficiency/housing/home-improvements/17725
GNU Lesser General Public License v3.0
15 stars 7 forks source link

Missing <AddedToSlab> #71

Open please-wait opened 5 years ago

please-wait commented 5 years ago

Inputs

Problem

Results in corrupted H2K files. The <Slab> is missing a <AddedToSlab> tag.

Wrong Schema

<Floor>
    <Construction hasIntegralFooting='false' heatedFloor='false' isBelowFrostline='false'>
        <FloorsAbove idref='Code 3' nominalInsulation='0' rValue='0.4684'>4200000000</FloorsAbove>
    </Construction>
    <Measurements area='102.19' isRectangular='false' perimeter='46.634'/>
</Floor>

Correct Schema

<Floor>
   <Construction isBelowFrostline="false" hasIntegralFooting="false" heatedFloor="false">
        <AddedToSlab rValue="1.9601" nominalInsulation="1.9601">User specified</AddedToSlab>
        <FloorsAbove idref="Code 3" rValue="0.4684" nominalInsulation="0">4200000000</FloorsAbove>
    </Construction>
    <Measurements isRectangular="false" area="102.1933" perimeter="46.6344" />
</Floor>
please-wait commented 5 years ago

To recreate the problem please use the below files.

htap-prm -r add_insulation.run -o HTAP-options.json

Issue71.zip