diff --git a/Changelog.md b/Changelog.md index 7fee9478b..994432a0e 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,8 @@ +## OpenStudio-ERI v1.9.3 + +__Bugfixes__ +- Fixes possibility of ERI Rated Home having extra balanced supplemental ventilation due to floating point comparison. + ## OpenStudio-ERI v1.9.2 __New Features__ diff --git a/rulesets/resources/301ruleset.rb b/rulesets/resources/301ruleset.rb index fe2a63a57..3fe30c78b 100644 --- a/rulesets/resources/301ruleset.rb +++ b/rulesets/resources/301ruleset.rb @@ -2483,7 +2483,7 @@ def self.calc_rated_home_q_fans_by_system(orig_bldg, all_mech_vent_fans) # Check if supplemental balanced ventilation is needed # This should only happen when the home has no mechanical ventilation, because # otherwise the existing ventilation fans would have been increased instead. - if min_q_fan > q_fans.values.sum + if min_q_fan - q_fans.values.sum > 0.1 q_fan_bal_remain = calc_rated_home_qfan(orig_bldg, true, 0.0) end end diff --git a/workflow/tests/base_results/real_homes.csv b/workflow/tests/base_results/real_homes.csv index 222cd3cb8..4c4085147 100644 --- a/workflow/tests/base_results/real_homes.csv +++ b/workflow/tests/base_results/real_homes.csv @@ -10,7 +10,7 @@ house008.xml,62.22,163.079,98.6235,158.4999,0.20372,0.968,1.0141,0.9901,0.9719,1 house009.xml,62.06,102.329,65.1017,104.8999,0.29387,1.0048,1.0203,1.0,1.0251,1.0,48.3422,0.0,0.0,20.0,44.63,8.97,32.03,26.57,16.37,27.85,0.88,0.0,0.8004,0.4409,0.9453,1.2821,0.2625,1.7241,11.0721,23.8945,6.2932,0.0,0.0,17.7349,14.2271,11.4776,17.92,14.23,12.34,23.21,0.64,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,85.08,10271.21,11776.32,48.14,1.0,48.14,62.06,62.06,0.0,45.07,1.0,45.07,62.06,62.06,0.0,62.06,102.329,65.1017,104.8999,0.29387,1.0048,1.0203,1.0,1.0251,1.0,48.3422,0.0,0.0,20.0,44.63,8.97,32.03,26.57,16.37,27.85,0.88,0.0,0.8004,0.4409,0.9453,1.2821,0.2625,1.7241,11.0721,23.8945,6.2932,0.0,0.0,17.7349,14.2271,11.4776,17.92,14.23,12.34,23.21,0.64,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 house010.xml,61.69,266.179,148.3861,240.5064,0.28927,0.9036,1.0,1.0,0.9036,0.9999,104.7178,0.006,0.0,51.91,148.09,7.1,83.05,81.04,13.56,59.07,0.0,0.0,2.4050000000000002,1.4383,1.776,3.8463000000000003,0.7875000000000001,3.3898,24.1804,77.0795,1.7484,0.0,0.0,38.68,42.1804,3.337,42.17,42.18,6.14,42.99,2.39,0.0,3.1914000000000002,0.6398999999999999,2.3376,3.2829,1.209,11.427,0.0,2.3754,2.026,92.89,17281.81,20589.62,53.12,1.0,53.12,61.7,61.7,0.0,48.02,1.0,48.02,61.7,61.7,0.0,61.69,266.179,148.3861,240.5064,0.28927,0.9036,1.0,1.0,0.9036,0.9999,104.7178,0.006,0.0,51.91,148.09,7.1,83.05,81.04,13.56,59.07,0.0,0.0,2.4050000000000002,1.4383,1.776,3.8463000000000003,0.7875000000000001,3.3898,24.1804,77.0795,1.7484,0.0,0.0,38.68,42.1804,3.337,42.17,42.18,6.14,42.99,2.39,0.0,3.1914000000000002,0.6398999999999999,2.3376,3.2829,1.209,11.427,0.0,2.3754,2.026 house011.xml,66.03,40.994,28.9007,43.77,0.26425,1.0639,0.9818,1.0222,1.0677,1.0,27.3072,0.0,0.0,8.92,7.13,7.88,14.28,4.82,8.89,16.78,0.29,0.0,0.8011,0.3884,0.9633,1.2821,0.2625,1.087,6.3764,2.5388,7.2745,0.0,0.0,10.205,1.716,8.208,11.25,1.72,8.21,12.54,0.17,0.0,1.0417,0.2133,1.0753,1.0943,0.403,3.809,0.0,0.92,0.0,92.17,4134.66,4201.54,56.09,1.0,56.09,66.03,66.03,0.0,52.5,1.0,52.5,66.03,66.03,0.0,66.03,40.994,28.9007,43.77,0.26425,1.0639,0.9818,1.0222,1.0677,1.0,27.3072,0.0,0.0,8.92,7.13,7.88,14.28,4.82,8.89,16.78,0.29,0.0,0.8011,0.3884,0.9633,1.2821,0.2625,1.087,6.3764,2.5388,7.2745,0.0,0.0,10.205,1.716,8.208,11.25,1.72,8.21,12.54,0.17,0.0,1.0417,0.2133,1.0753,1.0943,0.403,3.809,0.0,0.92,0.0 -house012.xml,49.61,71.255,36.9871,74.5631,0.31761,1.0464,1.0,1.0,1.0464,1.0,35.979,0.0,0.0,35.25,3.11,11.62,30.26,1.77,12.67,19.99,1.27,0.0,0.5163,0.4614,0.9973,0.4432,0.2625,1.087,10.3164,1.0019,9.8348,0.0,0.0,8.8561,0.57,10.719,8.86,0.57,10.72,14.55,1.29,0.0,0.5019,0.3413,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,50.85,5478.12,10295.59,51.3,1.0,51.3,49.61,49.61,1.0,53.96,1.0,53.96,49.61,49.61,1.0,49.61,71.255,36.9871,74.5631,0.31761,1.0464,1.0,1.0,1.0464,1.0,35.979,0.0,0.0,35.25,3.11,11.62,30.26,1.77,12.67,19.99,1.27,0.0,0.5163,0.4614,0.9973,0.4432,0.2625,1.087,10.3164,1.0019,9.8348,0.0,0.0,8.8561,0.57,10.719,8.86,0.57,10.72,14.55,1.29,0.0,0.5019,0.3413,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 +house012.xml,49.61,71.255,36.9871,74.5631,0.31761,1.0464,1.0,1.0,1.0464,1.0,35.979,0.0,0.0,35.25,3.11,11.62,30.26,1.77,12.67,19.99,1.27,0.0,0.5163,0.4614,0.9973,0.4432,0.2625,1.087,10.3164,1.0019,9.8348,0.0,0.0,8.8561,0.57,10.719,8.86,0.57,10.72,14.55,1.29,0.0,0.5019,0.3413,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,50.85,5478.12,10295.59,51.3,1.0,51.3,49.61,49.61,1.0,43.76,1.0,43.76,49.61,49.61,0.0,49.61,71.255,36.9871,74.5631,0.31761,1.0464,1.0,1.0,1.0464,1.0,35.979,0.0,0.0,35.25,3.11,11.62,30.26,1.77,12.67,19.99,1.27,0.0,0.5163,0.4614,0.9973,0.4432,0.2625,1.087,10.3164,1.0019,9.8348,0.0,0.0,8.8561,0.57,10.719,8.86,0.57,10.72,14.55,1.29,0.0,0.5019,0.3413,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 house013.xml,59.71,43.811,27.6098,46.2367,0.17144,1.0404,1.0,1.0144,1.0554,1.0,25.252,0.0,0.0,12.24,2.16,10.35,9.15,1.05,11.68,18.46,0.61,0.0,0.593,0.5411,0.9849,0.4432,0.2625,1.1111,9.7094,0.4308,3.0826,0.0,0.0,7.2571,0.209,3.4776,7.26,0.21,3.4,13.73,0.66,0.0,0.3593,0.2275,0.3571,2.2561,0.0,3.809,0.0,0.92,0.0,58.72,1743.38,2813.44,53.22,1.0,53.22,59.71,59.71,0.0,47.83,1.0,47.83,59.71,59.71,0.0,59.71,43.811,27.6098,46.2367,0.17144,1.0404,1.0,1.0144,1.0554,1.0,25.252,0.0,0.0,12.24,2.16,10.35,9.15,1.05,11.68,18.46,0.61,0.0,0.593,0.5411,0.9849,0.4432,0.2625,1.1111,9.7094,0.4308,3.0826,0.0,0.0,7.2571,0.209,3.4776,7.26,0.21,3.4,13.73,0.66,0.0,0.3593,0.2275,0.3571,2.2561,0.0,3.809,0.0,0.92,0.0 house014.xml,55.47,187.805,102.7843,185.2854,0.25818,0.9365,1.0534,1.0,0.9866,1.0,85.226,0.0,0.0,89.81,31.92,15.5,67.34,17.43,17.18,47.42,3.17,0.0,1.1806,0.9608,1.0132,0.8864,0.525,1.1236,43.702200000000005,15.1406,3.4415,0.0,0.0,32.7663,8.268,3.8164,32.77,8.27,3.69,36.32,4.19,0.0,0.5936,0.3102,0.2584,4.5122,0.0,7.618,0.0,0.92,0.0,56.24,9823.66,17704.17,47.86,1.0,47.86,55.47,55.47,0.0,45.88,1.0,45.88,55.47,55.47,0.0,55.47,187.805,102.7843,185.2854,0.25818,0.9365,1.0534,1.0,0.9866,1.0,85.226,0.0,0.0,89.81,31.92,15.5,67.34,17.43,17.18,47.42,3.17,0.0,1.1806,0.9608,1.0132,0.8864,0.525,1.1236,43.702200000000005,15.1406,3.4415,0.0,0.0,32.7663,8.268,3.8164,32.77,8.27,3.69,36.32,4.19,0.0,0.5936,0.3102,0.2584,4.5122,0.0,7.618,0.0,0.92,0.0 house015.xml,16.03,40.556,21.5767,46.2616,0.29084,1.16,0.9599,1.0245,1.1407,0.3436,17.292,11.35,0.0,0.1,24.86,3.31,0.21,13.52,5.83,12.0,0.29,0.0,0.2122,0.4827,0.7003,0.4432,0.2625,1.2346,0.1024,10.7569,0.9213,0.0,0.0,0.214,5.8511,1.6242,0.21,5.85,1.43,9.59,0.21,0.0,0.3346,0.2625,0.3096,2.2561,0.0,3.809,0.0,0.92,0.0,22.0,900.52,3587.82,46.41,1.0,46.41,46.64,46.64,0.0,44.57,1.0,44.57,46.64,46.64,0.0,16.03,40.556,21.5767,46.2616,0.29084,1.16,0.9599,1.0245,1.1407,0.3436,17.292,11.35,0.0,0.1,24.86,3.31,0.21,13.52,5.83,12.0,0.29,0.0,0.2122,0.4827,0.7003,0.4432,0.2625,1.2346,0.1024,10.7569,0.9213,0.0,0.0,0.214,5.8511,1.6242,0.21,5.85,1.43,9.59,0.21,0.0,0.3346,0.2625,0.3096,2.2561,0.0,3.809,0.0,0.92,0.0 @@ -69,7 +69,7 @@ house067.xml,60.11,88.922,55.4425,92.2417,0.30105,1.0117,1.0,1.0254,1.0373,1.0,4 house068.xml,76.42,121.552,90.5974,118.5502,0.26053,0.9753,1.0,1.0,0.9753,1.0,69.504,0.0,0.0,24.740000000000002,55.46,7.52,39.620000000000005,33.0,14.43,32.85,0.98,0.0,1.6014,0.8751,0.8979,2.5642,0.525,1.7241,16.875999999999998,31.1246,5.2838,0.0,0.0,27.0294,18.5151,10.1459,27.32,18.52,10.91,26.9,10.42,0.0,2.5,0.4266,1.5625,2.1886,0.806,7.618,0.0,1.1877,1.013,103.33,14014.9,13906.04,49.48,1.0,49.48,76.42,76.42,0.0,46.41,1.0,46.41,76.42,76.42,0.0,76.42,121.552,90.5974,118.5502,0.26053,0.9753,1.0,1.0,0.9753,1.0,69.504,0.0,0.0,24.740000000000002,55.46,7.52,39.620000000000005,33.0,14.43,32.85,0.98,0.0,1.6014,0.8751,0.8979,2.5642,0.525,1.7241,16.875999999999998,31.1246,5.2838,0.0,0.0,27.0294,18.5151,10.1459,27.32,18.52,10.91,26.9,10.42,0.0,2.5,0.4266,1.5625,2.1886,0.806,7.618,0.0,1.1877,1.013 house069.xml,73.01,113.152,81.7624,111.9905,0.28547,0.9897,1.0,1.0,0.9897,1.0,60.2458,0.0,0.0,25.58,50.41,7.52,40.97,29.66,14.15,29.32,0.33,0.0,0.8003,0.4462,0.9003,1.2821,0.2625,1.6949,18.3997,29.7561,5.2946,0.0,0.0,29.4757,17.5072,9.9673,29.79,17.51,10.51,22.99,5.33,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,101.48,12831.95,12776.28,55.19,1.0,55.19,73.01,73.01,0.0,51.84,1.0,51.84,73.01,73.01,0.0,73.01,113.152,81.7624,111.9905,0.28547,0.9897,1.0,1.0,0.9897,1.0,60.2458,0.0,0.0,25.58,50.41,7.52,40.97,29.66,14.15,29.32,0.33,0.0,0.8003,0.4462,0.9003,1.2821,0.2625,1.6949,18.3997,29.7561,5.2946,0.0,0.0,29.4757,17.5072,9.9673,29.79,17.51,10.51,22.99,5.33,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 house070.xml,43.89,185.062,77.0411,175.5152,0.21065,0.9348,1.0145,1.0,0.9484,1.0,68.61,0.0,0.0,88.76,28.82,11.77,66.41,16.13,13.08,53.58,2.13,0.0,0.5924,0.4691,0.9996,0.4432,0.2625,1.1111,28.2662,4.6025,8.1744,0.0,0.0,21.1492,2.576,9.0865,21.15,2.58,8.89,35.53,0.47,0.0,0.2326,0.1264,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,46.15,7705.36,17603.95,51.27,1.0,51.27,43.89,43.89,1.0,45.59,1.0,45.59,43.89,43.89,1.0,43.89,185.062,77.0411,175.5152,0.21065,0.9348,1.0145,1.0,0.9484,1.0,68.61,0.0,0.0,88.76,28.82,11.77,66.41,16.13,13.08,53.58,2.13,0.0,0.5924,0.4691,0.9996,0.4432,0.2625,1.1111,28.2662,4.6025,8.1744,0.0,0.0,21.1492,2.576,9.0865,21.15,2.58,8.89,35.53,0.47,0.0,0.2326,0.1264,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 -house071.xml,74.77,59.327,46.7516,62.5298,0.20551,1.0361,1.0,1.0172,1.054,1.0,40.4312,0.0,0.0,19.889999999999997,9.8,9.85,16.06,5.51,11.16,19.2,0.58,0.0,1.4381,0.4669,0.9812,1.7253,0.2625,1.1111,22.4437,4.0761,7.2827,0.0,0.0,18.1615,2.292,8.2473,18.22,2.29,8.07,12.56,0.39,0.0,1.6067,0.2275,1.0753,3.3504,0.403,3.809,0.0,0.92,0.0,76.83,4810.38,5940.27,51.35,1.0,51.35,74.77,74.77,0.0,53.06,1.0,53.06,74.77,74.77,0.0,74.77,59.327,46.7516,62.5298,0.20551,1.0361,1.0,1.0172,1.054,1.0,40.4312,0.0,0.0,19.889999999999997,9.8,9.85,16.06,5.51,11.16,19.2,0.58,0.0,1.4381,0.4669,0.9812,1.7253,0.2625,1.1111,22.4437,4.0761,7.2827,0.0,0.0,18.1615,2.292,8.2473,18.22,2.29,8.07,12.56,0.39,0.0,1.6067,0.2275,1.0753,3.3504,0.403,3.809,0.0,0.92,0.0 +house071.xml,74.77,59.327,46.7516,62.5298,0.20551,1.0361,1.0,1.0172,1.054,1.0,40.4312,0.0,0.0,19.889999999999997,9.8,9.85,16.06,5.51,11.16,19.2,0.58,0.0,1.4381,0.4669,0.9812,1.7253,0.2625,1.1111,22.4437,4.0761,7.2827,0.0,0.0,18.1615,2.292,8.2473,18.22,2.29,8.07,12.56,0.39,0.0,1.6067,0.2275,1.0753,3.3504,0.403,3.809,0.0,0.92,0.0,76.83,4810.38,5940.27,51.35,1.0,51.35,74.77,74.77,0.0,46.35,1.0,46.35,74.77,74.77,0.0,74.77,59.327,46.7516,62.5298,0.20551,1.0361,1.0,1.0172,1.054,1.0,40.4312,0.0,0.0,19.889999999999997,9.8,9.85,16.06,5.51,11.16,19.2,0.58,0.0,1.4381,0.4669,0.9812,1.7253,0.2625,1.1111,22.4437,4.0761,7.2827,0.0,0.0,18.1615,2.292,8.2473,18.22,2.29,8.07,12.56,0.39,0.0,1.6067,0.2275,1.0753,3.3504,0.403,3.809,0.0,0.92,0.0 house072.xml,60.52,133.058,79.1538,130.7924,0.22967,0.9799,0.9842,1.0193,0.983,1.0,64.4736,0.0,0.0,88.73,1.61,10.45,139.03,1.97,18.74,31.13,1.14,0.0,1.2217,0.2149,0.9617,1.7253,0.2625,1.7241,51.6512,0.7875,5.2852,0.0,0.0,80.2045,0.962,9.4755,88.1,0.96,11.48,20.83,0.6,0.0,2.0395000000000003,0.2438,1.4286,3.3504,0.403,3.809,0.0,1.1877,1.013,153.98,16197.19,10701.17,55.77,1.0,55.77,60.52,60.52,0.0,48.92,1.0,48.92,60.52,60.52,0.0,60.52,133.058,79.1538,130.7924,0.22967,0.9799,0.9842,1.0193,0.983,1.0,64.4736,0.0,0.0,88.73,1.61,10.45,139.03,1.97,18.74,31.13,1.14,0.0,1.2217,0.2149,0.9617,1.7253,0.2625,1.7241,51.6512,0.7875,5.2852,0.0,0.0,80.2045,0.962,9.4755,88.1,0.96,11.48,20.83,0.6,0.0,2.0395000000000003,0.2438,1.4286,3.3504,0.403,3.809,0.0,1.1877,1.013 house073.xml,29.41,224.926,107.747,214.3436,0.16693,0.9421,1.0115,1.0,0.953,0.585,86.8146,36.031,0.0,118.39,31.020000000000003,11.77,98.49,17.44,26.79,61.14,2.62,0.0,1.9664000000000001,0.9346000000000001,0.9983,2.1364,0.525,2.2727,24.8367,20.6613,14.8449,0.0,0.0,22.627299999999998,11.6101,33.7963,23.43,11.620000000000001,32.44,44.36,3.05,0.0,1.4418,0.4289,1.3889,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013,65.29,13284.13,21349.97,49.85,1.0,49.85,50.27,50.27,1.0,47.2,1.0,47.2,50.27,50.27,0.0,29.41,224.926,107.747,214.3436,0.16693,0.9421,1.0115,1.0,0.953,0.585,86.8146,36.031,0.0,118.39,31.020000000000003,11.77,98.49,17.44,26.79,61.14,2.62,0.0,1.9664000000000001,0.9346000000000001,0.9983,2.1364,0.525,2.2727,24.8367,20.6613,14.8449,0.0,0.0,22.627299999999998,11.6101,33.7963,23.43,11.620000000000001,32.44,44.36,3.05,0.0,1.4418,0.4289,1.3889,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013 house074.xml,84.55,80.044,71.4227,84.4748,0.25483,1.0332,1.0,1.0214,1.0554,1.0,59.489,0.0,0.0,14.52,35.06,7.52,10.72,20.35,8.67,22.21,0.73,0.0,0.6003,0.4525,0.9528,0.4432,0.2625,1.0989,7.2831,25.8102,5.7264,0.0,0.0,5.378,14.9761,6.6048,5.38,14.98,6.53,21.35,11.25,0.0,0.3593,0.2167,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,88.07,8816.32,9485.07,43.35,1.0,43.35,84.55,84.55,0.0,41.67,1.0,41.67,84.55,84.55,0.0,84.55,80.044,71.4227,84.4748,0.25483,1.0332,1.0,1.0214,1.0554,1.0,59.489,0.0,0.0,14.52,35.06,7.52,10.72,20.35,8.67,22.21,0.73,0.0,0.6003,0.4525,0.9528,0.4432,0.2625,1.0989,7.2831,25.8102,5.7264,0.0,0.0,5.378,14.9761,6.6048,5.38,14.98,6.53,21.35,11.25,0.0,0.3593,0.2167,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 diff --git a/workflow/tests/base_results/sample_files.csv b/workflow/tests/base_results/sample_files.csv index 587a2a01a..bddd432e8 100644 --- a/workflow/tests/base_results/sample_files.csv +++ b/workflow/tests/base_results/sample_files.csv @@ -157,7 +157,7 @@ base-lighting-ceiling-fans.xml,78.28,78.512,62.0903,79.3192,0.21593,0.9923,1.0,1 base-location-baltimore-md.xml,72.57,61.114,47.5383,65.5042,0.2688,1.0481,1.0,1.0226,1.0718,1.0,39.9604,0.0,0.0,20.51,11.85,9.61,32.82,7.32,10.62,19.15,0.0,0.0,0.8012,0.4249,0.9828,1.2821,0.2625,1.087,12.1353,12.3755,7.6954,0.0,0.0,19.4196,7.6461,8.511,20.94,7.65,8.51,15.02,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,75.56,9520.08,11754.78,51.27,1.0,51.27,72.57,72.57,0.0,48.85,1.0,48.85,72.57,72.57,0.0,72.57,61.114,47.5383,65.5042,0.2688,1.0481,1.0,1.0226,1.0718,1.0,39.9604,0.0,0.0,20.51,11.85,9.61,32.82,7.32,10.62,19.15,0.0,0.0,0.8012,0.4249,0.9828,1.2821,0.2625,1.087,12.1353,12.3755,7.6954,0.0,0.0,19.4196,7.6461,8.511,20.94,7.65,8.51,15.02,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 base-location-capetown-zaf.xml,79.62,36.845,30.6913,38.5459,0.17486,1.0311,1.0,1.0147,1.0462,1.0,27.7648,0.0,0.0,4.04,5.28,8.36,6.46,2.92,9.36,19.18,0.0,0.0,0.8009,0.4745,0.9703,1.2821,0.2625,1.087,0.7366,7.8553,6.7064,0.0,0.0,1.179,4.346,7.513,1.27,4.35,7.51,15.08,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,49.93,1.0,49.93,79.62,79.62,0.0,47.67,1.0,47.67,79.62,79.62,0.0,79.62,36.845,30.6913,38.5459,0.17486,1.0311,1.0,1.0147,1.0462,1.0,27.7648,0.0,0.0,4.04,5.28,8.36,6.46,2.92,9.36,19.18,0.0,0.0,0.8009,0.4745,0.9703,1.2821,0.2625,1.087,0.7366,7.8553,6.7064,0.0,0.0,1.179,4.346,7.513,1.27,4.35,7.51,15.08,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 base-location-dallas-tx.xml,70.22,64.675,48.6591,69.2957,0.26738,1.0479,1.0,1.0225,1.0714,1.0,38.678,0.0,0.0,9.88,28.06,7.52,15.82,16.68,8.5,19.22,0.0,0.0,0.8007,0.4416,0.9611,1.2821,0.2625,1.087,3.0907,24.2235,5.936,0.0,0.0,4.9488,14.4011,6.713,5.34,14.4,6.71,15.09,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,74.33,6167.47,7743.81,46.75,1.0,46.75,70.22,70.22,0.0,43.91,1.0,43.91,70.22,70.22,0.0,70.22,64.675,48.6591,69.2957,0.26738,1.0479,1.0,1.0225,1.0714,1.0,38.678,0.0,0.0,9.88,28.06,7.52,15.82,16.68,8.5,19.22,0.0,0.0,0.8007,0.4416,0.9611,1.2821,0.2625,1.087,3.0907,24.2235,5.936,0.0,0.0,4.9488,14.4011,6.713,5.34,14.4,6.71,15.09,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-duluth-mn.xml,76.8,79.382,65.1176,84.7902,0.25537,1.0457,1.0,1.0215,1.0681,1.0,55.4638,0.0,0.0,46.02,2.03,13.08,73.32,2.15,14.52,18.26,0.0,0.0,0.8047,0.2479,0.9791,1.2821,0.2625,1.087,37.7573,2.4358,10.2846,0.0,0.0,60.1568,2.58,11.417,64.85,2.58,11.42,14.32,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,170.83,11625.5,6371.06,53.9,1.0,53.9,76.8,76.8,0.0,58.52,1.0,58.52,76.8,76.8,0.0,76.8,79.382,65.1176,84.7902,0.25537,1.0457,1.0,1.0215,1.0681,1.0,55.4638,0.0,0.0,46.02,2.03,13.08,73.32,2.15,14.52,18.26,0.0,0.0,0.8047,0.2479,0.9791,1.2821,0.2625,1.087,37.7573,2.4358,10.2846,0.0,0.0,60.1568,2.58,11.417,64.85,2.58,11.42,14.32,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-duluth-mn.xml,76.8,79.382,65.1176,84.7902,0.25537,1.0457,1.0,1.0215,1.0681,1.0,55.4638,0.0,0.0,46.02,2.03,13.08,73.32,2.15,14.52,18.26,0.0,0.0,0.8047,0.2479,0.9791,1.2821,0.2625,1.087,37.7573,2.4358,10.2846,0.0,0.0,60.1568,2.58,11.417,64.85,2.58,11.42,14.32,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,170.83,11625.5,6371.06,53.9,1.0,53.9,76.8,76.8,0.0,46.86,1.0,46.86,76.8,76.8,0.0,76.8,79.382,65.1176,84.7902,0.25537,1.0457,1.0,1.0215,1.0681,1.0,55.4638,0.0,0.0,46.02,2.03,13.08,73.32,2.15,14.52,18.26,0.0,0.0,0.8047,0.2479,0.9791,1.2821,0.2625,1.087,37.7573,2.4358,10.2846,0.0,0.0,60.1568,2.58,11.417,64.85,2.58,11.42,14.32,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 base-location-helena-mt.xml,77.09,93.102,72.5317,94.0826,0.22118,0.9921,1.0,1.0186,1.0105,1.0,61.2664,0.0,0.0,49.73,4.29,11.89,79.22,2.96,12.94,27.19,0.0,0.0,0.8049,0.3807,0.9988,1.2821,0.2625,1.087,38.3626,3.7351,9.3419,0.0,0.0,61.1067,2.576,10.166,65.88,2.58,10.17,21.09,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,197.22,11792.91,5917.27,57.62,1.0,57.62,77.09,77.09,0.0,50.79,1.0,50.79,77.09,77.09,0.0,77.09,93.102,72.5317,94.0826,0.22118,0.9921,1.0,1.0186,1.0105,1.0,61.2664,0.0,0.0,49.73,4.29,11.89,79.22,2.96,12.94,27.19,0.0,0.0,0.8049,0.3807,0.9988,1.2821,0.2625,1.087,38.3626,3.7351,9.3419,0.0,0.0,61.1067,2.576,10.166,65.88,2.58,10.17,21.09,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 base-location-honolulu-hi.xml,81.09,69.913,59.5015,73.3736,0.18719,1.0333,1.0,1.0157,1.0495,1.0,42.474,0.0,0.0,0.0,45.37,5.18,0.0,25.23,6.1,19.36,0.0,0.0,0.0,0.4722,0.924,1.2821,0.2625,1.087,0.0,39.9521,4.0344,0.0,0.0,0.0,22.2142,4.746,0.0,22.21,4.75,15.2,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,61.55,1.0,61.55,81.09,81.09,0.0,40.3,1.0,40.3,81.09,81.09,0.0,81.09,69.913,59.5015,73.3736,0.18719,1.0333,1.0,1.0157,1.0495,1.0,42.474,0.0,0.0,0.0,45.37,5.18,0.0,25.23,6.1,19.36,0.0,0.0,0.0,0.4722,0.924,1.2821,0.2625,1.087,0.0,39.9521,4.0344,0.0,0.0,0.0,22.2142,4.746,0.0,22.21,4.75,15.2,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 base-location-miami-fl.xml,78.75,68.052,56.4627,71.697,0.20217,1.036,1.0,1.017,1.0536,1.0,41.6454,0.0,0.0,0.05,43.32,5.34,0.08,25.03,6.26,19.34,0.0,0.0,0.8032,0.4543,0.9263,1.2821,0.2625,1.087,0.0006,36.8026,4.1555,0.0,0.0,0.0009,21.2672,4.876,0.0,21.27,4.88,15.19,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,77.65,6115.09,7474.39,62.46,1.0,62.46,78.75,78.75,0.0,42.1,1.0,42.1,78.75,78.75,0.0,78.75,68.052,56.4627,71.697,0.20217,1.036,1.0,1.017,1.0536,1.0,41.6454,0.0,0.0,0.05,43.32,5.34,0.08,25.03,6.26,19.34,0.0,0.0,0.8032,0.4543,0.9263,1.2821,0.2625,1.087,0.0006,36.8026,4.1555,0.0,0.0,0.0009,21.2672,4.876,0.0,21.27,4.88,15.19,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 diff --git a/workflow/version.rb b/workflow/version.rb index 44b6249d3..506ce0e8e 100644 --- a/workflow/version.rb +++ b/workflow/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Version - OS_ERI_Version = '1.9.2' # Version of the OS-ERI workflow + OS_ERI_Version = '1.9.3' # Version of the OS-ERI workflow end