From 9e73321bff636bc176d938a69a172f3329c99fa4 Mon Sep 17 00:00:00 2001 From: Simon Vidanovic Date: Wed, 6 Dec 2023 13:29:25 -0800 Subject: [PATCH 01/19] Cylindrical and Spehrical pillars added. --- CMakeLists-Windows-CalcEngine.txt.in | 2 +- src/glazing_system.cpp | 11 + src/glazing_system.h | 3 + test/CMakeLists.txt | 1 + .../theta=0_phi=0/color.json | 288 ++++++++++++++++++ .../theta=0_phi=0/photopic.json | 78 +++++ .../theta=0_phi=0/solar.json | 78 +++++ .../condensed_spectrum/theta=0_phi=0/tdw.json | 78 +++++ .../condensed_spectrum/theta=0_phi=0/tkr.json | 78 +++++ .../condensed_spectrum/theta=0_phi=0/tuv.json | 78 +++++ .../theta=15_phi=270/color.json | 288 ++++++++++++++++++ .../theta=15_phi=270/photopic.json | 78 +++++ .../theta=15_phi=270/solar.json | 78 +++++ .../theta=15_phi=270/tdw.json | 78 +++++ .../theta=15_phi=270/tkr.json | 78 +++++ .../theta=15_phi=270/tuv.json | 78 +++++ .../thermal_SHGC_Environment.json | 33 ++ .../theta=0_phi=0/thermal_U_Environment.json | 33 ++ .../thermal_SHGC_Environment.json | 33 ++ .../thermal_U_Environment.json | 33 ++ .../thermal_SHGC_Environment.json | 33 ++ .../theta=0_phi=0/thermal_U_Environment.json | 33 ++ .../thermal_SHGC_Environment.json | 33 ++ .../thermal_U_Environment.json | 33 ++ .../full_spectrum/theta=0_phi=0/color.json | 288 ++++++++++++++++++ .../full_spectrum/theta=0_phi=0/photopic.json | 78 +++++ .../full_spectrum/theta=0_phi=0/solar.json | 78 +++++ .../full_spectrum/theta=0_phi=0/tdw.json | 78 +++++ .../full_spectrum/theta=0_phi=0/tkr.json | 78 +++++ .../full_spectrum/theta=0_phi=0/tuv.json | 78 +++++ .../full_spectrum/theta=15_phi=270/color.json | 288 ++++++++++++++++++ .../theta=15_phi=270/photopic.json | 78 +++++ .../full_spectrum/theta=15_phi=270/solar.json | 78 +++++ .../full_spectrum/theta=15_phi=270/tdw.json | 78 +++++ .../full_spectrum/theta=15_phi=270/tkr.json | 78 +++++ .../full_spectrum/theta=15_phi=270/tuv.json | 78 +++++ .../thermal_SHGC_Environment.json | 33 ++ .../theta=0_phi=0/thermal_U_Environment.json | 33 ++ .../thermal_SHGC_Environment.json | 33 ++ .../thermal_U_Environment.json | 33 ++ .../thermal_SHGC_Environment.json | 33 ++ .../theta=0_phi=0/thermal_U_Environment.json | 33 ++ .../thermal_SHGC_Environment.json | 33 ++ .../thermal_U_Environment.json | 33 ++ test/nfrc_102_nfrc_102_vacuum.unit.cpp | 108 +++++++ 45 files changed, 3364 insertions(+), 1 deletion(-) create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=0_phi=0/color.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=0_phi=0/photopic.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=0_phi=0/solar.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=0_phi=0/tdw.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=0_phi=0/tkr.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=0_phi=0/tuv.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=15_phi=270/color.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=15_phi=270/photopic.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=15_phi=270/solar.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=15_phi=270/tdw.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=15_phi=270/tkr.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=15_phi=270/tuv.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=0_phi=0/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=15_phi=270/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=0_phi=0/color.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=0_phi=0/photopic.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=0_phi=0/solar.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=0_phi=0/tdw.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=0_phi=0/tkr.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=0_phi=0/tuv.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=15_phi=270/color.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=15_phi=270/photopic.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=15_phi=270/solar.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=15_phi=270/tdw.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=15_phi=270/tkr.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=15_phi=270/tuv.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=0_phi=0/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=15_phi=270/thermal_U_Environment.json create mode 100644 test/nfrc_102_nfrc_102_vacuum.unit.cpp diff --git a/CMakeLists-Windows-CalcEngine.txt.in b/CMakeLists-Windows-CalcEngine.txt.in index 1f7ff235..11261243 100644 --- a/CMakeLists-Windows-CalcEngine.txt.in +++ b/CMakeLists-Windows-CalcEngine.txt.in @@ -4,7 +4,7 @@ include(ExternalProject) ExternalProject_Add(Windows-CalcEngine GIT_REPOSITORY https://github.com/LBNL-ETA/Windows-CalcEngine.git - GIT_TAG "Version_1.0.46" + GIT_TAG "VacuumDec2023" UPDATE_COMMAND "" PATCH_COMMAND "" diff --git a/src/glazing_system.cpp b/src/glazing_system.cpp index 7c876b09..97782da5 100644 --- a/src/glazing_system.cpp +++ b/src/glazing_system.cpp @@ -310,6 +310,17 @@ namespace wincalc return product_data; } + void Glazing_System::gap_layers(std::vector> const & layers) + { + reset_igu(); + gap_values = layers; + } + + std::vector> Glazing_System::gap_layers() const + { + return gap_values; + } + void Glazing_System::sort_spectral_data() { for(auto & product : product_data) diff --git a/src/glazing_system.h b/src/glazing_system.h index 8dc814ef..a4ad444d 100644 --- a/src/glazing_system.h +++ b/src/glazing_system.h @@ -118,6 +118,9 @@ namespace wincalc void solid_layers(std::vector const & layers); std::vector solid_layers() const; + void gap_layers(std::vector> const & layers); + std::vector> gap_layers() const; + Environments environments() const; void environments(Environments const & environment); diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index bb0a043a..59d2911a 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -29,6 +29,7 @@ add_subdirectory(${CMAKE_CURRENT_BINARY_DIR}/googletest-src add_executable(${PROJECT_TEST_NAME} nfrc_102_nfrc_102_forced_ventilation.unit.cpp + nfrc_102_nfrc_102_vacuum.unit.cpp deflection_triple_clear.unit.cpp deflection_youngs_modulus.unit.cpp deflection.unit.cpp diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=0_phi=0/color.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=0_phi=0/color.json new file mode 100644 index 00000000..3b56efd9 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=0_phi=0/color.json @@ -0,0 +1,288 @@ +{ + "system_results": { + "back": { + "reflectance": { + "diffuse_diffuse": { + "lab": { + "L": 55.86114478758442, + "a": -1.2660653226275742, + "b": -0.8075233135783177 + }, + "rgb": { + "B": 169, + "G": 146, + "R": 145 + }, + "trichromatic": { + "X": 23.488415686311797, + "Y": 23.77433766923619, + "Z": 33.309760890913466 + } + }, + "direct_diffuse": { + "lab": { + "L": 0.0, + "a": 0.0, + "b": 0.0 + }, + "rgb": { + "B": 0, + "G": 0, + "R": 0 + }, + "trichromatic": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + }, + "direct_direct": { + "lab": { + "L": 45.5929116421958, + "a": -1.0639844320723402, + "b": -1.0836647738553973 + }, + "rgb": { + "B": 137, + "G": 118, + "R": 117 + }, + "trichromatic": { + "X": 14.793395318171083, + "Y": 14.969877153117015, + "Z": 21.20533275704733 + } + }, + "direct_hemispheric": { + "lab": { + "L": 45.5929116421958, + "a": -1.0639844320723402, + "b": -1.0836647738553973 + }, + "rgb": { + "B": 137, + "G": 118, + "R": 117 + }, + "trichromatic": { + "X": 14.793395318171083, + "Y": 14.969877153117015, + "Z": 21.20533275704733 + } + } + }, + "transmittance": { + "diffuse_diffuse": { + "lab": { + "L": 87.58039128935123, + "a": -2.128403032955084, + "b": -0.1813685808046861 + }, + "rgb": { + "B": 255, + "G": 240, + "R": 239 + }, + "trichromatic": { + "X": 70.196321465472, + "Y": 71.19650489042203, + "Z": 98.1251027649194 + } + }, + "direct_diffuse": { + "lab": { + "L": 0.0, + "a": 0.0, + "b": 0.0 + }, + "rgb": { + "B": 0, + "G": 0, + "R": 0 + }, + "trichromatic": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + }, + "direct_direct": { + "lab": { + "L": 92.32810937087696, + "a": -1.910708861058763, + "b": -0.11520208562414425 + }, + "rgb": { + "B": 255, + "G": 254, + "R": 255 + }, + "trichromatic": { + "X": 80.46161900732265, + "Y": 81.4422049191355, + "Z": 112.11193372143705 + } + }, + "direct_hemispheric": { + "lab": { + "L": 92.32810937087696, + "a": -1.910708861058763, + "b": -0.11520208562414425 + }, + "rgb": { + "B": 255, + "G": 254, + "R": 255 + }, + "trichromatic": { + "X": 80.46161900732265, + "Y": 81.4422049191355, + "Z": 112.11193372143705 + } + } + } + }, + "front": { + "reflectance": { + "diffuse_diffuse": { + "lab": { + "L": 55.86085166775675, + "a": -1.2681063679628735, + "b": -0.8080286819437177 + }, + "rgb": { + "B": 169, + "G": 146, + "R": 145 + }, + "trichromatic": { + "X": 23.487660858690816, + "Y": 23.774046745621362, + "Z": 33.309760882381156 + } + }, + "direct_diffuse": { + "lab": { + "L": 0.0, + "a": 0.0, + "b": 0.0 + }, + "rgb": { + "B": 0, + "G": 0, + "R": 0 + }, + "trichromatic": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + }, + "direct_direct": { + "lab": { + "L": 45.59249377075667, + "a": -1.0668934095782734, + "b": -1.0843852285001399 + }, + "rgb": { + "B": 137, + "G": 118, + "R": 117 + }, + "trichromatic": { + "X": 14.792604790370095, + "Y": 14.96957246992362, + "Z": 21.20533274912856 + } + }, + "direct_hemispheric": { + "lab": { + "L": 45.59249377075667, + "a": -1.0668934095782734, + "b": -1.0843852285001399 + }, + "rgb": { + "B": 137, + "G": 118, + "R": 117 + }, + "trichromatic": { + "X": 14.792604790370095, + "Y": 14.96957246992362, + "Z": 21.20533274912856 + } + } + }, + "transmittance": { + "diffuse_diffuse": { + "lab": { + "L": 87.58039128935123, + "a": -2.128403032955084, + "b": -0.1813685808046861 + }, + "rgb": { + "B": 255, + "G": 240, + "R": 239 + }, + "trichromatic": { + "X": 70.196321465472, + "Y": 71.19650489042203, + "Z": 98.1251027649194 + } + }, + "direct_diffuse": { + "lab": { + "L": 0.0, + "a": 0.0, + "b": 0.0 + }, + "rgb": { + "B": 0, + "G": 0, + "R": 0 + }, + "trichromatic": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + }, + "direct_direct": { + "lab": { + "L": 92.32810937087696, + "a": -1.910708861058763, + "b": -0.11520208562414425 + }, + "rgb": { + "B": 255, + "G": 254, + "R": 255 + }, + "trichromatic": { + "X": 80.46161900732265, + "Y": 81.4422049191355, + "Z": 112.11193372143705 + } + }, + "direct_hemispheric": { + "lab": { + "L": 92.32810937087696, + "a": -1.910708861058763, + "b": -0.11520208562414425 + }, + "rgb": { + "B": 255, + "G": 254, + "R": 255 + }, + "trichromatic": { + "X": 80.46161900732265, + "Y": 81.4422049191355, + "Z": 112.11193372143705 + } + } + } + } + } +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=0_phi=0/photopic.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=0_phi=0/photopic.json new file mode 100644 index 00000000..681f6b4b --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=0_phi=0/photopic.json @@ -0,0 +1,78 @@ +{ + "layer_results": { + "layer 0": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.025560503641324898, + "heat_direct": 0.02182961914599101, + "total_diffuse": 0.025560503641324898, + "total_direct": 0.02182961914599101 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.025573266527757474, + "heat_direct": 0.021842853720784403, + "total_diffuse": 0.025573266527757474, + "total_direct": 0.021842853720784403 + } + } + }, + "layer 1": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.019219520666649108, + "heat_direct": 0.018265159957224667, + "total_diffuse": 0.019219520666649108, + "total_direct": 0.018265159957224667 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.019231806816747826, + "heat_direct": 0.0182781591429543, + "total_diffuse": 0.019231806816747826, + "total_direct": 0.0182781591429543 + } + } + } + }, + "system_results": { + "back": { + "reflectance": { + "diffuse_diffuse": 0.2366409986750528, + "direct_diffuse": 0.0, + "direct_direct": 0.14897612582425843, + "direct_hemispherical": 0.14897612582425843 + }, + "transmittance": { + "diffuse_diffuse": 0.708404382625215, + "direct_diffuse": 0.0, + "direct_direct": 0.8109290950725254, + "direct_hemispherical": 0.8109290950725254 + } + }, + "front": { + "reflectance": { + "diffuse_diffuse": 0.23661594963852156, + "direct_diffuse": 0.0, + "direct_direct": 0.14894989206373543, + "direct_hemispherical": 0.14894989206373543 + }, + "transmittance": { + "diffuse_diffuse": 0.708404382625215, + "direct_diffuse": 0.0, + "direct_direct": 0.8109290950725254, + "direct_hemispherical": 0.8109290950725254 + } + } + } +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=0_phi=0/solar.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=0_phi=0/solar.json new file mode 100644 index 00000000..121371cf --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=0_phi=0/solar.json @@ -0,0 +1,78 @@ +{ + "layer_results": { + "layer 0": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.11202998147652667, + "heat_direct": 0.09914895804135938, + "total_diffuse": 0.11202998147652667, + "total_direct": 0.09914895804135938 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.11214585085769808, + "heat_direct": 0.09926770098945308, + "total_diffuse": 0.11214585085769808, + "total_direct": 0.09926770098945308 + } + } + }, + "layer 1": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.07273628720741625, + "heat_direct": 0.07159922987079678, + "total_diffuse": 0.07273628720741625, + "total_direct": 0.07159922987079678 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.0728404054368728, + "heat_direct": 0.07170941336761498, + "total_diffuse": 0.0728404054368728, + "total_direct": 0.07170941336761498 + } + } + } + }, + "system_results": { + "back": { + "reflectance": { + "diffuse_diffuse": 0.20520154953321706, + "direct_diffuse": 0.0, + "direct_direct": 0.12774266516056168, + "direct_hemispherical": 0.12774266516056168 + }, + "transmittance": { + "diffuse_diffuse": 0.5998575873910821, + "direct_diffuse": 0.0, + "direct_direct": 0.7015091469272823, + "direct_hemispherical": 0.7015091469272823 + } + }, + "front": { + "reflectance": { + "diffuse_diffuse": 0.20498156192258904, + "direct_diffuse": 0.0, + "direct_direct": 0.1275137387156499, + "direct_hemispherical": 0.1275137387156499 + }, + "transmittance": { + "diffuse_diffuse": 0.5998575873910821, + "direct_diffuse": 0.0, + "direct_direct": 0.7015091469272823, + "direct_hemispherical": 0.7015091469272823 + } + } + } +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=0_phi=0/tdw.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=0_phi=0/tdw.json new file mode 100644 index 00000000..ad92aa39 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=0_phi=0/tdw.json @@ -0,0 +1,78 @@ +{ + "layer_results": { + "layer 0": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.11228600208823507, + "heat_direct": 0.11177322811710255, + "total_diffuse": 0.11228600208823507, + "total_direct": 0.11177322811710255 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.11238938508605409, + "heat_direct": 0.11187062830801828, + "total_diffuse": 0.11238938508605409, + "total_direct": 0.11187062830801828 + } + } + }, + "layer 1": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.02806885848802314, + "heat_direct": 0.027056207205955748, + "total_diffuse": 0.02806885848802314, + "total_direct": 0.027056207205955748 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.028082551691559647, + "heat_direct": 0.027070771916018265, + "total_diffuse": 0.028082551691559647, + "total_direct": 0.027070771916018265 + } + } + } + }, + "system_results": { + "back": { + "reflectance": { + "diffuse_diffuse": 0.2228971721831168, + "direct_diffuse": 0.0, + "direct_direct": 0.1411575569387717, + "direct_hemispherical": 0.1411575569387717 + }, + "transmittance": { + "diffuse_diffuse": 0.6265733728488667, + "direct_diffuse": 0.0, + "direct_direct": 0.7200130077381702, + "direct_hemispherical": 0.7200130077381702 + } + }, + "front": { + "reflectance": { + "diffuse_diffuse": 0.22278009598176127, + "direct_diffuse": 0.0, + "direct_direct": 0.14104559203779338, + "direct_hemispherical": 0.14104559203779338 + }, + "transmittance": { + "diffuse_diffuse": 0.6265733728488667, + "direct_diffuse": 0.0, + "direct_direct": 0.7200130077381702, + "direct_hemispherical": 0.7200130077381702 + } + } + } +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=0_phi=0/tkr.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=0_phi=0/tkr.json new file mode 100644 index 00000000..d214b1ff --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=0_phi=0/tkr.json @@ -0,0 +1,78 @@ +{ + "layer_results": { + "layer 0": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.2559813399783254, + "heat_direct": 0.2635238820984959, + "total_diffuse": 0.2559813399783254, + "total_direct": 0.2635238820984959 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.25623634479902213, + "heat_direct": 0.2637602992889103, + "total_diffuse": 0.25623634479902213, + "total_direct": 0.2637602992889103 + } + } + }, + "layer 1": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.032393427636869324, + "heat_direct": 0.03149925918105127, + "total_diffuse": 0.032393427636869324, + "total_direct": 0.03149925918105127 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.0323936690072713, + "heat_direct": 0.03149973403453158, + "total_diffuse": 0.0323936690072713, + "total_direct": 0.03149973403453158 + } + } + } + }, + "system_results": { + "back": { + "reflectance": { + "diffuse_diffuse": 0.19855475962055222, + "direct_diffuse": 0.0, + "direct_direct": 0.12457782545850378, + "direct_hemispherical": 0.12457782545850378 + }, + "transmittance": { + "diffuse_diffuse": 0.5028958783724948, + "direct_diffuse": 0.0, + "direct_direct": 0.580399033261949, + "direct_hemispherical": 0.580399033261949 + } + }, + "front": { + "reflectance": { + "diffuse_diffuse": 0.19829951342945346, + "direct_diffuse": 0.0, + "direct_direct": 0.12434093341460908, + "direct_hemispherical": 0.12434093341460908 + }, + "transmittance": { + "diffuse_diffuse": 0.5028958783724948, + "direct_diffuse": 0.0, + "direct_direct": 0.580399033261949, + "direct_hemispherical": 0.580399033261949 + } + } + } +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=0_phi=0/tuv.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=0_phi=0/tuv.json new file mode 100644 index 00000000..3170abdf --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=0_phi=0/tuv.json @@ -0,0 +1,78 @@ +{ + "layer_results": { + "layer 0": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.327754475506361, + "heat_direct": 0.3385936702319533, + "total_diffuse": 0.327754475506361, + "total_direct": 0.3385936702319533 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.32808777583300935, + "heat_direct": 0.3389026758679059, + "total_diffuse": 0.32808777583300935, + "total_direct": 0.3389026758679059 + } + } + }, + "layer 1": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.037219879148926716, + "heat_direct": 0.0362992710918075, + "total_diffuse": 0.037219879148926716, + "total_direct": 0.0362992710918075 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.037220194628585515, + "heat_direct": 0.0362998917421139, + "total_diffuse": 0.037220194628585515, + "total_direct": 0.0362998917421139 + } + } + } + }, + "system_results": { + "back": { + "reflectance": { + "diffuse_diffuse": 0.1854359214892884, + "direct_diffuse": 0.0, + "direct_direct": 0.11564803319459878, + "direct_hemispherical": 0.11564803319459878 + }, + "transmittance": { + "diffuse_diffuse": 0.43941512946366557, + "direct_diffuse": 0.0, + "direct_direct": 0.5094590254816403, + "direct_hemispherical": 0.5094590254816403 + } + }, + "front": { + "reflectance": { + "diffuse_diffuse": 0.18510230568298128, + "direct_diffuse": 0.0, + "direct_direct": 0.11533840690833981, + "direct_hemispherical": 0.11533840690833981 + }, + "transmittance": { + "diffuse_diffuse": 0.43941512946366557, + "direct_diffuse": 0.0, + "direct_direct": 0.5094590254816403, + "direct_hemispherical": 0.5094590254816403 + } + } + } +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=15_phi=270/color.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=15_phi=270/color.json new file mode 100644 index 00000000..9ed70daa --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=15_phi=270/color.json @@ -0,0 +1,288 @@ +{ + "system_results": { + "back": { + "reflectance": { + "diffuse_diffuse": { + "lab": { + "L": 55.86114478758442, + "a": -1.2660653226275742, + "b": -0.8075233135783177 + }, + "rgb": { + "B": 169, + "G": 146, + "R": 145 + }, + "trichromatic": { + "X": 23.488415686311797, + "Y": 23.77433766923619, + "Z": 33.309760890913466 + } + }, + "direct_diffuse": { + "lab": { + "L": 0.0, + "a": 0.0, + "b": 0.0 + }, + "rgb": { + "B": 0, + "G": 0, + "R": 0 + }, + "trichromatic": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + }, + "direct_direct": { + "lab": { + "L": 45.61145174100375, + "a": -1.0780527773786575, + "b": -1.085738170092787 + }, + "rgb": { + "B": 137, + "G": 118, + "R": 117 + }, + "trichromatic": { + "X": 14.804449512196063, + "Y": 14.983399482838172, + "Z": 21.225524320928105 + } + }, + "direct_hemispheric": { + "lab": { + "L": 45.61145174100375, + "a": -1.0780527773786575, + "b": -1.085738170092787 + }, + "rgb": { + "B": 137, + "G": 118, + "R": 117 + }, + "trichromatic": { + "X": 14.804449512196063, + "Y": 14.983399482838172, + "Z": 21.225524320928105 + } + } + }, + "transmittance": { + "diffuse_diffuse": { + "lab": { + "L": 87.58039128935123, + "a": -2.128403032955084, + "b": -0.1813685808046861 + }, + "rgb": { + "B": 255, + "G": 240, + "R": 239 + }, + "trichromatic": { + "X": 70.196321465472, + "Y": 71.19650489042203, + "Z": 98.1251027649194 + } + }, + "direct_diffuse": { + "lab": { + "L": 0.0, + "a": 0.0, + "b": 0.0 + }, + "rgb": { + "B": 0, + "G": 0, + "R": 0 + }, + "trichromatic": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + }, + "direct_direct": { + "lab": { + "L": 92.29937276704479, + "a": -1.9386092497462593, + "b": -0.1212585574229541 + }, + "rgb": { + "B": 255, + "G": 254, + "R": 254 + }, + "trichromatic": { + "X": 80.38286589980196, + "Y": 81.377408673532, + "Z": 112.03368550353858 + } + }, + "direct_hemispheric": { + "lab": { + "L": 92.29937276704479, + "a": -1.9386092497462593, + "b": -0.1212585574229541 + }, + "rgb": { + "B": 255, + "G": 254, + "R": 254 + }, + "trichromatic": { + "X": 80.38286589980196, + "Y": 81.377408673532, + "Z": 112.03368550353858 + } + } + } + }, + "front": { + "reflectance": { + "diffuse_diffuse": { + "lab": { + "L": 55.86085166775675, + "a": -1.2681063679628735, + "b": -0.8080286819437177 + }, + "rgb": { + "B": 169, + "G": 146, + "R": 145 + }, + "trichromatic": { + "X": 23.487660858690816, + "Y": 23.774046745621362, + "Z": 33.309760882381156 + } + }, + "direct_diffuse": { + "lab": { + "L": 0.0, + "a": 0.0, + "b": 0.0 + }, + "rgb": { + "B": 0, + "G": 0, + "R": 0 + }, + "trichromatic": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + }, + "direct_direct": { + "lab": { + "L": 45.61103420950019, + "a": -1.0809598776994611, + "b": -1.0864580386400702 + }, + "rgb": { + "B": 137, + "G": 118, + "R": 117 + }, + "trichromatic": { + "X": 14.803659151877488, + "Y": 14.98309486419626, + "Z": 21.225524313003337 + } + }, + "direct_hemispheric": { + "lab": { + "L": 45.61103420950019, + "a": -1.0809598776994611, + "b": -1.0864580386400702 + }, + "rgb": { + "B": 137, + "G": 118, + "R": 117 + }, + "trichromatic": { + "X": 14.803659151877488, + "Y": 14.98309486419626, + "Z": 21.225524313003337 + } + } + }, + "transmittance": { + "diffuse_diffuse": { + "lab": { + "L": 87.58039128935123, + "a": -2.128403032955084, + "b": -0.1813685808046861 + }, + "rgb": { + "B": 255, + "G": 240, + "R": 239 + }, + "trichromatic": { + "X": 70.196321465472, + "Y": 71.19650489042203, + "Z": 98.1251027649194 + } + }, + "direct_diffuse": { + "lab": { + "L": 0.0, + "a": 0.0, + "b": 0.0 + }, + "rgb": { + "B": 0, + "G": 0, + "R": 0 + }, + "trichromatic": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + }, + "direct_direct": { + "lab": { + "L": 92.29937276704479, + "a": -1.9386092497462593, + "b": -0.1212585574229541 + }, + "rgb": { + "B": 255, + "G": 254, + "R": 254 + }, + "trichromatic": { + "X": 80.38286589980196, + "Y": 81.377408673532, + "Z": 112.03368550353858 + } + }, + "direct_hemispheric": { + "lab": { + "L": 92.29937276704479, + "a": -1.9386092497462593, + "b": -0.1212585574229541 + }, + "rgb": { + "B": 255, + "G": 254, + "R": 254 + }, + "trichromatic": { + "X": 80.38286589980196, + "Y": 81.377408673532, + "Z": 112.03368550353858 + } + } + } + } + } +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=15_phi=270/photopic.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=15_phi=270/photopic.json new file mode 100644 index 00000000..e050ac20 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=15_phi=270/photopic.json @@ -0,0 +1,78 @@ +{ + "layer_results": { + "layer 0": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.025560503641324898, + "heat_direct": 0.022146319693414667, + "total_diffuse": 0.025560503641324898, + "total_direct": 0.022146319693414667 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.025573266527757474, + "heat_direct": 0.022159553863840428, + "total_diffuse": 0.025573266527757474, + "total_direct": 0.022159553863840428 + } + } + }, + "layer 1": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.019219520666649108, + "heat_direct": 0.018519694902702093, + "total_diffuse": 0.019219520666649108, + "total_direct": 0.018519694902702093 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.019231806816747826, + "heat_direct": 0.018532688934802637, + "total_diffuse": 0.019231806816747826, + "total_direct": 0.018532688934802637 + } + } + } + }, + "system_results": { + "back": { + "reflectance": { + "diffuse_diffuse": 0.2366409986750528, + "direct_diffuse": 0.0, + "direct_direct": 0.14910268686069966, + "direct_hemispherical": 0.14910268686069966 + }, + "transmittance": { + "diffuse_diffuse": 0.708404382625215, + "direct_diffuse": 0.0, + "direct_direct": 0.8102312985431835, + "direct_hemispherical": 0.8102312985431835 + } + }, + "front": { + "reflectance": { + "diffuse_diffuse": 0.23661594963852156, + "direct_diffuse": 0.0, + "direct_direct": 0.1490764586581734, + "direct_hemispherical": 0.1490764586581734 + }, + "transmittance": { + "diffuse_diffuse": 0.708404382625215, + "direct_diffuse": 0.0, + "direct_direct": 0.8102312985431835, + "direct_hemispherical": 0.8102312985431835 + } + } + } +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=15_phi=270/solar.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=15_phi=270/solar.json new file mode 100644 index 00000000..5c67b0c0 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=15_phi=270/solar.json @@ -0,0 +1,78 @@ +{ + "layer_results": { + "layer 0": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.11202998147652667, + "heat_direct": 0.1004434154741522, + "total_diffuse": 0.11202998147652667, + "total_direct": 0.1004434154741522 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.11214585085769808, + "heat_direct": 0.10056212795019381, + "total_diffuse": 0.11214585085769808, + "total_direct": 0.10056212795019381 + } + } + }, + "layer 1": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.07273628720741625, + "heat_direct": 0.07243727116939677, + "total_diffuse": 0.07273628720741625, + "total_direct": 0.07243727116939677 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.0728404054368728, + "heat_direct": 0.07254735676878689, + "total_diffuse": 0.0728404054368728, + "total_direct": 0.07254735676878689 + } + } + } + }, + "system_results": { + "back": { + "reflectance": { + "diffuse_diffuse": 0.20520154953321706, + "direct_diffuse": 0.0, + "direct_direct": 0.1276592496573839, + "direct_hemispherical": 0.1276592496573839 + }, + "transmittance": { + "diffuse_diffuse": 0.5998575873910821, + "direct_diffuse": 0.0, + "direct_direct": 0.6994600636990674, + "direct_hemispherical": 0.6994600636990674 + } + }, + "front": { + "reflectance": { + "diffuse_diffuse": 0.20498156192258904, + "direct_diffuse": 0.0, + "direct_direct": 0.12743045158195218, + "direct_hemispherical": 0.12743045158195218 + }, + "transmittance": { + "diffuse_diffuse": 0.5998575873910821, + "direct_diffuse": 0.0, + "direct_direct": 0.6994600636990674, + "direct_hemispherical": 0.6994600636990674 + } + } + } +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=15_phi=270/tdw.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=15_phi=270/tdw.json new file mode 100644 index 00000000..72d2eb33 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=15_phi=270/tdw.json @@ -0,0 +1,78 @@ +{ + "layer_results": { + "layer 0": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.11228600208823507, + "heat_direct": 0.11224018177657594, + "total_diffuse": 0.11228600208823507, + "total_direct": 0.11224018177657594 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.11238938508605409, + "heat_direct": 0.11233765798503216, + "total_diffuse": 0.11238938508605409, + "total_direct": 0.11233765798503216 + } + } + }, + "layer 1": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.02806885848802314, + "heat_direct": 0.02739624033127431, + "total_diffuse": 0.02806885848802314, + "total_direct": 0.02739624033127431 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.028082551691559647, + "heat_direct": 0.027410785621770063, + "total_diffuse": 0.028082551691559647, + "total_direct": 0.027410785621770063 + } + } + } + }, + "system_results": { + "back": { + "reflectance": { + "diffuse_diffuse": 0.2228971721831168, + "direct_diffuse": 0.0, + "direct_direct": 0.14123289779877599, + "direct_hemispherical": 0.14123289779877599 + }, + "transmittance": { + "diffuse_diffuse": 0.6265733728488667, + "direct_diffuse": 0.0, + "direct_direct": 0.7191306800933741, + "direct_hemispherical": 0.7191306800933741 + } + }, + "front": { + "reflectance": { + "diffuse_diffuse": 0.22278009598176127, + "direct_diffuse": 0.0, + "direct_direct": 0.14112087629982403, + "direct_hemispherical": 0.14112087629982403 + }, + "transmittance": { + "diffuse_diffuse": 0.6265733728488667, + "direct_diffuse": 0.0, + "direct_direct": 0.7191306800933741, + "direct_hemispherical": 0.7191306800933741 + } + } + } +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=15_phi=270/tkr.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=15_phi=270/tkr.json new file mode 100644 index 00000000..b5e4a594 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=15_phi=270/tkr.json @@ -0,0 +1,78 @@ +{ + "layer_results": { + "layer 0": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.2559813399783254, + "heat_direct": 0.2640708215440346, + "total_diffuse": 0.2559813399783254, + "total_direct": 0.2640708215440346 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.25623634479902213, + "heat_direct": 0.26430745722052895, + "total_diffuse": 0.25623634479902213, + "total_direct": 0.26430745722052895 + } + } + }, + "layer 1": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.032393427636869324, + "heat_direct": 0.0318602377267021, + "total_diffuse": 0.032393427636869324, + "total_direct": 0.0318602377267021 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.0323936690072713, + "heat_direct": 0.03186067340303641, + "total_diffuse": 0.0323936690072713, + "total_direct": 0.03186067340303641 + } + } + } + }, + "system_results": { + "back": { + "reflectance": { + "diffuse_diffuse": 0.19855475962055222, + "direct_diffuse": 0.0, + "direct_direct": 0.12461449318747064, + "direct_hemispherical": 0.12461449318747064 + }, + "transmittance": { + "diffuse_diffuse": 0.5028958783724948, + "direct_diffuse": 0.0, + "direct_direct": 0.5794544475417925, + "direct_hemispherical": 0.5794544475417925 + } + }, + "front": { + "reflectance": { + "diffuse_diffuse": 0.19829951342945346, + "direct_diffuse": 0.0, + "direct_direct": 0.12437742183464201, + "direct_hemispherical": 0.12437742183464201 + }, + "transmittance": { + "diffuse_diffuse": 0.5028958783724948, + "direct_diffuse": 0.0, + "direct_direct": 0.5794544475417925, + "direct_hemispherical": 0.5794544475417925 + } + } + } +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=15_phi=270/tuv.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=15_phi=270/tuv.json new file mode 100644 index 00000000..d1a44c75 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/condensed_spectrum/theta=15_phi=270/tuv.json @@ -0,0 +1,78 @@ +{ + "layer_results": { + "layer 0": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.327754475506361, + "heat_direct": 0.33922523735765275, + "total_diffuse": 0.327754475506361, + "total_direct": 0.33922523735765275 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.32808777583300935, + "heat_direct": 0.3395345285626453, + "total_diffuse": 0.32808777583300935, + "total_direct": 0.3395345285626453 + } + } + }, + "layer 1": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.037219879148926716, + "heat_direct": 0.036704177773282116, + "total_diffuse": 0.037219879148926716, + "total_direct": 0.036704177773282116 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.037220194628585515, + "heat_direct": 0.036704747217671994, + "total_diffuse": 0.037220194628585515, + "total_direct": 0.036704747217671994 + } + } + } + }, + "system_results": { + "back": { + "reflectance": { + "diffuse_diffuse": 0.1854359214892884, + "direct_diffuse": 0.0, + "direct_direct": 0.11565406957853389, + "direct_hemispherical": 0.11565406957853389 + }, + "transmittance": { + "diffuse_diffuse": 0.43941512946366557, + "direct_diffuse": 0.0, + "direct_direct": 0.5084165152905312, + "direct_hemispherical": 0.5084165152905312 + } + }, + "front": { + "reflectance": { + "diffuse_diffuse": 0.18510230568298128, + "direct_diffuse": 0.0, + "direct_direct": 0.11534420892915155, + "direct_hemispherical": 0.11534420892915155 + }, + "transmittance": { + "diffuse_diffuse": 0.43941512946366557, + "direct_diffuse": 0.0, + "direct_direct": 0.5084165152905312, + "direct_hemispherical": 0.5084165152905312 + } + } + } +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json new file mode 100644 index 00000000..771b9a3b --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7629908972661572, + "U": 2.525631112474417, + "gap_layer_effective_conductivities_shgc": [ + 0.0005309808649067588 + ], + "gap_layer_effective_conductivities_u": [ + 0.0005074174267695594 + ], + "layer_temperatures_shgc": [ + 308.3467833268503, + 308.4280628707823, + 306.1310330611486, + 306.0082869758239 + ], + "layer_temperatures_u": [ + 304.15891045817796, + 304.09732546716145, + 300.115387158349, + 300.0538021673325 + ], + "relative_heat_gain": 572.9493607297097, + "solid_layer_effective_conductivities_shgc": [ + 0.9999999999999998, + 0.9999999999999999 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.18108526894535415, + "system_effective_conductivity_u": 0.030496269046469893 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json new file mode 100644 index 00000000..4353b072 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.265152770034837, + "gap_layer_effective_conductivities_shgc": [ + 0.0003793268105889458 + ], + "gap_layer_effective_conductivities_u": [ + 0.0003793268105889651 + ], + "layer_temperatures_shgc": [ + 258.1731961715186, + 258.44245942019353, + 281.7313373918896, + 282.0006006405644 + ], + "layer_temperatures_u": [ + 258.1731961715183, + 258.4424594201932, + 281.73133739189177, + 282.0006006405666 + ], + "relative_heat_gain": 17.62288855098791, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.022971893303107796, + "system_effective_conductivity_u": 0.022971893302997426 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json new file mode 100644 index 00000000..61dbd3f8 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.761689028853747, + "U": 2.525631112474417, + "gap_layer_effective_conductivities_shgc": [ + 0.0005312670832704456 + ], + "gap_layer_effective_conductivities_u": [ + 0.0005074174267695594 + ], + "layer_temperatures_shgc": [ + 308.39946757001246, + 308.48250827472765, + 306.20008787830693, + 306.0765584131903 + ], + "layer_temperatures_u": [ + 304.15891045817796, + 304.09732546716145, + 300.115387158349, + 300.0538021673325 + ], + "relative_heat_gain": 572.0052816706564, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 0.9999999999999999 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.18386096945740643, + "system_effective_conductivity_u": 0.030496269046469893 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json new file mode 100644 index 00000000..4353b072 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.265152770034837, + "gap_layer_effective_conductivities_shgc": [ + 0.0003793268105889458 + ], + "gap_layer_effective_conductivities_u": [ + 0.0003793268105889651 + ], + "layer_temperatures_shgc": [ + 258.1731961715186, + 258.44245942019353, + 281.7313373918896, + 282.0006006405644 + ], + "layer_temperatures_u": [ + 258.1731961715183, + 258.4424594201932, + 281.73133739189177, + 282.0006006405666 + ], + "relative_heat_gain": 17.62288855098791, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.022971893303107796, + "system_effective_conductivity_u": 0.022971893302997426 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json new file mode 100644 index 00000000..1e506dd6 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7647515587739153, + "U": 2.5256311126678934, + "gap_layer_effective_conductivities_shgc": [ + 0.0005307771095770797 + ], + "gap_layer_effective_conductivities_u": [ + 0.0005074174267567903 + ], + "layer_temperatures_shgc": [ + 308.2631662597034, + 308.342504652312, + 306.12887327633644, + 306.0068279814449 + ], + "layer_temperatures_u": [ + 304.1589104581754, + 304.0973254671588, + 300.1153871584093, + 300.0538021673927 + ], + "relative_heat_gain": 574.2261438842118, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0000000000000002 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.18764465365192365, + "system_effective_conductivity_u": 0.03049626905217623 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=0_phi=0/thermal_U_Environment.json new file mode 100644 index 00000000..66bdf375 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.2651527700508876, + "gap_layer_effective_conductivities_shgc": [ + 0.00037932681058892853 + ], + "gap_layer_effective_conductivities_u": [ + 0.0003793268105888715 + ], + "layer_temperatures_shgc": [ + 258.1731961715185, + 258.44245942019336, + 281.7313373918901, + 282.000600640565 + ], + "layer_temperatures_u": [ + 258.1731961715186, + 258.44245942019353, + 281.7313373918896, + 282.0006006405644 + ], + "relative_heat_gain": 17.622888550996187, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.02297189330310799, + "system_effective_conductivity_u": 0.0229718933031056 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json new file mode 100644 index 00000000..18adf7f2 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7634407889130123, + "U": 2.5256311126678934, + "gap_layer_effective_conductivities_shgc": [ + 0.0005310633012872805 + ], + "gap_layer_effective_conductivities_u": [ + 0.0005074174267567903 + ], + "layer_temperatures_shgc": [ + 308.3161996845017, + 308.3973045775408, + 306.1975946061401, + 306.0747650726031 + ], + "layer_temperatures_u": [ + 304.1589104581754, + 304.0973254671588, + 300.1153871584093, + 300.0538021673927 + ], + "relative_heat_gain": 573.2756097412575, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 0.9999999999999999 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.19050167807299478, + "system_effective_conductivity_u": 0.03049626905217623 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=15_phi=270/thermal_U_Environment.json new file mode 100644 index 00000000..66bdf375 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.2651527700508876, + "gap_layer_effective_conductivities_shgc": [ + 0.00037932681058892853 + ], + "gap_layer_effective_conductivities_u": [ + 0.0003793268105888715 + ], + "layer_temperatures_shgc": [ + 258.1731961715185, + 258.44245942019336, + 281.7313373918901, + 282.000600640565 + ], + "layer_temperatures_u": [ + 258.1731961715186, + 258.44245942019353, + 281.7313373918896, + 282.0006006405644 + ], + "relative_heat_gain": 17.622888550996187, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.02297189330310799, + "system_effective_conductivity_u": 0.0229718933031056 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=0_phi=0/color.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=0_phi=0/color.json new file mode 100644 index 00000000..e4cd1977 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=0_phi=0/color.json @@ -0,0 +1,288 @@ +{ + "system_results": { + "back": { + "reflectance": { + "diffuse_diffuse": { + "lab": { + "L": 55.900835610963654, + "a": -1.3265378518573234, + "b": -0.5175895978294376 + }, + "rgb": { + "B": 148, + "G": 149, + "R": 145 + }, + "trichromatic": { + "X": 22.304809338604013, + "Y": 23.813753030246314, + "Z": 25.94870433941401 + } + }, + "direct_diffuse": { + "lab": { + "L": 0.0, + "a": 0.0, + "b": 0.0 + }, + "rgb": { + "B": 0, + "G": 0, + "R": 0 + }, + "trichromatic": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + }, + "direct_direct": { + "lab": { + "L": 45.64578900321024, + "a": -1.1675589021094557, + "b": -0.8365101937267916 + }, + "rgb": { + "B": 120, + "G": 120, + "R": 116 + }, + "trichromatic": { + "X": 14.052646288717675, + "Y": 15.008465068384517, + "Z": 16.535207787007625 + } + }, + "direct_hemispheric": { + "lab": { + "L": 45.64578900321024, + "a": -1.1675589021094557, + "b": -0.8365101937267916 + }, + "rgb": { + "B": 120, + "G": 120, + "R": 116 + }, + "trichromatic": { + "X": 14.052646288717675, + "Y": 15.008465068384517, + "Z": 16.535207787007625 + } + } + }, + "transmittance": { + "diffuse_diffuse": { + "lab": { + "L": 87.59137605928218, + "a": -2.0756600389066904, + "b": 0.29799092976288133 + }, + "rgb": { + "B": 240, + "G": 244, + "R": 238 + }, + "trichromatic": { + "X": 66.63240978847841, + "Y": 71.21915860390354, + "Z": 76.25715266537408 + } + }, + "direct_diffuse": { + "lab": { + "L": 0.0, + "a": 0.0, + "b": 0.0 + }, + "rgb": { + "B": 0, + "G": 0, + "R": 0 + }, + "trichromatic": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + }, + "direct_direct": { + "lab": { + "L": 92.3358625118401, + "a": -1.8580114646639667, + "b": 0.31638680467498403 + }, + "rgb": { + "B": 255, + "G": 255, + "R": 253 + }, + "trichromatic": { + "X": 76.3673526681493, + "Y": 81.45969284794892, + "Z": 87.2154330203479 + } + }, + "direct_hemispheric": { + "lab": { + "L": 92.3358625118401, + "a": -1.8580114646639667, + "b": 0.31638680467498403 + }, + "rgb": { + "B": 255, + "G": 255, + "R": 253 + }, + "trichromatic": { + "X": 76.3673526681493, + "Y": 81.45969284794892, + "Z": 87.2154330203479 + } + } + } + }, + "front": { + "reflectance": { + "diffuse_diffuse": { + "lab": { + "L": 55.90079061126464, + "a": -1.3268990315169482, + "b": -0.51764918493451 + }, + "rgb": { + "B": 148, + "G": 149, + "R": 145 + }, + "trichromatic": { + "X": 22.304688962165468, + "Y": 23.813708318204853, + "Z": 25.948693084045054 + } + }, + "direct_diffuse": { + "lab": { + "L": 0.0, + "a": 0.0, + "b": 0.0 + }, + "rgb": { + "B": 0, + "G": 0, + "R": 0 + }, + "trichromatic": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + }, + "direct_direct": { + "lab": { + "L": 45.64572490086483, + "a": -1.1680732784160597, + "b": -0.8365956277518682 + }, + "rgb": { + "B": 120, + "G": 120, + "R": 116 + }, + "trichromatic": { + "X": 14.05252028723943, + "Y": 15.008418248796662, + "Z": 16.535196169741514 + } + }, + "direct_hemispheric": { + "lab": { + "L": 45.64572490086483, + "a": -1.1680732784160597, + "b": -0.8365956277518682 + }, + "rgb": { + "B": 120, + "G": 120, + "R": 116 + }, + "trichromatic": { + "X": 14.05252028723943, + "Y": 15.008418248796662, + "Z": 16.535196169741514 + } + } + }, + "transmittance": { + "diffuse_diffuse": { + "lab": { + "L": 87.59137605928218, + "a": -2.0756600389066904, + "b": 0.29799092976288133 + }, + "rgb": { + "B": 240, + "G": 244, + "R": 238 + }, + "trichromatic": { + "X": 66.63240978847841, + "Y": 71.21915860390354, + "Z": 76.25715266537408 + } + }, + "direct_diffuse": { + "lab": { + "L": 0.0, + "a": 0.0, + "b": 0.0 + }, + "rgb": { + "B": 0, + "G": 0, + "R": 0 + }, + "trichromatic": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + }, + "direct_direct": { + "lab": { + "L": 92.3358625118401, + "a": -1.8580114646639667, + "b": 0.31638680467498403 + }, + "rgb": { + "B": 255, + "G": 255, + "R": 253 + }, + "trichromatic": { + "X": 76.3673526681493, + "Y": 81.45969284794892, + "Z": 87.2154330203479 + } + }, + "direct_hemispheric": { + "lab": { + "L": 92.3358625118401, + "a": -1.8580114646639667, + "b": 0.31638680467498403 + }, + "rgb": { + "B": 255, + "G": 255, + "R": 253 + }, + "trichromatic": { + "X": 76.3673526681493, + "Y": 81.45969284794892, + "Z": 87.2154330203479 + } + } + } + } + } +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=0_phi=0/photopic.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=0_phi=0/photopic.json new file mode 100644 index 00000000..693cd805 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=0_phi=0/photopic.json @@ -0,0 +1,78 @@ +{ + "layer_results": { + "layer 0": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.02288339868270025, + "heat_direct": 0.01952038368240766, + "total_diffuse": 0.02288339868270025, + "total_direct": 0.01952038368240766 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.022883692306212552, + "heat_direct": 0.019520688018228195, + "total_diffuse": 0.022883692306212552, + "total_direct": 0.019520688018228195 + } + } + }, + "layer 1": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.017279596004442965, + "heat_direct": 0.016395850894628375, + "total_diffuse": 0.017279596004442965, + "total_direct": 0.016395850894628375 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.017279878316864727, + "heat_direct": 0.01639614962597379, + "total_diffuse": 0.017279878316864727, + "total_direct": 0.01639614962597379 + } + } + } + }, + "system_results": { + "back": { + "reflectance": { + "diffuse_diffuse": 0.23783174494471293, + "direct_diffuse": 0.0, + "direct_direct": 0.1498095488648861, + "direct_hemispherical": 0.1498095488648861 + }, + "transmittance": { + "diffuse_diffuse": 0.7118306659763856, + "direct_diffuse": 0.0, + "direct_direct": 0.8142742165580782, + "direct_hemispherical": 0.8142742165580782 + } + }, + "front": { + "reflectance": { + "diffuse_diffuse": 0.23783116900877888, + "direct_diffuse": 0.0, + "direct_direct": 0.14980894579772014, + "direct_hemispherical": 0.14980894579772014 + }, + "transmittance": { + "diffuse_diffuse": 0.7118306659763856, + "direct_diffuse": 0.0, + "direct_direct": 0.8142742165580782, + "direct_hemispherical": 0.8142742165580782 + } + } + } +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=0_phi=0/solar.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=0_phi=0/solar.json new file mode 100644 index 00000000..12c32bbd --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=0_phi=0/solar.json @@ -0,0 +1,78 @@ +{ + "layer_results": { + "layer 0": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.1095726444156556, + "heat_direct": 0.09642169981388199, + "total_diffuse": 0.1095726444156556, + "total_direct": 0.09642169981388199 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.10964820735745301, + "heat_direct": 0.09649835037305263, + "total_diffuse": 0.10964820735745301, + "total_direct": 0.09649835037305263 + } + } + }, + "layer 1": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.0731770463933844, + "heat_direct": 0.07219281226967789, + "total_diffuse": 0.0731770463933844, + "total_direct": 0.07219281226967789 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.07324506363027991, + "heat_direct": 0.07226476969576598, + "total_diffuse": 0.07324506363027991, + "total_direct": 0.07226476969576598 + } + } + } + }, + "system_results": { + "back": { + "reflectance": { + "diffuse_diffuse": 0.20565610419202224, + "direct_diffuse": 0.0, + "direct_direct": 0.1280997202090091, + "direct_hemispherical": 0.1280997202090091 + }, + "transmittance": { + "diffuse_diffuse": 0.6014196106071796, + "direct_diffuse": 0.0, + "direct_direct": 0.7032857677074312, + "direct_hemispherical": 0.7032857677074312 + } + }, + "front": { + "reflectance": { + "diffuse_diffuse": 0.20551252401332928, + "direct_diffuse": 0.0, + "direct_direct": 0.1279511122237503, + "direct_hemispherical": 0.1279511122237503 + }, + "transmittance": { + "diffuse_diffuse": 0.6014196106071796, + "direct_diffuse": 0.0, + "direct_direct": 0.7032857677074312, + "direct_hemispherical": 0.7032857677074312 + } + } + } +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=0_phi=0/tdw.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=0_phi=0/tdw.json new file mode 100644 index 00000000..e926cc01 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=0_phi=0/tdw.json @@ -0,0 +1,78 @@ +{ + "layer_results": { + "layer 0": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.08460287478612921, + "heat_direct": 0.07939062895236325, + "total_diffuse": 0.08460287478612921, + "total_direct": 0.07939062895236325 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.08472973526161057, + "heat_direct": 0.07951747590582638, + "total_diffuse": 0.08472973526161057, + "total_direct": 0.07951747590582638 + } + } + }, + "layer 1": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.03800511453931657, + "heat_direct": 0.03896452704992536, + "total_diffuse": 0.03800511453931657, + "total_direct": 0.03896452704992536 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.03808720464918077, + "heat_direct": 0.03905514395943302, + "total_diffuse": 0.03808720464918077, + "total_direct": 0.03905514395943302 + } + } + } + }, + "system_results": { + "back": { + "reflectance": { + "diffuse_diffuse": 0.22594939797285543, + "direct_diffuse": 0.0, + "direct_direct": 0.14356918586644601, + "direct_hemispherical": 0.14356918586644601 + }, + "transmittance": { + "diffuse_diffuse": 0.6412680183099406, + "direct_diffuse": 0.0, + "direct_direct": 0.7380756581312654, + "direct_hemispherical": 0.7380756581312654 + } + }, + "front": { + "reflectance": { + "diffuse_diffuse": 0.22574044738750992, + "direct_diffuse": 0.0, + "direct_direct": 0.14335172200347526, + "direct_hemispherical": 0.14335172200347526 + }, + "transmittance": { + "diffuse_diffuse": 0.6412680183099406, + "direct_diffuse": 0.0, + "direct_direct": 0.7380756581312654, + "direct_hemispherical": 0.7380756581312654 + } + } + } +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=0_phi=0/tkr.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=0_phi=0/tkr.json new file mode 100644 index 00000000..742ba7f8 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=0_phi=0/tkr.json @@ -0,0 +1,78 @@ +{ + "layer_results": { + "layer 0": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.20729775977795697, + "heat_direct": 0.20077679703265722, + "total_diffuse": 0.20729775977795697, + "total_direct": 0.20077679703265722 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.2076356716341623, + "heat_direct": 0.20110924197193525, + "total_diffuse": 0.2076356716341623, + "total_direct": 0.20110924197193525 + } + } + }, + "layer 1": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.0697215854008137, + "heat_direct": 0.07487998492183508, + "total_diffuse": 0.0697215854008137, + "total_direct": 0.07487998492183508 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.0699108236902949, + "heat_direct": 0.07509024394269637, + "total_diffuse": 0.0699108236902949, + "total_direct": 0.07509024394269637 + } + } + } + }, + "system_results": { + "back": { + "reflectance": { + "diffuse_diffuse": 0.1996523336973109, + "direct_diffuse": 0.0, + "direct_direct": 0.1263338857431255, + "direct_hemispherical": 0.1263338857431255 + }, + "transmittance": { + "diffuse_diffuse": 0.5131537267321601, + "direct_diffuse": 0.0, + "direct_direct": 0.5980093323023824, + "direct_hemispherical": 0.5980093323023824 + } + }, + "front": { + "reflectance": { + "diffuse_diffuse": 0.19912518355162442, + "direct_diffuse": 0.0, + "direct_direct": 0.1257911817829862, + "direct_hemispherical": 0.1257911817829862 + }, + "transmittance": { + "diffuse_diffuse": 0.5131537267321601, + "direct_diffuse": 0.0, + "direct_direct": 0.5980093323023824, + "direct_hemispherical": 0.5980093323023824 + } + } + } +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=0_phi=0/tuv.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=0_phi=0/tuv.json new file mode 100644 index 00000000..9242dd33 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=0_phi=0/tuv.json @@ -0,0 +1,78 @@ +{ + "layer_results": { + "layer 0": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.2272210739775719, + "heat_direct": 0.21614139242920263, + "total_diffuse": 0.2272210739775719, + "total_direct": 0.21614139242920263 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.2277361576116442, + "heat_direct": 0.2166639542847352, + "total_diffuse": 0.2277361576116442, + "total_direct": 0.2166639542847352 + } + } + }, + "layer 1": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.09199282530660789, + "heat_direct": 0.09725412759666506, + "total_diffuse": 0.09199282530660789, + "total_direct": 0.09725412759666506 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.09236681295490469, + "heat_direct": 0.09766493359811361, + "total_diffuse": 0.09236681295490469, + "total_direct": 0.09766493359811361 + } + } + } + }, + "system_results": { + "back": { + "reflectance": { + "diffuse_diffuse": 0.19179383802877203, + "direct_diffuse": 0.0, + "direct_direct": 0.12222373404839498, + "direct_hemispherical": 0.12222373404839498 + }, + "transmittance": { + "diffuse_diffuse": 0.47881766829528993, + "direct_diffuse": 0.0, + "direct_direct": 0.5643807459257374, + "direct_hemispherical": 0.5643807459257374 + } + }, + "front": { + "reflectance": { + "diffuse_diffuse": 0.19090476674640292, + "direct_diffuse": 0.0, + "direct_direct": 0.12129036619141378, + "direct_hemispherical": 0.12129036619141378 + }, + "transmittance": { + "diffuse_diffuse": 0.47881766829528993, + "direct_diffuse": 0.0, + "direct_direct": 0.5643807459257374, + "direct_hemispherical": 0.5643807459257374 + } + } + } +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=15_phi=270/color.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=15_phi=270/color.json new file mode 100644 index 00000000..e20eee2d --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=15_phi=270/color.json @@ -0,0 +1,288 @@ +{ + "system_results": { + "back": { + "reflectance": { + "diffuse_diffuse": { + "lab": { + "L": 55.900835610963654, + "a": -1.3265378518573234, + "b": -0.5175895978294376 + }, + "rgb": { + "B": 148, + "G": 149, + "R": 145 + }, + "trichromatic": { + "X": 22.304809338604013, + "Y": 23.813753030246314, + "Z": 25.94870433941401 + } + }, + "direct_diffuse": { + "lab": { + "L": 0.0, + "a": 0.0, + "b": 0.0 + }, + "rgb": { + "B": 0, + "G": 0, + "R": 0 + }, + "trichromatic": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + }, + "direct_direct": { + "lab": { + "L": 45.664437535290006, + "a": -1.1814852401303422, + "b": -0.8353959832292368 + }, + "rgb": { + "B": 120, + "G": 120, + "R": 116 + }, + "trichromatic": { + "X": 14.063239190358047, + "Y": 15.02208986858187, + "Z": 16.54958505592544 + } + }, + "direct_hemispheric": { + "lab": { + "L": 45.664437535290006, + "a": -1.1814852401303422, + "b": -0.8353959832292368 + }, + "rgb": { + "B": 120, + "G": 120, + "R": 116 + }, + "trichromatic": { + "X": 14.063239190358047, + "Y": 15.02208986858187, + "Z": 16.54958505592544 + } + } + }, + "transmittance": { + "diffuse_diffuse": { + "lab": { + "L": 87.59137605928218, + "a": -2.0756600389066904, + "b": 0.29799092976288133 + }, + "rgb": { + "B": 240, + "G": 244, + "R": 238 + }, + "trichromatic": { + "X": 66.63240978847841, + "Y": 71.21915860390354, + "Z": 76.25715266537408 + } + }, + "direct_diffuse": { + "lab": { + "L": 0.0, + "a": 0.0, + "b": 0.0 + }, + "rgb": { + "B": 0, + "G": 0, + "R": 0 + }, + "trichromatic": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + }, + "direct_direct": { + "lab": { + "L": 92.30744122551249, + "a": -1.8855498158665274, + "b": 0.31645852885089365 + }, + "rgb": { + "B": 255, + "G": 255, + "R": 253 + }, + "trichromatic": { + "X": 76.29346798486955, + "Y": 81.39559822930073, + "Z": 87.14659264311864 + } + }, + "direct_hemispheric": { + "lab": { + "L": 92.30744122551249, + "a": -1.8855498158665274, + "b": 0.31645852885089365 + }, + "rgb": { + "B": 255, + "G": 255, + "R": 253 + }, + "trichromatic": { + "X": 76.29346798486955, + "Y": 81.39559822930073, + "Z": 87.14659264311864 + } + } + } + }, + "front": { + "reflectance": { + "diffuse_diffuse": { + "lab": { + "L": 55.90079061126464, + "a": -1.3268990315169482, + "b": -0.51764918493451 + }, + "rgb": { + "B": 148, + "G": 149, + "R": 145 + }, + "trichromatic": { + "X": 22.304688962165468, + "Y": 23.813708318204853, + "Z": 25.948693084045054 + } + }, + "direct_diffuse": { + "lab": { + "L": 0.0, + "a": 0.0, + "b": 0.0 + }, + "rgb": { + "B": 0, + "G": 0, + "R": 0 + }, + "trichromatic": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + }, + "direct_direct": { + "lab": { + "L": 45.664373487393945, + "a": -1.181999225078556, + "b": -0.8354813853392429 + }, + "rgb": { + "B": 120, + "G": 120, + "R": 116 + }, + "trichromatic": { + "X": 14.06311322538443, + "Y": 15.022043060456012, + "Z": 16.549573460636367 + } + }, + "direct_hemispheric": { + "lab": { + "L": 45.664373487393945, + "a": -1.181999225078556, + "b": -0.8354813853392429 + }, + "rgb": { + "B": 120, + "G": 120, + "R": 116 + }, + "trichromatic": { + "X": 14.06311322538443, + "Y": 15.022043060456012, + "Z": 16.549573460636367 + } + } + }, + "transmittance": { + "diffuse_diffuse": { + "lab": { + "L": 87.59137605928218, + "a": -2.0756600389066904, + "b": 0.29799092976288133 + }, + "rgb": { + "B": 240, + "G": 244, + "R": 238 + }, + "trichromatic": { + "X": 66.63240978847841, + "Y": 71.21915860390354, + "Z": 76.25715266537408 + } + }, + "direct_diffuse": { + "lab": { + "L": 0.0, + "a": 0.0, + "b": 0.0 + }, + "rgb": { + "B": 0, + "G": 0, + "R": 0 + }, + "trichromatic": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + }, + "direct_direct": { + "lab": { + "L": 92.30744122551249, + "a": -1.8855498158665274, + "b": 0.31645852885089365 + }, + "rgb": { + "B": 255, + "G": 255, + "R": 253 + }, + "trichromatic": { + "X": 76.29346798486955, + "Y": 81.39559822930073, + "Z": 87.14659264311864 + } + }, + "direct_hemispheric": { + "lab": { + "L": 92.30744122551249, + "a": -1.8855498158665274, + "b": 0.31645852885089365 + }, + "rgb": { + "B": 255, + "G": 255, + "R": 253 + }, + "trichromatic": { + "X": 76.29346798486955, + "Y": 81.39559822930073, + "Z": 87.14659264311864 + } + } + } + } + } +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=15_phi=270/photopic.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=15_phi=270/photopic.json new file mode 100644 index 00000000..db5c0c92 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=15_phi=270/photopic.json @@ -0,0 +1,78 @@ +{ + "layer_results": { + "layer 0": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.02288339868270025, + "heat_direct": 0.01980391864701131, + "total_diffuse": 0.02288339868270025, + "total_direct": 0.01980391864701131 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.022883692306212552, + "heat_direct": 0.01980422296392565, + "total_diffuse": 0.022883692306212552, + "total_direct": 0.01980422296392565 + } + } + }, + "layer 1": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.017279596004442965, + "heat_direct": 0.01662564031110442, + "total_diffuse": 0.017279596004442965, + "total_direct": 0.01662564031110442 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.017279878316864727, + "heat_direct": 0.016625938910253008, + "total_diffuse": 0.017279878316864727, + "total_direct": 0.016625938910253008 + } + } + } + }, + "system_results": { + "back": { + "reflectance": { + "diffuse_diffuse": 0.23783174494471293, + "direct_diffuse": 0.0, + "direct_direct": 0.1499445820514847, + "direct_hemispherical": 0.1499445820514847 + }, + "transmittance": { + "diffuse_diffuse": 0.7118306659763856, + "direct_diffuse": 0.0, + "direct_direct": 0.8136258589903997, + "direct_hemispherical": 0.8136258589903997 + } + }, + "front": { + "reflectance": { + "diffuse_diffuse": 0.23783116900877888, + "direct_diffuse": 0.0, + "direct_direct": 0.14994397913542176, + "direct_hemispherical": 0.14994397913542176 + }, + "transmittance": { + "diffuse_diffuse": 0.7118306659763856, + "direct_diffuse": 0.0, + "direct_direct": 0.8136258589903997, + "direct_hemispherical": 0.8136258589903997 + } + } + } +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=15_phi=270/solar.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=15_phi=270/solar.json new file mode 100644 index 00000000..ef8bf2e3 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=15_phi=270/solar.json @@ -0,0 +1,78 @@ +{ + "layer_results": { + "layer 0": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.1095726444156556, + "heat_direct": 0.09772945288426356, + "total_diffuse": 0.1095726444156556, + "total_direct": 0.09772945288426356 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.10964820735745301, + "heat_direct": 0.09780604960399832, + "total_diffuse": 0.10964820735745301, + "total_direct": 0.09780604960399832 + } + } + }, + "layer 1": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.0731770463933844, + "heat_direct": 0.07302280995762965, + "total_diffuse": 0.0731770463933844, + "total_direct": 0.07302280995762965 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.07324506363027991, + "heat_direct": 0.07309463528080126, + "total_diffuse": 0.07324506363027991, + "total_direct": 0.07309463528080126 + } + } + } + }, + "system_results": { + "back": { + "reflectance": { + "diffuse_diffuse": 0.20565610419202224, + "direct_diffuse": 0.0, + "direct_direct": 0.12801627508516344, + "direct_hemispherical": 0.12801627508516344 + }, + "transmittance": { + "diffuse_diffuse": 0.6014196106071796, + "direct_diffuse": 0.0, + "direct_direct": 0.7012314620729436, + "direct_hemispherical": 0.7012314620729436 + } + }, + "front": { + "reflectance": { + "diffuse_diffuse": 0.20551252401332928, + "direct_diffuse": 0.0, + "direct_direct": 0.12786785304225703, + "direct_hemispherical": 0.12786785304225703 + }, + "transmittance": { + "diffuse_diffuse": 0.6014196106071796, + "direct_diffuse": 0.0, + "direct_direct": 0.7012314620729436, + "direct_hemispherical": 0.7012314620729436 + } + } + } +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=15_phi=270/tdw.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=15_phi=270/tdw.json new file mode 100644 index 00000000..95ee1cc9 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=15_phi=270/tdw.json @@ -0,0 +1,78 @@ +{ + "layer_results": { + "layer 0": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.08460287478612921, + "heat_direct": 0.08013425332052046, + "total_diffuse": 0.08460287478612921, + "total_direct": 0.08013425332052046 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.08472973526161057, + "heat_direct": 0.0802611288651572, + "total_diffuse": 0.08472973526161057, + "total_direct": 0.0802611288651572 + } + } + }, + "layer 1": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.03800511453931657, + "heat_direct": 0.03923439480615455, + "total_diffuse": 0.03800511453931657, + "total_direct": 0.03923439480615455 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.03808720464918077, + "heat_direct": 0.039324662477042076, + "total_diffuse": 0.03808720464918077, + "total_direct": 0.039324662477042076 + } + } + } + }, + "system_results": { + "back": { + "reflectance": { + "diffuse_diffuse": 0.22594939797285543, + "direct_diffuse": 0.0, + "direct_direct": 0.14362766943593006, + "direct_hemispherical": 0.14362766943593006 + }, + "transmittance": { + "diffuse_diffuse": 0.6412680183099406, + "direct_diffuse": 0.0, + "direct_direct": 0.737003682437395, + "direct_hemispherical": 0.737003682437395 + } + }, + "front": { + "reflectance": { + "diffuse_diffuse": 0.22574044738750992, + "direct_diffuse": 0.0, + "direct_direct": 0.1434105262204058, + "direct_hemispherical": 0.1434105262204058 + }, + "transmittance": { + "diffuse_diffuse": 0.6412680183099406, + "direct_diffuse": 0.0, + "direct_direct": 0.737003682437395, + "direct_hemispherical": 0.737003682437395 + } + } + } +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=15_phi=270/tkr.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=15_phi=270/tkr.json new file mode 100644 index 00000000..9125943a --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=15_phi=270/tkr.json @@ -0,0 +1,78 @@ +{ + "layer_results": { + "layer 0": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.20729775977795697, + "heat_direct": 0.202305496692224, + "total_diffuse": 0.20729775977795697, + "total_direct": 0.202305496692224 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.2076356716341623, + "heat_direct": 0.20263807492355268, + "total_diffuse": 0.2076356716341623, + "total_direct": 0.20263807492355268 + } + } + }, + "layer 1": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.0697215854008137, + "heat_direct": 0.07507877022296755, + "total_diffuse": 0.0697215854008137, + "total_direct": 0.07507877022296755 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.0699108236902949, + "heat_direct": 0.07528796986316018, + "total_diffuse": 0.0699108236902949, + "total_direct": 0.07528796986316018 + } + } + } + }, + "system_results": { + "back": { + "reflectance": { + "diffuse_diffuse": 0.1996523336973109, + "direct_diffuse": 0.0, + "direct_direct": 0.12628513526067356, + "direct_hemispherical": 0.12628513526067356 + }, + "transmittance": { + "diffuse_diffuse": 0.5131537267321601, + "direct_diffuse": 0.0, + "direct_direct": 0.5963305978241349, + "direct_hemispherical": 0.5963305978241349 + } + }, + "front": { + "reflectance": { + "diffuse_diffuse": 0.19912518355162442, + "direct_diffuse": 0.0, + "direct_direct": 0.12574335738915224, + "direct_hemispherical": 0.12574335738915224 + }, + "transmittance": { + "diffuse_diffuse": 0.5131537267321601, + "direct_diffuse": 0.0, + "direct_direct": 0.5963305978241349, + "direct_hemispherical": 0.5963305978241349 + } + } + } +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=15_phi=270/tuv.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=15_phi=270/tuv.json new file mode 100644 index 00000000..d999c80c --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/full_spectrum/theta=15_phi=270/tuv.json @@ -0,0 +1,78 @@ +{ + "layer_results": { + "layer 0": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.2272210739775719, + "heat_direct": 0.21805508405200022, + "total_diffuse": 0.2272210739775719, + "total_direct": 0.21805508405200022 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.2277361576116442, + "heat_direct": 0.21857770433160387, + "total_diffuse": 0.2277361576116442, + "total_direct": 0.21857770433160387 + } + } + }, + "layer 1": { + "back": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.09199282530660789, + "heat_direct": 0.09768842537282561, + "total_diffuse": 0.09199282530660789, + "total_direct": 0.09768842537282561 + } + }, + "front": { + "absorptance": { + "electricity_diffuse": 0.0, + "electricity_direct": 0.0, + "heat_diffuse": 0.09236681295490469, + "heat_direct": 0.09809801553614993, + "total_diffuse": 0.09236681295490469, + "total_direct": 0.09809801553614993 + } + } + } + }, + "system_results": { + "back": { + "reflectance": { + "diffuse_diffuse": 0.19179383802877203, + "direct_diffuse": 0.0, + "direct_direct": 0.12208470514467196, + "direct_hemispherical": 0.12208470514467196 + }, + "transmittance": { + "diffuse_diffuse": 0.47881766829528993, + "direct_diffuse": 0.0, + "direct_direct": 0.5621717854305023, + "direct_hemispherical": 0.5621717854305023 + } + }, + "front": { + "reflectance": { + "diffuse_diffuse": 0.19090476674640292, + "direct_diffuse": 0.0, + "direct_direct": 0.121152494701744, + "direct_hemispherical": 0.121152494701744 + }, + "transmittance": { + "diffuse_diffuse": 0.47881766829528993, + "direct_diffuse": 0.0, + "direct_direct": 0.5621717854305023, + "direct_hemispherical": 0.5621717854305023 + } + } + } +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json new file mode 100644 index 00000000..a6844ecf --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.763437717033908, + "U": 2.41941859571808, + "gap_layer_effective_conductivities_shgc": [ + 0.0004909023674520638 + ], + "gap_layer_effective_conductivities_u": [ + 0.0004672584039768526 + ], + "layer_temperatures_shgc": [ + 308.3710644039332, + 308.45386746100223, + 306.0711230959728, + 305.9499005237851 + ], + "layer_temperatures_u": [ + 304.2006410797435, + 304.14164597481516, + 299.9993237378963, + 299.94032863296786 + ], + "relative_heat_gain": 572.447048722253, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 0.9999999999999999 + ], + "system_effective_conductivity_shgc": 0.17362320401679898, + "system_effective_conductivity_u": 0.028149518655283708 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json new file mode 100644 index 00000000..5c4bb4a8 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.1180170620389127, + "gap_layer_effective_conductivities_shgc": [ + 0.0003403679753019183 + ], + "gap_layer_effective_conductivities_u": [ + 0.0003403679753020971 + ], + "layer_temperatures_shgc": [ + 257.97717906754434, + 258.2289519997822, + 282.49758812735865, + 282.7493610595965 + ], + "layer_temperatures_u": [ + 257.97717906754355, + 258.2289519997813, + 282.4975881273643, + 282.74936105960205 + ], + "relative_heat_gain": 16.47817274289778, + "solid_layer_effective_conductivities_shgc": [ + 0.9999999999999998, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.020660518769894172, + "system_effective_conductivity_u": 0.020660518769611554 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json new file mode 100644 index 00000000..3e78dc59 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7621398553847004, + "U": 2.41941859571808, + "gap_layer_effective_conductivities_shgc": [ + 0.0004911891860147552 + ], + "gap_layer_effective_conductivities_u": [ + 0.0004672584039768526 + ], + "layer_temperatures_shgc": [ + 308.423592893835, + 308.50814754921754, + 306.1406187761674, + 306.01860326171817 + ], + "layer_temperatures_u": [ + 304.2006410797435, + 304.14164597481516, + 299.9993237378963, + 299.94032863296786 + ], + "relative_heat_gain": 571.5058752552823, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 0.9999999999999999 + ], + "system_effective_conductivity_shgc": 0.17630627270462215, + "system_effective_conductivity_u": 0.028149518655283708 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json new file mode 100644 index 00000000..5c4bb4a8 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.1180170620389127, + "gap_layer_effective_conductivities_shgc": [ + 0.0003403679753019183 + ], + "gap_layer_effective_conductivities_u": [ + 0.0003403679753020971 + ], + "layer_temperatures_shgc": [ + 257.97717906754434, + 258.2289519997822, + 282.49758812735865, + 282.7493610595965 + ], + "layer_temperatures_u": [ + 257.97717906754355, + 258.2289519997813, + 282.4975881273643, + 282.74936105960205 + ], + "relative_heat_gain": 16.47817274289778, + "solid_layer_effective_conductivities_shgc": [ + 0.9999999999999998, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.020660518769894172, + "system_effective_conductivity_u": 0.020660518769611554 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json new file mode 100644 index 00000000..d34eb5f9 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7652215034796761, + "U": 2.419418596093161, + "gap_layer_effective_conductivities_shgc": [ + 0.000490701472361632 + ], + "gap_layer_effective_conductivities_u": [ + 0.00046725840392365675 + ], + "layer_temperatures_shgc": [ + 308.2865729415181, + 308.36737965765826, + 306.07113319376157, + 305.95055622240153 + ], + "layer_temperatures_u": [ + 304.2006410797272, + 304.14164597479817, + 299.99932373820513, + 299.94032863327607 + ], + "relative_heat_gain": 573.7406014429013, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0000000000000002 + ], + "solid_layer_effective_conductivities_u": [ + 0.9999999999999999, + 0.9999999999999999 + ], + "system_effective_conductivity_shgc": 0.17996660334628, + "system_effective_conductivity_u": 0.028149518667054518 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=0_phi=0/thermal_U_Environment.json new file mode 100644 index 00000000..09e6f335 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.118017062072488, + "gap_layer_effective_conductivities_shgc": [ + 0.000340367975301885 + ], + "gap_layer_effective_conductivities_u": [ + 0.00034036797530186027 + ], + "layer_temperatures_shgc": [ + 257.97717906754417, + 258.228951999782, + 282.4975881273598, + 282.7493610595976 + ], + "layer_temperatures_u": [ + 257.97717906754434, + 258.2289519997822, + 282.49758812735865, + 282.7493610595965 + ], + "relative_heat_gain": 16.478172742925327, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 0.9999999999999998 + ], + "solid_layer_effective_conductivities_u": [ + 0.9999999999999998, + 0.9999999999999998 + ], + "system_effective_conductivity_shgc": 0.020660518769882043, + "system_effective_conductivity_u": 0.02066051876988461 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json new file mode 100644 index 00000000..d83a81d2 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7639145520589894, + "U": 2.419418596093161, + "gap_layer_effective_conductivities_shgc": [ + 0.0004909882364802248 + ], + "gap_layer_effective_conductivities_u": [ + 0.00046725840392365675 + ], + "layer_temperatures_shgc": [ + 308.33945784370815, + 308.4220219472536, + 306.1402750597955, + 306.01890473676497 + ], + "layer_temperatures_u": [ + 304.2006410797272, + 304.14164597479817, + 299.99932373820513, + 299.94032863327607 + ], + "relative_heat_gain": 572.7928363264223, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 0.9999999999999999, + 0.9999999999999999 + ], + "system_effective_conductivity_shgc": 0.182728315158349, + "system_effective_conductivity_u": 0.028149518667054518 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=15_phi=270/thermal_U_Environment.json new file mode 100644 index 00000000..09e6f335 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.118017062072488, + "gap_layer_effective_conductivities_shgc": [ + 0.000340367975301885 + ], + "gap_layer_effective_conductivities_u": [ + 0.00034036797530186027 + ], + "layer_temperatures_shgc": [ + 257.97717906754417, + 258.228951999782, + 282.4975881273598, + 282.7493610595976 + ], + "layer_temperatures_u": [ + 257.97717906754434, + 258.2289519997822, + 282.49758812735865, + 282.7493610595965 + ], + "relative_heat_gain": 16.478172742925327, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 0.9999999999999998 + ], + "solid_layer_effective_conductivities_u": [ + 0.9999999999999998, + 0.9999999999999998 + ], + "system_effective_conductivity_shgc": 0.020660518769882043, + "system_effective_conductivity_u": 0.02066051876988461 +} diff --git a/test/nfrc_102_nfrc_102_vacuum.unit.cpp b/test/nfrc_102_nfrc_102_vacuum.unit.cpp new file mode 100644 index 00000000..d07db35f --- /dev/null +++ b/test/nfrc_102_nfrc_102_vacuum.unit.cpp @@ -0,0 +1,108 @@ +#include +#include +#include +#include +#include +#include +#include + +#include "wincalc/wincalc.h" +#include "optical_calcs.h" +#include "util.h" +#include "convert_optics_parser.h" +#include "paths.h" + + +using namespace wincalc; +using namespace window_standards; + +class TestNFRC102NFRC102Vacuum : public testing::Test +{ +protected: + //std::shared_ptr pillar_gap; + std::shared_ptr glazing_system_u; + std::shared_ptr glazing_system_shgc; + + virtual void SetUp() + { + std::filesystem::path clear_3_path(test_dir); + clear_3_path /= "products"; + clear_3_path /= "CLEAR_3.json"; + + std::vector products; + OpticsParser::Parser parser; + auto clear_3 = parser.parseJSONFile(clear_3_path.string()); + products.push_back(clear_3); + products.push_back(clear_3); + + // Add support pillars + const auto pillarHeight = 0.0001; + const auto gapPressure = 0.1333; + const auto pillarConductivity = 999.0; + const auto pillarArea = 0.03 * 0.03; + const auto pillarRadius = 0.0002; + + Tarcog::ISO15099::CylindricalPillar pillar{ + pillarHeight, pillarConductivity, pillarArea, pillarRadius}; + + auto pillar_gap = Tarcog::ISO15099::Layers::createPillar(pillar, gapPressure); + + std::vector> gaps; + gaps.push_back(pillar_gap); + + std::filesystem::path standard_path(test_dir); + standard_path /= "standards"; + standard_path /= "W5_NFRC_2003.std"; + Optical_Standard standard = load_optical_standard(standard_path.string()); + + glazing_system_u = std::make_shared( + standard, products, gaps, 1.0, 1.0, 90, nfrc_u_environments()); + glazing_system_shgc = std::make_shared( + standard, products, gaps, 1.0, 1.0, 90, nfrc_shgc_environments()); + } +}; + +TEST_F(TestNFRC102NFRC102Vacuum, Test_Thermal_Cylindrical) +{ + test_thermal_results("NFRC_102_NFRC_102_vacuum/cylindrical", + "thermal_U_Environment", + glazing_system_u, + update_results); + test_thermal_results("NFRC_102_NFRC_102_vacuum/cylindrical", + "thermal_SHGC_Environment", + glazing_system_shgc, + update_results); +} + +TEST_F(TestNFRC102NFRC102Vacuum, Test_Thermal_Spherical) +{ + // Add support pillars + const auto pillarHeight = 0.0001; + const auto gapPressure = 0.1333; + const auto pillarConductivity = 999.0; + const auto pillarArea = 0.03 * 0.03; + const auto radiusOfContact = 0.02e-3; + + Tarcog::ISO15099::SphericalPillar pillar{ + pillarHeight, pillarConductivity, pillarArea, radiusOfContact}; + + auto pillarGap = Tarcog::ISO15099::Layers::createPillar(pillar, gapPressure); + + glazing_system_u->gap_layers({pillarGap}); + glazing_system_shgc->gap_layers({pillarGap}); + + test_thermal_results("NFRC_102_NFRC_102_vacuum/spherical", + "thermal_U_Environment", + glazing_system_u, + update_results); + test_thermal_results("NFRC_102_NFRC_102_vacuum/spherical", + "thermal_SHGC_Environment", + glazing_system_shgc, + update_results); +} + + +TEST_F(TestNFRC102NFRC102Vacuum, Test_Optical) +{ + test_optical_results("NFRC_102_NFRC_102_vacuum", glazing_system_u, update_results); +} From d1c2eea46acf9b4ae57bc08a1952486da298f591 Mon Sep 17 00:00:00 2001 From: Simon Vidanovic Date: Wed, 6 Dec 2023 14:24:40 -0800 Subject: [PATCH 02/19] All pillars (including measured) are now included. --- .../thermal_SHGC_Environment.json | 33 +++ .../theta=0_phi=0/thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../theta=0_phi=0/thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../theta=0_phi=0/thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../theta=0_phi=0/thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../theta=0_phi=0/thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../theta=0_phi=0/thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../theta=0_phi=0/thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../theta=0_phi=0/thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../theta=0_phi=0/thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../theta=0_phi=0/thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../theta=0_phi=0/thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../theta=0_phi=0/thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../theta=0_phi=0/thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../theta=0_phi=0/thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../theta=0_phi=0/thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../theta=0_phi=0/thermal_U_Environment.json | 33 +++ .../thermal_SHGC_Environment.json | 33 +++ .../thermal_U_Environment.json | 33 +++ test/nfrc_102_nfrc_102_vacuum.unit.cpp | 222 +++++++++++++++++- 65 files changed, 2333 insertions(+), 1 deletion(-) create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=0_phi=0/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=15_phi=270/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=0_phi=0/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=15_phi=270/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=0_phi=0/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=15_phi=270/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/measured/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/measured/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/measured/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/measured/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/measured/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/measured/full_spectrum/theta=0_phi=0/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/measured/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/measured/full_spectrum/theta=15_phi=270/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=0_phi=0/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=15_phi=270/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=0_phi=0/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=15_phi=270/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=0_phi=0/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=15_phi=270/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=0_phi=0/thermal_U_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json create mode 100644 test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=15_phi=270/thermal_U_Environment.json diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json new file mode 100644 index 00000000..e957f630 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7630000081499313, + "U": 2.523457981054221, + "gap_layer_effective_conductivities_shgc": [ + 0.0005301289999530104 + ], + "gap_layer_effective_conductivities_u": [ + 0.0005065639259034637 + ], + "layer_temperatures_shgc": [ + 308.3472813233453, + 308.4285921130241, + 306.1298049267892, + 306.00709008721117 + ], + "layer_temperatures_u": [ + 304.1597643211673, + 304.09823231978817, + 300.113016867425, + 300.0514848660458 + ], + "relative_heat_gain": 572.939060729268, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 0.9999999999999999, + 1.0 + ], + "system_effective_conductivity_shgc": 0.18092697618042497, + "system_effective_conductivity_u": 0.030446509417147275 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json new file mode 100644 index 00000000..ce141a4f --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.2621443383111557, + "gap_layer_effective_conductivities_shgc": [ + 0.0003784977644116286 + ], + "gap_layer_effective_conductivities_u": [ + 0.00037849776441167533 + ], + "layer_temperatures_shgc": [ + 258.16918877956454, + 258.43809440993243, + 281.74698484208113, + 282.0158904724489 + ], + "layer_temperatures_u": [ + 258.16918877956385, + 258.4380944099317, + 281.74698484208216, + 282.01589047245 + ], + "relative_heat_gain": 17.599482952193966, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.022922818874289406, + "system_effective_conductivity_u": 0.02292281887416025 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json new file mode 100644 index 00000000..d05e54a2 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7616982216001456, + "U": 2.523457981054221, + "gap_layer_effective_conductivities_shgc": [ + 0.0005304152305669647 + ], + "gap_layer_effective_conductivities_u": [ + 0.0005065639259034637 + ], + "layer_temperatures_shgc": [ + 308.39996238383435, + 308.48303413892427, + 306.198868745599, + 306.075370330857 + ], + "layer_temperatures_u": [ + 304.1597643211673, + 304.09823231978817, + 300.113016867425, + 300.0514848660458 + ], + "relative_heat_gain": 571.9950410347199, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 0.9999999999999999, + 1.0 + ], + "system_effective_conductivity_shgc": 0.1837007097769792, + "system_effective_conductivity_u": 0.030446509417147275 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json new file mode 100644 index 00000000..ce141a4f --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.2621443383111557, + "gap_layer_effective_conductivities_shgc": [ + 0.0003784977644116286 + ], + "gap_layer_effective_conductivities_u": [ + 0.00037849776441167533 + ], + "layer_temperatures_shgc": [ + 258.16918877956454, + 258.43809440993243, + 281.74698484208113, + 282.0158904724489 + ], + "layer_temperatures_u": [ + 258.16918877956385, + 258.4380944099317, + 281.74698484208216, + 282.01589047245 + ], + "relative_heat_gain": 17.599482952193966, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.022922818874289406, + "system_effective_conductivity_u": 0.02292281887416025 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json new file mode 100644 index 00000000..69c4139e --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7647611440303165, + "U": 2.523457981286831, + "gap_layer_effective_conductivities_shgc": [ + 0.0005299253032221497 + ], + "gap_layer_effective_conductivities_u": [ + 0.0005065639258878485 + ], + "layer_temperatures_shgc": [ + 308.2636463181945, + 308.3430148244204, + 306.12768961398876, + 306.00567443271444 + ], + "layer_temperatures_u": [ + 304.15976432116406, + 304.0982323197848, + 300.11301686749806, + 300.0514848661188 + ], + "relative_heat_gain": 574.2161878855277, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 0.9999999999999999 + ], + "solid_layer_effective_conductivities_u": [ + 0.9999999999999999, + 0.9999999999999999 + ], + "system_effective_conductivity_shgc": 0.187481784983331, + "system_effective_conductivity_u": 0.030446509423953973 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=0_phi=0/thermal_U_Environment.json new file mode 100644 index 00000000..ebbda1ba --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.262144338329179, + "gap_layer_effective_conductivities_shgc": [ + 0.0003784977644116743 + ], + "gap_layer_effective_conductivities_u": [ + 0.00037849776441164866 + ], + "layer_temperatures_shgc": [ + 258.16918877956454, + 258.43809440993243, + 281.74698484207846, + 282.01589047244624 + ], + "layer_temperatures_u": [ + 258.16918877956454, + 258.43809440993243, + 281.74698484208113, + 282.0158904724489 + ], + "relative_heat_gain": 17.599482952200024, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.022922818874284153, + "system_effective_conductivity_u": 0.02292281887428448 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json new file mode 100644 index 00000000..f3e1af40 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7634504521822366, + "U": 2.523457981286831, + "gap_layer_effective_conductivities_shgc": [ + 0.0005302115066145238 + ], + "gap_layer_effective_conductivities_u": [ + 0.0005065639258878485 + ], + "layer_temperatures_shgc": [ + 308.31667670821173, + 308.3978115286872, + 306.19641953043606, + 306.0736199243356 + ], + "layer_temperatures_u": [ + 304.15976432116406, + 304.0982323197848, + 300.11301686749806, + 300.0514848661188 + ], + "relative_heat_gain": 573.2657103143357, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 0.9999999999999999, + 0.9999999999999999 + ], + "system_effective_conductivity_shgc": 0.19033678558780245, + "system_effective_conductivity_u": 0.030446509423953973 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=15_phi=270/thermal_U_Environment.json new file mode 100644 index 00000000..ebbda1ba --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.262144338329179, + "gap_layer_effective_conductivities_shgc": [ + 0.0003784977644116743 + ], + "gap_layer_effective_conductivities_u": [ + 0.00037849776441164866 + ], + "layer_temperatures_shgc": [ + 258.16918877956454, + 258.43809440993243, + 281.74698484207846, + 282.01589047244624 + ], + "layer_temperatures_u": [ + 258.16918877956454, + 258.43809440993243, + 281.74698484208113, + 282.0158904724489 + ], + "relative_heat_gain": 17.599482952200024, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.022922818874284153, + "system_effective_conductivity_u": 0.02292281887428448 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json new file mode 100644 index 00000000..c10914bf --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7632050870386385, + "U": 2.4746241082539666, + "gap_layer_effective_conductivities_shgc": [ + 0.0005113440627055437 + ], + "gap_layer_effective_conductivities_u": [ + 0.0004877420993390928 + ], + "layer_temperatures_shgc": [ + 308.3584589437384, + 308.4404710605994, + 306.1022326452288, + 305.980219132833 + ], + "layer_temperatures_u": [ + 304.1789515419006, + 304.1186103057137, + 300.0597044010949, + 299.999363164908 + ], + "relative_heat_gain": 572.707850751651, + "solid_layer_effective_conductivities_shgc": [ + 0.9999999999999998, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.17743293099515955, + "system_effective_conductivity_u": 0.02934790715522307 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json new file mode 100644 index 00000000..770e0e7f --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.194516721557326, + "gap_layer_effective_conductivities_shgc": [ + 0.00036022659021035596 + ], + "gap_layer_effective_conductivities_u": [ + 0.00036022659021029763 + ], + "layer_temperatures_shgc": [ + 258.0790996638008, + 258.33996626384754, + 282.0989431038386, + 282.3598097038854 + ], + "layer_temperatures_u": [ + 258.079099663801, + 258.33996626384777, + 282.09894310383464, + 282.3598097038814 + ], + "relative_heat_gain": 17.07334009349969, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.02184004563424798, + "system_effective_conductivity_u": 0.021840045634474198 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json new file mode 100644 index 00000000..82171092 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7619051413696218, + "U": 2.4746241082539666, + "gap_layer_effective_conductivities_shgc": [ + 0.000511630568933962 + ], + "gap_layer_effective_conductivities_u": [ + 0.0004877420993390928 + ], + "layer_temperatures_shgc": [ + 308.4110684391119, + 308.49483712796723, + 306.17149895069355, + 306.0486974697171 + ], + "layer_temperatures_u": [ + 304.1789515419006, + 304.1186103057137, + 300.0597044010949, + 299.999363164908 + ], + "relative_heat_gain": 571.7651660130583, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.18016326935205212, + "system_effective_conductivity_u": 0.02934790715522307 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json new file mode 100644 index 00000000..770e0e7f --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.194516721557326, + "gap_layer_effective_conductivities_shgc": [ + 0.00036022659021035596 + ], + "gap_layer_effective_conductivities_u": [ + 0.00036022659021029763 + ], + "layer_temperatures_shgc": [ + 258.0790996638008, + 258.33996626384754, + 282.0989431038386, + 282.3598097038854 + ], + "layer_temperatures_u": [ + 258.079099663801, + 258.33996626384777, + 282.09894310383464, + 282.3598097038814 + ], + "relative_heat_gain": 17.07334009349969, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.02184004563424798, + "system_effective_conductivity_u": 0.021840045634474198 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json new file mode 100644 index 00000000..2a8b61a7 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7649768693020919, + "U": 2.4746241085018372, + "gap_layer_effective_conductivities_shgc": [ + 0.0005111416819248765 + ], + "gap_layer_effective_conductivities_u": [ + 0.0004877420993156667 + ], + "layer_temperatures_shgc": [ + 308.27442136684266, + 308.35446579176374, + 306.10111585944287, + 305.9797765968638 + ], + "layer_temperatures_u": [ + 304.17895154189586, + 304.11861030570867, + 300.05970440121405, + 299.9993631650269 + ], + "relative_heat_gain": 573.9926983708552, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.18388667033061493, + "system_effective_conductivity_u": 0.029347907162660947 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=0_phi=0/thermal_U_Environment.json new file mode 100644 index 00000000..935f6c0f --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.1945167215277075, + "gap_layer_effective_conductivities_shgc": [ + 0.0003602265902104016 + ], + "gap_layer_effective_conductivities_u": [ + 0.00036022659021043684 + ], + "layer_temperatures_shgc": [ + 258.07909966380157, + 258.3399662638484, + 282.0989431038375, + 282.3598097038843 + ], + "layer_temperatures_u": [ + 258.0790996638008, + 258.33996626384754, + 282.0989431038386, + 282.3598097038854 + ], + "relative_heat_gain": 17.073340093484774, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.021840045634255664, + "system_effective_conductivity_u": 0.021840045634254127 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json new file mode 100644 index 00000000..6a5e7e10 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7636679317707167, + "U": 2.4746241085018372, + "gap_layer_effective_conductivities_shgc": [ + 0.0005114281481743171 + ], + "gap_layer_effective_conductivities_u": [ + 0.0004877420993156667 + ], + "layer_temperatures_shgc": [ + 308.32738351565877, + 308.40919006800493, + 306.170038926967, + 306.0479110527372 + ], + "layer_temperatures_u": [ + 304.17895154189586, + 304.11861030570867, + 300.05970440121405, + 299.9993631650269 + ], + "relative_heat_gain": 573.0434929817714, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 0.9999999999999999 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.18669701998112703, + "system_effective_conductivity_u": 0.029347907162660947 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=15_phi=270/thermal_U_Environment.json new file mode 100644 index 00000000..935f6c0f --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.1945167215277075, + "gap_layer_effective_conductivities_shgc": [ + 0.0003602265902104016 + ], + "gap_layer_effective_conductivities_u": [ + 0.00036022659021043684 + ], + "layer_temperatures_shgc": [ + 258.07909966380157, + 258.3399662638484, + 282.0989431038375, + 282.3598097038843 + ], + "layer_temperatures_u": [ + 258.0790996638008, + 258.33996626384754, + 282.0989431038386, + 282.3598097038854 + ], + "relative_heat_gain": 17.073340093484774, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.021840045634255664, + "system_effective_conductivity_u": 0.021840045634254127 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json new file mode 100644 index 00000000..80584273 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7633442097970484, + "U": 2.4415847296387447, + "gap_layer_effective_conductivities_shgc": [ + 0.0004990118078408722 + ], + "gap_layer_effective_conductivities_u": [ + 0.00047538474656134787 + ], + "layer_temperatures_shgc": [ + 308.36600696945277, + 308.44849269037763, + 306.0836064857479, + 305.9620665774161 + ], + "layer_temperatures_u": [ + 304.1919324367916, + 304.13239683283604, + 300.02358223917054, + 299.96404663521497 + ], + "relative_heat_gain": 572.5516923754956, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.17513550473199394, + "system_effective_conductivity_u": 0.028625294375865723 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json new file mode 100644 index 00000000..2a94a0fa --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.148738878922525, + "gap_layer_effective_conductivities_shgc": [ + 0.0003482430051083695 + ], + "gap_layer_effective_conductivities_u": [ + 0.0003482430051084832 + ], + "layer_temperatures_shgc": [ + 258.01811140674096, + 258.27353630291145, + 282.3374270486927, + 282.5928519448631 + ], + "layer_temperatures_u": [ + 258.018111406741, + 258.27353630291145, + 282.3374270486966, + 282.592851944867 + ], + "relative_heat_gain": 16.717188478223875, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.021128600449047803, + "system_effective_conductivity_u": 0.021128600448813734 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json new file mode 100644 index 00000000..209ed090 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7620455109974572, + "U": 2.4415847296387447, + "gap_layer_effective_conductivities_shgc": [ + 0.0004992985008975609 + ], + "gap_layer_effective_conductivities_u": [ + 0.00047538474656134787 + ], + "layer_temperatures_shgc": [ + 308.4185679976814, + 308.50280731484213, + 306.1530100079216, + 306.03067915525054 + ], + "layer_temperatures_u": [ + 304.1919324367916, + 304.13239683283604, + 300.02358223917054, + 299.96404663521497 + ], + "relative_heat_gain": 571.6099118321808, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 0.9999999999999999 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.17783733167004862, + "system_effective_conductivity_u": 0.028625294375865723 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json new file mode 100644 index 00000000..2a94a0fa --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.148738878922525, + "gap_layer_effective_conductivities_shgc": [ + 0.0003482430051083695 + ], + "gap_layer_effective_conductivities_u": [ + 0.0003482430051084832 + ], + "layer_temperatures_shgc": [ + 258.01811140674096, + 258.27353630291145, + 282.3374270486927, + 282.5928519448631 + ], + "layer_temperatures_u": [ + 258.018111406741, + 258.27353630291145, + 282.3374270486966, + 282.592851944867 + ], + "relative_heat_gain": 16.717188478223875, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.021128600449047803, + "system_effective_conductivity_u": 0.021128600448813734 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json new file mode 100644 index 00000000..7ff2881a --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7651231803182329, + "U": 2.4415847300157116, + "gap_layer_effective_conductivities_shgc": [ + 0.0004988103164675271 + ], + "gap_layer_effective_conductivities_u": [ + 0.00047538474651539597 + ], + "layer_temperatures_shgc": [ + 308.28169759657453, + 308.3621984701863, + 306.08316436328425, + 305.96228154939587 + ], + "layer_temperatures_u": [ + 304.1919324367791, + 304.1323968328231, + 300.02358223942736, + 299.96404663547133 + ], + "relative_heat_gain": 573.8417527185974, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.18152272169090694, + "system_effective_conductivity_u": 0.0286252943875561 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=0_phi=0/thermal_U_Environment.json new file mode 100644 index 00000000..1ddbcdb3 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.1487388789513524, + "gap_layer_effective_conductivities_shgc": [ + 0.0003482430051083227 + ], + "gap_layer_effective_conductivities_u": [ + 0.00034824300510831864 + ], + "layer_temperatures_shgc": [ + 258.0181114067409, + 258.27353630291134, + 282.33742704869553, + 282.59285194486597 + ], + "layer_temperatures_u": [ + 258.01811140674096, + 258.27353630291145, + 282.3374270486927, + 282.5928519448631 + ], + "relative_heat_gain": 16.71718847824373, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.02112860044903418, + "system_effective_conductivity_u": 0.021128600449039414 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json new file mode 100644 index 00000000..dd2dc1c2 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7638154310675828, + "U": 2.4415847300157116, + "gap_layer_effective_conductivities_shgc": [ + 0.0004990969608948412 + ], + "gap_layer_effective_conductivities_u": [ + 0.00047538474651539597 + ], + "layer_temperatures_shgc": [ + 308.33461352767904, + 308.4168736927842, + 306.1522183207549, + 306.03054405928407 + ], + "layer_temperatures_u": [ + 304.1919324367791, + 304.1323968328231, + 300.02358223942736, + 299.96404663547133 + ], + "relative_heat_gain": 572.8934090378964, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.18430373474535133, + "system_effective_conductivity_u": 0.0286252943875561 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=15_phi=270/thermal_U_Environment.json new file mode 100644 index 00000000..1ddbcdb3 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.1487388789513524, + "gap_layer_effective_conductivities_shgc": [ + 0.0003482430051083227 + ], + "gap_layer_effective_conductivities_u": [ + 0.00034824300510831864 + ], + "layer_temperatures_shgc": [ + 258.0181114067409, + 258.27353630291134, + 282.33742704869553, + 282.59285194486597 + ], + "layer_temperatures_u": [ + 258.01811140674096, + 258.27353630291145, + 282.3374270486927, + 282.5928519448631 + ], + "relative_heat_gain": 16.71718847824373, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.02112860044903418, + "system_effective_conductivity_u": 0.021128600449039414 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/measured/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/measured/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json new file mode 100644 index 00000000..b7c36ffa --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/measured/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7636119010009941, + "U": 2.3785608065381436, + "gap_layer_effective_conductivities_shgc": [ + 0.009527503613007415 + ], + "gap_layer_effective_conductivities_u": [ + 0.009052269459502504 + ], + "layer_temperatures_shgc": [ + 308.38031688901617, + 308.46370051779826, + 306.0482782439485, + 305.9276362434739 + ], + "layer_temperatures_u": [ + 304.216692794657, + 304.1586939661088, + 299.95455785906796, + 299.89655903051977 + ], + "relative_heat_gain": 572.2554885202584, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 0.9999999999999999, + 1.0 + ], + "system_effective_conductivity_shgc": 0.22332072938705064, + "system_effective_conductivity_u": 0.035659689829775236 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/measured/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/measured/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json new file mode 100644 index 00000000..ce6c4c7d --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/measured/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.059097505801434, + "gap_layer_effective_conductivities_shgc": [ + 0.006512544602657614 + ], + "gap_layer_effective_conductivities_u": [ + 0.006512544602665031 + ], + "layer_temperatures_shgc": [ + 257.89867126267245, + 258.1434403091989, + 282.8050150476531, + 283.0497840941796 + ], + "layer_temperatures_u": [ + 257.89867126267114, + 258.1434403091976, + 282.80501504766494, + 283.04978409419147 + ], + "relative_heat_gain": 16.019778595438407, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 0.9999999999999999 + ], + "system_effective_conductivity_shgc": 0.025849659331790367, + "system_effective_conductivity_u": 0.02584965933126648 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/measured/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/measured/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json new file mode 100644 index 00000000..6ed954aa --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/measured/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7623155915909954, + "U": 2.3785608065381436, + "gap_layer_effective_conductivities_shgc": [ + 0.009533264923281907 + ], + "gap_layer_effective_conductivities_u": [ + 0.009052269459502504 + ], + "layer_temperatures_shgc": [ + 308.43278506575336, + 308.5179165882922, + 306.1179445893898, + 305.99650594209686 + ], + "layer_temperatures_u": [ + 304.216692794657, + 304.1586939661088, + 299.95455785906796, + 299.89655903051977 + ], + "relative_heat_gain": 571.3154406963298, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 0.9999999999999999, + 1.0 + ], + "system_effective_conductivity_shgc": 0.2267828776948144, + "system_effective_conductivity_u": 0.035659689829775236 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/measured/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/measured/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json new file mode 100644 index 00000000..ce6c4c7d --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/measured/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.059097505801434, + "gap_layer_effective_conductivities_shgc": [ + 0.006512544602657614 + ], + "gap_layer_effective_conductivities_u": [ + 0.006512544602665031 + ], + "layer_temperatures_shgc": [ + 257.89867126267245, + 258.1434403091989, + 282.8050150476531, + 283.0497840941796 + ], + "layer_temperatures_u": [ + 257.89867126267114, + 258.1434403091976, + 282.80501504766494, + 283.04978409419147 + ], + "relative_heat_gain": 16.019778595438407, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 0.9999999999999999 + ], + "system_effective_conductivity_shgc": 0.025849659331790367, + "system_effective_conductivity_u": 0.02584965933126648 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/measured/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/measured/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json new file mode 100644 index 00000000..db81b55a --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/measured/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7654044856541045, + "U": 2.378560806015896, + "gap_layer_effective_conductivities_shgc": [ + 0.009523493424732368 + ], + "gap_layer_effective_conductivities_u": [ + 0.009052269461520381 + ], + "layer_temperatures_shgc": [ + 308.29549278286606, + 308.3768590730511, + 306.04911494937096, + 305.9290975520558 + ], + "layer_temperatures_u": [ + 304.2166927946911, + 304.1586939661444, + 299.95455785843205, + 299.8965590298854 + ], + "relative_heat_gain": 573.5554214605156, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 0.9999999999999999 + ], + "system_effective_conductivity_shgc": 0.2315063947819975, + "system_effective_conductivity_u": 0.035659689807528906 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/measured/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/measured/full_spectrum/theta=0_phi=0/thermal_U_Environment.json new file mode 100644 index 00000000..0a27fcd8 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/measured/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.059097505845941, + "gap_layer_effective_conductivities_shgc": [ + 0.006512544602657545 + ], + "gap_layer_effective_conductivities_u": [ + 0.006512544602657555 + ], + "layer_temperatures_shgc": [ + 257.898671262672, + 258.1434403091986, + 282.8050150476532, + 283.0497840941797 + ], + "layer_temperatures_u": [ + 257.89867126267245, + 258.1434403091989, + 282.8050150476531, + 283.0497840941796 + ], + "relative_heat_gain": 16.0197785954778, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 0.9999999999999999, + 1.0 + ], + "system_effective_conductivity_shgc": 0.02584965933175535, + "system_effective_conductivity_u": 0.025849659331761803 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/measured/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/measured/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json new file mode 100644 index 00000000..efe1a2b5 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/measured/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7640990138737723, + "U": 2.378560806015896, + "gap_layer_effective_conductivities_shgc": [ + 0.009529253436289005 + ], + "gap_layer_effective_conductivities_u": [ + 0.009052269461520381 + ], + "layer_temperatures_shgc": [ + 308.3483201584477, + 308.43144030475156, + 306.1184196349452, + 305.99760535467306 + ], + "layer_temperatures_u": [ + 304.2166927946911, + 304.1586939661444, + 299.95455785843205, + 299.8965590298854 + ], + "relative_heat_gain": 572.6087293385009, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 0.9999999999999999 + ], + "system_effective_conductivity_shgc": 0.2350700354393282, + "system_effective_conductivity_u": 0.035659689807528906 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/measured/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/measured/full_spectrum/theta=15_phi=270/thermal_U_Environment.json new file mode 100644 index 00000000..0a27fcd8 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/measured/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.059097505845941, + "gap_layer_effective_conductivities_shgc": [ + 0.006512544602657545 + ], + "gap_layer_effective_conductivities_u": [ + 0.006512544602657555 + ], + "layer_temperatures_shgc": [ + 257.898671262672, + 258.1434403091986, + 282.8050150476532, + 283.0497840941797 + ], + "layer_temperatures_u": [ + 257.89867126267245, + 258.1434403091989, + 282.8050150476531, + 283.0497840941796 + ], + "relative_heat_gain": 16.0197785954778, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 0.9999999999999999, + 1.0 + ], + "system_effective_conductivity_shgc": 0.02584965933175535, + "system_effective_conductivity_u": 0.025849659331761803 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json new file mode 100644 index 00000000..18955f02 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7632292923876183, + "U": 2.468870577423126, + "gap_layer_effective_conductivities_shgc": [ + 0.0005091750534185067 + ], + "gap_layer_effective_conductivities_u": [ + 0.00048556872757020165 + ], + "layer_temperatures_shgc": [ + 308.3597742061607, + 308.4418688490394, + 306.0989874049258, + 305.9770564185479 + ], + "layer_temperatures_u": [ + 304.1812120876036, + 304.12101114552934, + 300.05341710711946, + 299.9932161650452 + ], + "relative_heat_gain": 572.6806413274209, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 0.9999999999999999 + ], + "solid_layer_effective_conductivities_u": [ + 0.9999999999999999, + 0.9999999999999999 + ], + "system_effective_conductivity_shgc": 0.17702906439029428, + "system_effective_conductivity_u": 0.029220892977236308 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json new file mode 100644 index 00000000..d0fb14fe --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.186546169987418, + "gap_layer_effective_conductivities_shgc": [ + 0.0003581182363661052 + ], + "gap_layer_effective_conductivities_u": [ + 0.0003581182363659921 + ], + "layer_temperatures_shgc": [ + 258.06848111767806, + 258.32840024228705, + 282.1404522319329, + 282.4003713565418 + ], + "layer_temperatures_u": [ + 258.0684811176779, + 258.3284002422869, + 282.140452231929, + 282.40037135653796 + ], + "relative_heat_gain": 17.011329202203406, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.021714949972796275, + "system_effective_conductivity_u": 0.02171494997310776 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json new file mode 100644 index 00000000..aeb481e1 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7619295637725125, + "U": 2.468870577423126, + "gap_layer_effective_conductivities_shgc": [ + 0.0005094615921615754 + ], + "gap_layer_effective_conductivities_u": [ + 0.00048556872757020165 + ], + "layer_temperatures_shgc": [ + 308.41237526418695, + 308.4962259610481, + 306.16827759275736, + 306.0455581197866 + ], + "layer_temperatures_u": [ + 304.1812120876036, + 304.12101114552934, + 300.05341710711946, + 299.9932161650452 + ], + "relative_heat_gain": 571.7381139888331, + "solid_layer_effective_conductivities_shgc": [ + 0.9999999999999999, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 0.9999999999999999, + 0.9999999999999999 + ], + "system_effective_conductivity_shgc": 0.17975438944207037, + "system_effective_conductivity_u": 0.029220892977236308 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json new file mode 100644 index 00000000..d0fb14fe --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.186546169987418, + "gap_layer_effective_conductivities_shgc": [ + 0.0003581182363661052 + ], + "gap_layer_effective_conductivities_u": [ + 0.0003581182363659921 + ], + "layer_temperatures_shgc": [ + 258.06848111767806, + 258.32840024228705, + 282.1404522319329, + 282.4003713565418 + ], + "layer_temperatures_u": [ + 258.0684811176779, + 258.3284002422869, + 282.140452231929, + 282.40037135653796 + ], + "relative_heat_gain": 17.011329202203406, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.021714949972796275, + "system_effective_conductivity_u": 0.02171494997310776 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json new file mode 100644 index 00000000..e847abb9 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7650023272765848, + "U": 2.4688705771091266, + "gap_layer_effective_conductivities_shgc": [ + 0.0005089728275727879 + ], + "gap_layer_effective_conductivities_u": [ + 0.000485568727601141 + ], + "layer_temperatures_shgc": [ + 308.2756892651255, + 308.35581322655713, + 306.0979881588337, + 305.9767284327652 + ], + "layer_temperatures_u": [ + 304.18121208761113, + 304.1210111455372, + 300.0534171069549, + 299.993216164881 + ], + "relative_heat_gain": 573.9663973193623, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 0.9999999999999999 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.1834711135060517, + "system_effective_conductivity_u": 0.029220892967722678 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=0_phi=0/thermal_U_Environment.json new file mode 100644 index 00000000..3caa1575 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.186546169946092, + "gap_layer_effective_conductivities_shgc": [ + 0.00035811823636611363 + ], + "gap_layer_effective_conductivities_u": [ + 0.0003581182363661431 + ], + "layer_temperatures_shgc": [ + 258.0684811176783, + 258.3284002422874, + 282.14045223193267, + 282.40037135654165 + ], + "layer_temperatures_u": [ + 258.06848111767806, + 258.32840024228705, + 282.1404522319329, + 282.4003713565418 + ], + "relative_heat_gain": 17.011329202179805, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.02171494997280429, + "system_effective_conductivity_u": 0.02171494997280556 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json new file mode 100644 index 00000000..013bf8a2 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7636935965955536, + "U": 2.4688705771091266, + "gap_layer_effective_conductivities_shgc": [ + 0.0005092593248322226 + ], + "gap_layer_effective_conductivities_u": [ + 0.000485568727601141 + ], + "layer_temperatures_shgc": [ + 308.3286433682815, + 308.410528963473, + 306.1669340075957, + 306.04488517621115 + ], + "layer_temperatures_u": [ + 304.18121208761113, + 304.1210111455372, + 300.0534171069549, + 299.993216164881 + ], + "relative_heat_gain": 573.0173419323747, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.186276304749997, + "system_effective_conductivity_u": 0.029220892967722678 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=15_phi=270/thermal_U_Environment.json new file mode 100644 index 00000000..3caa1575 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.186546169946092, + "gap_layer_effective_conductivities_shgc": [ + 0.00035811823636611363 + ], + "gap_layer_effective_conductivities_u": [ + 0.0003581182363661431 + ], + "layer_temperatures_shgc": [ + 258.0684811176783, + 258.3284002422874, + 282.14045223193267, + 282.40037135654165 + ], + "layer_temperatures_u": [ + 258.06848111767806, + 258.32840024228705, + 282.1404522319329, + 282.4003713565418 + ], + "relative_heat_gain": 17.011329202179805, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.02171494997280429, + "system_effective_conductivity_u": 0.02171494997280556 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json new file mode 100644 index 00000000..80584273 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7633442097970484, + "U": 2.4415847296387447, + "gap_layer_effective_conductivities_shgc": [ + 0.0004990118078408722 + ], + "gap_layer_effective_conductivities_u": [ + 0.00047538474656134787 + ], + "layer_temperatures_shgc": [ + 308.36600696945277, + 308.44849269037763, + 306.0836064857479, + 305.9620665774161 + ], + "layer_temperatures_u": [ + 304.1919324367916, + 304.13239683283604, + 300.02358223917054, + 299.96404663521497 + ], + "relative_heat_gain": 572.5516923754956, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.17513550473199394, + "system_effective_conductivity_u": 0.028625294375865723 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json new file mode 100644 index 00000000..2a94a0fa --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.148738878922525, + "gap_layer_effective_conductivities_shgc": [ + 0.0003482430051083695 + ], + "gap_layer_effective_conductivities_u": [ + 0.0003482430051084832 + ], + "layer_temperatures_shgc": [ + 258.01811140674096, + 258.27353630291145, + 282.3374270486927, + 282.5928519448631 + ], + "layer_temperatures_u": [ + 258.018111406741, + 258.27353630291145, + 282.3374270486966, + 282.592851944867 + ], + "relative_heat_gain": 16.717188478223875, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.021128600449047803, + "system_effective_conductivity_u": 0.021128600448813734 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json new file mode 100644 index 00000000..209ed090 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7620455109974572, + "U": 2.4415847296387447, + "gap_layer_effective_conductivities_shgc": [ + 0.0004992985008975609 + ], + "gap_layer_effective_conductivities_u": [ + 0.00047538474656134787 + ], + "layer_temperatures_shgc": [ + 308.4185679976814, + 308.50280731484213, + 306.1530100079216, + 306.03067915525054 + ], + "layer_temperatures_u": [ + 304.1919324367916, + 304.13239683283604, + 300.02358223917054, + 299.96404663521497 + ], + "relative_heat_gain": 571.6099118321808, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 0.9999999999999999 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.17783733167004862, + "system_effective_conductivity_u": 0.028625294375865723 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json new file mode 100644 index 00000000..2a94a0fa --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.148738878922525, + "gap_layer_effective_conductivities_shgc": [ + 0.0003482430051083695 + ], + "gap_layer_effective_conductivities_u": [ + 0.0003482430051084832 + ], + "layer_temperatures_shgc": [ + 258.01811140674096, + 258.27353630291145, + 282.3374270486927, + 282.5928519448631 + ], + "layer_temperatures_u": [ + 258.018111406741, + 258.27353630291145, + 282.3374270486966, + 282.592851944867 + ], + "relative_heat_gain": 16.717188478223875, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.021128600449047803, + "system_effective_conductivity_u": 0.021128600448813734 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json new file mode 100644 index 00000000..7ff2881a --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7651231803182329, + "U": 2.4415847300157116, + "gap_layer_effective_conductivities_shgc": [ + 0.0004988103164675271 + ], + "gap_layer_effective_conductivities_u": [ + 0.00047538474651539597 + ], + "layer_temperatures_shgc": [ + 308.28169759657453, + 308.3621984701863, + 306.08316436328425, + 305.96228154939587 + ], + "layer_temperatures_u": [ + 304.1919324367791, + 304.1323968328231, + 300.02358223942736, + 299.96404663547133 + ], + "relative_heat_gain": 573.8417527185974, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.18152272169090694, + "system_effective_conductivity_u": 0.0286252943875561 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=0_phi=0/thermal_U_Environment.json new file mode 100644 index 00000000..1ddbcdb3 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.1487388789513524, + "gap_layer_effective_conductivities_shgc": [ + 0.0003482430051083227 + ], + "gap_layer_effective_conductivities_u": [ + 0.00034824300510831864 + ], + "layer_temperatures_shgc": [ + 258.0181114067409, + 258.27353630291134, + 282.33742704869553, + 282.59285194486597 + ], + "layer_temperatures_u": [ + 258.01811140674096, + 258.27353630291145, + 282.3374270486927, + 282.5928519448631 + ], + "relative_heat_gain": 16.71718847824373, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.02112860044903418, + "system_effective_conductivity_u": 0.021128600449039414 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json new file mode 100644 index 00000000..dd2dc1c2 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7638154310675828, + "U": 2.4415847300157116, + "gap_layer_effective_conductivities_shgc": [ + 0.0004990969608948412 + ], + "gap_layer_effective_conductivities_u": [ + 0.00047538474651539597 + ], + "layer_temperatures_shgc": [ + 308.33461352767904, + 308.4168736927842, + 306.1522183207549, + 306.03054405928407 + ], + "layer_temperatures_u": [ + 304.1919324367791, + 304.1323968328231, + 300.02358223942736, + 299.96404663547133 + ], + "relative_heat_gain": 572.8934090378964, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.18430373474535133, + "system_effective_conductivity_u": 0.0286252943875561 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=15_phi=270/thermal_U_Environment.json new file mode 100644 index 00000000..1ddbcdb3 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.1487388789513524, + "gap_layer_effective_conductivities_shgc": [ + 0.0003482430051083227 + ], + "gap_layer_effective_conductivities_u": [ + 0.00034824300510831864 + ], + "layer_temperatures_shgc": [ + 258.0181114067409, + 258.27353630291134, + 282.33742704869553, + 282.59285194486597 + ], + "layer_temperatures_u": [ + 258.01811140674096, + 258.27353630291145, + 282.3374270486927, + 282.5928519448631 + ], + "relative_heat_gain": 16.71718847824373, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.02112860044903418, + "system_effective_conductivity_u": 0.021128600449039414 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json new file mode 100644 index 00000000..34c8a942 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7633935420659257, + "U": 2.429886353693191, + "gap_layer_effective_conductivities_shgc": [ + 0.0004947157996268652 + ], + "gap_layer_effective_conductivities_u": [ + 0.00047107982440589024 + ], + "layer_temperatures_shgc": [ + 308.3686767318636, + 308.4513299704188, + 306.07701696863427, + 305.95564457793273 + ], + "layer_temperatures_u": [ + 304.19652852599097, + 304.13727817525944, + 300.0107820239627, + 299.9515316732311 + ], + "relative_heat_gain": 572.4964534020106, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 0.9999999999999999 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 0.9999999999999999 + ], + "system_effective_conductivity_shgc": 0.17433451185933402, + "system_effective_conductivity_u": 0.02837330974797139 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json new file mode 100644 index 00000000..94afe388 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.1325260623001006, + "gap_layer_effective_conductivities_shgc": [ + 0.00034407066028330793 + ], + "gap_layer_effective_conductivities_u": [ + 0.00034407066028314205 + ], + "layer_temperatures_shgc": [ + 257.9965104650263, + 258.2500081111905, + 282.4219373189825, + 282.6754349651467 + ], + "layer_temperatures_u": [ + 257.9965104650262, + 258.25000811119037, + 282.4219373189775, + 282.6754349651417 + ], + "relative_heat_gain": 16.591052764470057, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.02088065644709883, + "system_effective_conductivity_u": 0.020880656447350165 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json new file mode 100644 index 00000000..17227e84 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7620952850164245, + "U": 2.429886353693191, + "gap_layer_effective_conductivities_shgc": [ + 0.000495002558904819 + ], + "gap_layer_effective_conductivities_u": [ + 0.00047107982440589024 + ], + "layer_temperatures_shgc": [ + 308.42122058985854, + 308.5056263703758, + 306.1464691181344, + 306.0243047288199 + ], + "layer_temperatures_u": [ + 304.19652852599097, + 304.13727817525944, + 300.0107820239627, + 299.9515316732311 + ], + "relative_heat_gain": 571.5549932036535, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 0.9999999999999999 + ], + "system_effective_conductivity_shgc": 0.17702640248949872, + "system_effective_conductivity_u": 0.02837330974797139 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json new file mode 100644 index 00000000..94afe388 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.1325260623001006, + "gap_layer_effective_conductivities_shgc": [ + 0.00034407066028330793 + ], + "gap_layer_effective_conductivities_u": [ + 0.00034407066028314205 + ], + "layer_temperatures_shgc": [ + 257.9965104650263, + 258.2500081111905, + 282.4219373189825, + 282.6754349651467 + ], + "layer_temperatures_u": [ + 257.9965104650262, + 258.25000811119037, + 282.4219373189775, + 282.6754349651417 + ], + "relative_heat_gain": 16.591052764470057, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.02088065644709883, + "system_effective_conductivity_u": 0.020880656447350165 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json new file mode 100644 index 00000000..c951c19c --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7651750548986932, + "U": 2.429886353315449, + "gap_layer_effective_conductivities_shgc": [ + 0.0004945146229904342 + ], + "gap_layer_effective_conductivities_u": [ + 0.00047107982445607715 + ], + "layer_temperatures_shgc": [ + 308.28427123370886, + 308.36493355749633, + 306.07681355074016, + 305.9560921870275 + ], + "layer_temperatures_u": [ + 304.196528526005, + 304.13727817527405, + 300.01078202368103, + 299.95153167295 + ], + "relative_heat_gain": 573.7883573635676, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 0.9999999999999999 + ], + "solid_layer_effective_conductivities_u": [ + 0.9999999999999999, + 0.9999999999999999 + ], + "system_effective_conductivity_shgc": 0.18069852357083918, + "system_effective_conductivity_u": 0.028373309736142382 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=0_phi=0/thermal_U_Environment.json new file mode 100644 index 00000000..a37d7c75 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.132526062268414, + "gap_layer_effective_conductivities_shgc": [ + 0.00034407066028326397 + ], + "gap_layer_effective_conductivities_u": [ + 0.00034407066028329953 + ], + "layer_temperatures_shgc": [ + 257.99651046502635, + 258.2500081111905, + 282.4219373189868, + 282.675434965151 + ], + "layer_temperatures_u": [ + 257.9965104650263, + 258.2500081111905, + 282.4219373189825, + 282.6754349651467 + ], + "relative_heat_gain": 16.59105276444818, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.020880656447110266, + "system_effective_conductivity_u": 0.02088065644710831 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json new file mode 100644 index 00000000..e63bbd50 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7638677266490245, + "U": 2.429886353315449, + "gap_layer_effective_conductivities_shgc": [ + 0.0004948013305710512 + ], + "gap_layer_effective_conductivities_u": [ + 0.00047107982445607715 + ], + "layer_temperatures_shgc": [ + 308.33717079115775, + 308.41959140168444, + 306.14591389332907, + 306.02440007727967 + ], + "layer_temperatures_u": [ + 304.196528526005, + 304.13727817527405, + 300.01078202368103, + 299.95153167295 + ], + "relative_heat_gain": 572.8403189811818, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 0.9999999999999999, + 0.9999999999999999 + ], + "system_effective_conductivity_shgc": 0.18346931271185168, + "system_effective_conductivity_u": 0.028373309736142382 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=15_phi=270/thermal_U_Environment.json new file mode 100644 index 00000000..a37d7c75 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.132526062268414, + "gap_layer_effective_conductivities_shgc": [ + 0.00034407066028326397 + ], + "gap_layer_effective_conductivities_u": [ + 0.00034407066028329953 + ], + "layer_temperatures_shgc": [ + 257.99651046502635, + 258.2500081111905, + 282.4219373189868, + 282.675434965151 + ], + "layer_temperatures_u": [ + 257.9965104650263, + 258.2500081111905, + 282.4219373189825, + 282.6754349651467 + ], + "relative_heat_gain": 16.59105276444818, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.020880656447110266, + "system_effective_conductivity_u": 0.02088065644710831 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json new file mode 100644 index 00000000..c1ebc794 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7631521058569354, + "U": 2.487225148749598, + "gap_layer_effective_conductivities_shgc": [ + 0.0005161266216151927 + ], + "gap_layer_effective_conductivities_u": [ + 0.000492534200617148 + ], + "layer_temperatures_shgc": [ + 308.3555771044055, + 308.4374084015286, + 306.10934260047003, + 305.9871482683364 + ], + "layer_temperatures_u": [ + 304.1740005834148, + 304.11335208344576, + 300.07346994556116, + 300.0128214455922 + ], + "relative_heat_gain": 572.7674663556621, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.1783231253174488, + "system_effective_conductivity_u": 0.029627847286696627 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json new file mode 100644 index 00000000..856144e0 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.2119713774383163, + "gap_layer_effective_conductivities_shgc": [ + 0.0003648763971055322 + ], + "gap_layer_effective_conductivities_u": [ + 0.00036487639710561037 + ], + "layer_temperatures_shgc": [ + 258.10235263265093, + 258.36529410262494, + 282.00806310757713, + 282.2710045775511 + ], + "layer_temperatures_u": [ + 258.10235263265093, + 258.3652941026249, + 282.00806310757866, + 282.2710045775526 + ], + "relative_heat_gain": 17.20913731668722, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.022115822989994427, + "system_effective_conductivity_u": 0.0221158229897791 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json new file mode 100644 index 00000000..b6d2272f --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7618516849331433, + "U": 2.487225148749598, + "gap_layer_effective_conductivities_shgc": [ + 0.0005164130566640634 + ], + "gap_layer_effective_conductivities_u": [ + 0.000492534200617148 + ], + "layer_temperatures_shgc": [ + 308.4082050746051, + 308.4917940779581, + 306.17855661908783, + 306.0555754526089 + ], + "layer_temperatures_u": [ + 304.1740005834148, + 304.11335208344576, + 300.07346994556116, + 300.0128214455922 + ], + "relative_heat_gain": 571.8244369754154, + "solid_layer_effective_conductivities_shgc": [ + 0.9999999999999999, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.18106451584333821, + "system_effective_conductivity_u": 0.029627847286696627 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json new file mode 100644 index 00000000..856144e0 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.2119713774383163, + "gap_layer_effective_conductivities_shgc": [ + 0.0003648763971055322 + ], + "gap_layer_effective_conductivities_u": [ + 0.00036487639710561037 + ], + "layer_temperatures_shgc": [ + 258.10235263265093, + 258.36529410262494, + 282.00806310757713, + 282.2710045775511 + ], + "layer_temperatures_u": [ + 258.10235263265093, + 258.3652941026249, + 282.00806310757866, + 282.2710045775526 + ], + "relative_heat_gain": 17.20913731668722, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.022115822989994427, + "system_effective_conductivity_u": 0.0221158229897791 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json new file mode 100644 index 00000000..7d18df25 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7649211434226483, + "U": 2.4872251490309703, + "gap_layer_effective_conductivities_shgc": [ + 0.0005159239014217832 + ], + "gap_layer_effective_conductivities_u": [ + 0.000492534200592794 + ], + "layer_temperatures_shgc": [ + 308.2716433104199, + 308.3515134660503, + 306.1079683086827, + 305.98645477681293 + ], + "layer_temperatures_u": [ + 304.1740005834107, + 304.11335208344155, + 300.0734699456869, + 300.0128214457177 + ], + "relative_heat_gain": 574.0503235971122, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 0.9999999999999999, + 1.0 + ], + "system_effective_conductivity_shgc": 0.1848026262058974, + "system_effective_conductivity_u": 0.029627847295110407 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=0_phi=0/thermal_U_Environment.json new file mode 100644 index 00000000..7d362e71 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.2119713774679868, + "gap_layer_effective_conductivities_shgc": [ + 0.0003648763971055468 + ], + "gap_layer_effective_conductivities_u": [ + 0.00036487639710550043 + ], + "layer_temperatures_shgc": [ + 258.102352632651, + 258.36529410262494, + 282.00806310757673, + 282.2710045775507 + ], + "layer_temperatures_u": [ + 258.10235263265093, + 258.36529410262494, + 282.00806310757713, + 282.2710045775511 + ], + "relative_heat_gain": 17.209137316701153, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.022115822989985694, + "system_effective_conductivity_u": 0.02211582298998362 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json new file mode 100644 index 00000000..83c2a090 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7636117529772868, + "U": 2.4872251490309703, + "gap_layer_effective_conductivities_shgc": [ + 0.0005162102997875292 + ], + "gap_layer_effective_conductivities_u": [ + 0.000492534200592794 + ], + "layer_temperatures_shgc": [ + 308.3246230762662, + 308.40625644023925, + 306.17684150009825, + 306.05454043749523 + ], + "layer_temperatures_u": [ + 304.1740005834107, + 304.11335208344155, + 300.0734699456869, + 300.0128214457177 + ], + "relative_heat_gain": 573.1007897672373, + "solid_layer_effective_conductivities_shgc": [ + 0.9999999999999998, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 0.9999999999999999, + 1.0 + ], + "system_effective_conductivity_shgc": 0.18762434786685206, + "system_effective_conductivity_u": 0.029627847295110407 +} diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=15_phi=270/thermal_U_Environment.json new file mode 100644 index 00000000..7d362e71 --- /dev/null +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.2119713774679868, + "gap_layer_effective_conductivities_shgc": [ + 0.0003648763971055468 + ], + "gap_layer_effective_conductivities_u": [ + 0.00036487639710550043 + ], + "layer_temperatures_shgc": [ + 258.102352632651, + 258.36529410262494, + 282.00806310757673, + 282.2710045775507 + ], + "layer_temperatures_u": [ + 258.10235263265093, + 258.36529410262494, + 282.00806310757713, + 282.2710045775511 + ], + "relative_heat_gain": 17.209137316701153, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.022115822989985694, + "system_effective_conductivity_u": 0.02211582298998362 +} diff --git a/test/nfrc_102_nfrc_102_vacuum.unit.cpp b/test/nfrc_102_nfrc_102_vacuum.unit.cpp index d07db35f..e21d41f2 100644 --- a/test/nfrc_102_nfrc_102_vacuum.unit.cpp +++ b/test/nfrc_102_nfrc_102_vacuum.unit.cpp @@ -19,7 +19,7 @@ using namespace window_standards; class TestNFRC102NFRC102Vacuum : public testing::Test { protected: - //std::shared_ptr pillar_gap; + // std::shared_ptr pillar_gap; std::shared_ptr glazing_system_u; std::shared_ptr glazing_system_shgc; @@ -101,6 +101,226 @@ TEST_F(TestNFRC102NFRC102Vacuum, Test_Thermal_Spherical) update_results); } +TEST_F(TestNFRC102NFRC102Vacuum, Test_Thermal_Rectangular) +{ + const auto pillarLength = 0.1e-3; + const auto pillarWidth = 0.1e-3; + const auto pillarHeight = 0.1e-3; + const auto gapPressure = 0.1333; + const auto pillarConductivity = 999.0; + const auto pillarArea = 0.03 * 0.03; + + Tarcog::ISO15099::RectangularPillar pillar{ + pillarHeight, pillarConductivity, pillarArea, pillarLength, pillarWidth}; + + auto pillarGap = Tarcog::ISO15099::Layers::createPillar(pillar, gapPressure); + + glazing_system_u->gap_layers({pillarGap}); + glazing_system_shgc->gap_layers({pillarGap}); + + test_thermal_results("NFRC_102_NFRC_102_vacuum/rectangular", + "thermal_U_Environment", + glazing_system_u, + update_results); + test_thermal_results("NFRC_102_NFRC_102_vacuum/rectangular", + "thermal_SHGC_Environment", + glazing_system_shgc, + update_results); +} + + +TEST_F(TestNFRC102NFRC102Vacuum, Test_Thermal_Triangular) +{ + const auto pillarLength = 0.1e-3; + const auto pillarHeight = 0.1e-3; + const auto gapPressure = 0.1333; + const auto pillarConductivity = 999.0; + const auto pillarArea = 0.03 * 0.03; + + Tarcog::ISO15099::PolygonalPillar pillar{pillarHeight, + pillarConductivity, + pillarArea, + pillarLength, + Tarcog::ISO15099::PolygonType::Triangle}; + + auto pillarGap = Tarcog::ISO15099::Layers::createPillar(pillar, gapPressure); + + glazing_system_u->gap_layers({pillarGap}); + glazing_system_shgc->gap_layers({pillarGap}); + + test_thermal_results("NFRC_102_NFRC_102_vacuum/triangular", + "thermal_U_Environment", + glazing_system_u, + update_results); + test_thermal_results("NFRC_102_NFRC_102_vacuum/triangular", + "thermal_SHGC_Environment", + glazing_system_shgc, + update_results); +} + + +TEST_F(TestNFRC102NFRC102Vacuum, Test_Thermal_Pentagon) +{ + const auto pillarLength = 0.1e-3; + const auto pillarHeight = 0.1e-3; + const auto gapPressure = 0.1333; + const auto pillarConductivity = 999.0; + const auto pillarArea = 0.03 * 0.03; + + Tarcog::ISO15099::PolygonalPillar pillar{pillarHeight, + pillarConductivity, + pillarArea, + pillarLength, + Tarcog::ISO15099::PolygonType::Pentagon}; + + auto pillarGap = Tarcog::ISO15099::Layers::createPillar(pillar, gapPressure); + + glazing_system_u->gap_layers({pillarGap}); + glazing_system_shgc->gap_layers({pillarGap}); + + test_thermal_results("NFRC_102_NFRC_102_vacuum/pentagon", + "thermal_U_Environment", + glazing_system_u, + update_results); + test_thermal_results("NFRC_102_NFRC_102_vacuum/pentagon", + "thermal_SHGC_Environment", + glazing_system_shgc, + update_results); +} + +TEST_F(TestNFRC102NFRC102Vacuum, Test_Thermal_Hexagon) +{ + const auto pillarLength = 0.1e-3; + const auto pillarHeight = 0.1e-3; + const auto gapPressure = 0.1333; + const auto pillarConductivity = 999.0; + const auto pillarArea = 0.03 * 0.03; + + Tarcog::ISO15099::PolygonalPillar pillar{pillarHeight, + pillarConductivity, + pillarArea, + pillarLength, + Tarcog::ISO15099::PolygonType::Hexagon}; + + auto pillarGap = Tarcog::ISO15099::Layers::createPillar(pillar, gapPressure); + + glazing_system_u->gap_layers({pillarGap}); + glazing_system_shgc->gap_layers({pillarGap}); + + test_thermal_results("NFRC_102_NFRC_102_vacuum/hexagon", + "thermal_U_Environment", + glazing_system_u, + update_results); + test_thermal_results("NFRC_102_NFRC_102_vacuum/hexagon", + "thermal_SHGC_Environment", + glazing_system_shgc, + update_results); +} + +TEST_F(TestNFRC102NFRC102Vacuum, Test_Thermal_LinearBearing) +{ + const auto pillarLength = 0.1e-3; + const auto pillarWidth = 0.1e-3; + const auto pillarHeight = 0.1e-3; + const auto gapPressure = 0.1333; + const auto pillarConductivity = 999.0; + const auto pillarArea = 0.03 * 0.03; + + Tarcog::ISO15099::LinearBearingPillar pillar{ + pillarHeight, pillarConductivity, pillarArea, pillarLength, pillarWidth}; + + auto pillarGap = Tarcog::ISO15099::Layers::createPillar(pillar, gapPressure); + + glazing_system_u->gap_layers({pillarGap}); + glazing_system_shgc->gap_layers({pillarGap}); + + test_thermal_results("NFRC_102_NFRC_102_vacuum/linear_bearing", + "thermal_U_Environment", + glazing_system_u, + update_results); + test_thermal_results("NFRC_102_NFRC_102_vacuum/linear_bearing", + "thermal_SHGC_Environment", + glazing_system_shgc, + update_results); +} + + +TEST_F(TestNFRC102NFRC102Vacuum, Test_Thermal_TruncatedCone) +{ + const auto pillarRadius1 = 0.1e-3; + const auto pillarRadius2 = 0.2e-3; + const auto pillarHeight = 0.1e-3; + const auto gapPressure = 0.1333; + const auto pillarConductivity = 999.0; + const auto pillarArea = 0.03 * 0.03; + + const Tarcog::ISO15099::TruncatedConePillar pillar{ + pillarHeight, pillarConductivity, pillarArea, pillarRadius1, pillarRadius2}; + + auto pillarGap = Tarcog::ISO15099::Layers::createPillar(pillar, gapPressure); + + glazing_system_u->gap_layers({pillarGap}); + glazing_system_shgc->gap_layers({pillarGap}); + + test_thermal_results("NFRC_102_NFRC_102_vacuum/truncated_cone", + "thermal_U_Environment", + glazing_system_u, + update_results); + test_thermal_results("NFRC_102_NFRC_102_vacuum/truncated_cone", + "thermal_SHGC_Environment", + glazing_system_shgc, + update_results); +} + + +TEST_F(TestNFRC102NFRC102Vacuum, Test_Thermal_AnnulusCylinder) +{ + const auto innerRadius = 0.1e-3; + const auto outerRadius = 0.2e-3; + const auto pillarHeight = 0.1e-3; + const auto gapPressure = 0.1333; + const auto pillarConductivity = 999.0; + const auto pillarArea = 0.03 * 0.03; + + Tarcog::ISO15099::AnnulusCylinderPillar pillar{ + pillarHeight, pillarConductivity, pillarArea, innerRadius, outerRadius}; + + auto pillarGap = Tarcog::ISO15099::Layers::createPillar(pillar, gapPressure); + + glazing_system_u->gap_layers({pillarGap}); + glazing_system_shgc->gap_layers({pillarGap}); + + test_thermal_results("NFRC_102_NFRC_102_vacuum/annulus_cylinder", + "thermal_U_Environment", + glazing_system_u, + update_results); + test_thermal_results("NFRC_102_NFRC_102_vacuum/annulus_cylinder", + "thermal_SHGC_Environment", + glazing_system_shgc, + update_results); +} + +TEST_F(TestNFRC102NFRC102Vacuum, Test_Thermal_Measured) +{ + Tarcog::ISO15099::Glass glass1{0.005, 1.0, 0.9}; + Tarcog::ISO15099::Glass glass2{0.005, 1.0, 0.8}; + Tarcog::ISO15099::PillarMeasurement pillar{0.012, 0.5, 300, 350, glass1, glass2}; + + auto pillarGap = Tarcog::ISO15099::Layers::measuredPillar(pillar); + + glazing_system_u->gap_layers({pillarGap}); + glazing_system_shgc->gap_layers({pillarGap}); + + test_thermal_results("NFRC_102_NFRC_102_vacuum/measured", + "thermal_U_Environment", + glazing_system_u, + update_results); + test_thermal_results("NFRC_102_NFRC_102_vacuum/measured", + "thermal_SHGC_Environment", + glazing_system_shgc, + update_results); +} + TEST_F(TestNFRC102NFRC102Vacuum, Test_Optical) { From ffa186e88afb53dbb3935f53cf21e09ea2407768 Mon Sep 17 00:00:00 2001 From: StephenCzarnecki Date: Fri, 8 Dec 2023 14:07:19 -0500 Subject: [PATCH 03/19] Update CMakeLists-OpticalMeasurementParser.txt.in Changing targeted version of OpticalMeasurementParser to develop to run tests with latest changes. --- CMakeLists-OpticalMeasurementParser.txt.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists-OpticalMeasurementParser.txt.in b/CMakeLists-OpticalMeasurementParser.txt.in index b18ebfd9..c4f2768a 100644 --- a/CMakeLists-OpticalMeasurementParser.txt.in +++ b/CMakeLists-OpticalMeasurementParser.txt.in @@ -4,7 +4,7 @@ include(ExternalProject) ExternalProject_Add(OpticalMeasurementParser GIT_REPOSITORY https://github.com/LBNL-ETA/OpticalMeasurementParser.git - GIT_TAG "v2.0.0" + GIT_TAG "develop" UPDATE_COMMAND "" PATCH_COMMAND "" From 7eb13a02c0296327b95eddc5927ac0873261cbd1 Mon Sep 17 00:00:00 2001 From: Simon Vidanovic Date: Fri, 8 Dec 2023 12:39:29 -0800 Subject: [PATCH 04/19] Pillar creation function for measured pillars is not called the same as other pillar functions. --- test/nfrc_102_nfrc_102_vacuum.unit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/nfrc_102_nfrc_102_vacuum.unit.cpp b/test/nfrc_102_nfrc_102_vacuum.unit.cpp index e21d41f2..d5d4fa1f 100644 --- a/test/nfrc_102_nfrc_102_vacuum.unit.cpp +++ b/test/nfrc_102_nfrc_102_vacuum.unit.cpp @@ -306,7 +306,7 @@ TEST_F(TestNFRC102NFRC102Vacuum, Test_Thermal_Measured) Tarcog::ISO15099::Glass glass2{0.005, 1.0, 0.8}; Tarcog::ISO15099::PillarMeasurement pillar{0.012, 0.5, 300, 350, glass1, glass2}; - auto pillarGap = Tarcog::ISO15099::Layers::measuredPillar(pillar); + auto pillarGap = Tarcog::ISO15099::Layers::createPillar(pillar); glazing_system_u->gap_layers({pillarGap}); glazing_system_shgc->gap_layers({pillarGap}); From c0baafae814f341ce9ca04f71ed1c7cdbbb2f71e Mon Sep 17 00:00:00 2001 From: StephenCzarnecki Date: Fri, 8 Dec 2023 17:40:22 -0500 Subject: [PATCH 05/19] Update CMakeLists-OpticalMeasurementParser.txt.in Changed to target latest release of OpticalMeasurementParser: 2.1.0 --- CMakeLists-OpticalMeasurementParser.txt.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists-OpticalMeasurementParser.txt.in b/CMakeLists-OpticalMeasurementParser.txt.in index c4f2768a..4e44d20f 100644 --- a/CMakeLists-OpticalMeasurementParser.txt.in +++ b/CMakeLists-OpticalMeasurementParser.txt.in @@ -4,7 +4,7 @@ include(ExternalProject) ExternalProject_Add(OpticalMeasurementParser GIT_REPOSITORY https://github.com/LBNL-ETA/OpticalMeasurementParser.git - GIT_TAG "develop" + GIT_TAG "v2.1.0" UPDATE_COMMAND "" PATCH_COMMAND "" From 33430b721d03097a86ad4125512e762895250492 Mon Sep 17 00:00:00 2001 From: Simon Vidanovic Date: Wed, 15 May 2024 13:38:06 -0700 Subject: [PATCH 06/19] Overall thickness function added to the Glazing_System --- src/glazing_system.cpp | 10 ++++++++++ src/glazing_system.h | 2 ++ 2 files changed, 12 insertions(+) diff --git a/src/glazing_system.cpp b/src/glazing_system.cpp index 97782da5..8597831f 100644 --- a/src/glazing_system.cpp +++ b/src/glazing_system.cpp @@ -518,6 +518,16 @@ namespace wincalc return bsdf_hemisphere.has_value(); } + double Glazing_System::overallThickness() const + { + if(current_igu.has_value()) + { + return current_igu.value().getThickness(); + } + + return 0.0; + } + SingleLayerOptics::IScatteringLayer & Glazing_System::get_optical_system_for_thermal_calcs() { diff --git a/src/glazing_system.h b/src/glazing_system.h index a4ad444d..68f3f9f1 100644 --- a/src/glazing_system.h +++ b/src/glazing_system.h @@ -135,6 +135,8 @@ namespace wincalc bool isBSDF(); + [[nodiscard]] double overallThickness() const; + protected: std::vector product_data; From 7cb3abbfc81aa030250a3d84713228d1e2f1bd77 Mon Sep 17 00:00:00 2001 From: Simon Vidanovic Date: Wed, 15 May 2024 13:54:59 -0700 Subject: [PATCH 07/19] Interface for triangular, pentagon and hexagon pillars updated. --- test/nfrc_102_nfrc_102_vacuum.unit.cpp | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/test/nfrc_102_nfrc_102_vacuum.unit.cpp b/test/nfrc_102_nfrc_102_vacuum.unit.cpp index d5d4fa1f..f3c7e126 100644 --- a/test/nfrc_102_nfrc_102_vacuum.unit.cpp +++ b/test/nfrc_102_nfrc_102_vacuum.unit.cpp @@ -137,11 +137,10 @@ TEST_F(TestNFRC102NFRC102Vacuum, Test_Thermal_Triangular) const auto pillarConductivity = 999.0; const auto pillarArea = 0.03 * 0.03; - Tarcog::ISO15099::PolygonalPillar pillar{pillarHeight, + Tarcog::ISO15099::TriangularPillar pillar{pillarHeight, pillarConductivity, pillarArea, - pillarLength, - Tarcog::ISO15099::PolygonType::Triangle}; + pillarLength}; auto pillarGap = Tarcog::ISO15099::Layers::createPillar(pillar, gapPressure); @@ -167,11 +166,10 @@ TEST_F(TestNFRC102NFRC102Vacuum, Test_Thermal_Pentagon) const auto pillarConductivity = 999.0; const auto pillarArea = 0.03 * 0.03; - Tarcog::ISO15099::PolygonalPillar pillar{pillarHeight, + Tarcog::ISO15099::PentagonPillar pillar{pillarHeight, pillarConductivity, pillarArea, - pillarLength, - Tarcog::ISO15099::PolygonType::Pentagon}; + pillarLength}; auto pillarGap = Tarcog::ISO15099::Layers::createPillar(pillar, gapPressure); @@ -196,11 +194,10 @@ TEST_F(TestNFRC102NFRC102Vacuum, Test_Thermal_Hexagon) const auto pillarConductivity = 999.0; const auto pillarArea = 0.03 * 0.03; - Tarcog::ISO15099::PolygonalPillar pillar{pillarHeight, + Tarcog::ISO15099::HexagonPillar pillar{pillarHeight, pillarConductivity, pillarArea, - pillarLength, - Tarcog::ISO15099::PolygonType::Hexagon}; + pillarLength}; auto pillarGap = Tarcog::ISO15099::Layers::createPillar(pillar, gapPressure); From 3a8ff522b90201c64ba18027b613e171b2d40314 Mon Sep 17 00:00:00 2001 From: Simon Vidanovic Date: Wed, 12 Jun 2024 12:53:19 -0700 Subject: [PATCH 08/19] Update to new version of WCE (Venetian and Vacuum updates). --- src/create_wce_objects.cpp | 42 ++++---- src/product_data.cpp | 21 ++-- src/product_data.h | 10 +- .../theta=0_phi=0/solar.json | 4 +- .../condensed_spectrum/theta=0_phi=0/tdw.json | 2 +- .../thermal_SHGC_Environment.json | 34 +++---- .../theta=0_phi=0/thermal_U_Environment.json | 32 +++---- .../theta=15_phi=270/solar.json | 2 +- .../theta=15_phi=270/tdw.json | 2 +- .../thermal_SHGC_Environment.json | 34 +++---- .../thermal_U_Environment.json | 32 +++---- .../full_spectrum/theta=0_phi=0/photopic.json | 12 +-- .../full_spectrum/theta=0_phi=0/solar.json | 8 +- .../full_spectrum/theta=0_phi=0/tdw.json | 12 +-- .../thermal_SHGC_Environment.json | 34 +++---- .../theta=0_phi=0/thermal_U_Environment.json | 32 +++---- .../full_spectrum/theta=0_phi=0/tkr.json | 10 +- .../theta=15_phi=270/photopic.json | 2 +- .../full_spectrum/theta=15_phi=270/solar.json | 2 +- .../full_spectrum/theta=15_phi=270/tdw.json | 4 +- .../thermal_SHGC_Environment.json | 34 +++---- .../thermal_U_Environment.json | 32 +++---- .../theta=0_phi=0/solar.json | 8 +- .../condensed_spectrum/theta=0_phi=0/tdw.json | 2 +- .../thermal_SHGC_Environment.json | 34 +++---- .../theta=0_phi=0/thermal_U_Environment.json | 32 +++---- .../theta=15_phi=270/photopic.json | 6 +- .../theta=15_phi=270/solar.json | 8 +- .../theta=15_phi=270/tdw.json | 4 +- .../thermal_SHGC_Environment.json | 34 +++---- .../thermal_U_Environment.json | 32 +++---- .../full_spectrum/theta=0_phi=0/photopic.json | 6 +- .../full_spectrum/theta=0_phi=0/solar.json | 2 +- .../full_spectrum/theta=0_phi=0/tdw.json | 10 +- .../thermal_SHGC_Environment.json | 34 +++---- .../theta=0_phi=0/thermal_U_Environment.json | 32 +++---- .../full_spectrum/theta=0_phi=0/tkr.json | 8 +- .../theta=15_phi=270/photopic.json | 10 +- .../full_spectrum/theta=15_phi=270/solar.json | 10 +- .../full_spectrum/theta=15_phi=270/tdw.json | 10 +- .../thermal_SHGC_Environment.json | 34 +++---- .../thermal_U_Environment.json | 32 +++---- .../full_spectrum/theta=15_phi=270/tkr.json | 6 +- .../full_spectrum/theta=15_phi=270/tuv.json | 4 +- .../theta=0_phi=0/photopic.json | 40 ++++---- .../theta=0_phi=0/solar.json | 40 ++++---- .../condensed_spectrum/theta=0_phi=0/tdw.json | 40 ++++---- .../condensed_spectrum/theta=0_phi=0/tkr.json | 40 ++++---- .../condensed_spectrum/theta=0_phi=0/tuv.json | 40 ++++---- .../theta=15_phi=270/photopic.json | 40 ++++---- .../theta=15_phi=270/solar.json | 40 ++++---- .../theta=15_phi=270/tdw.json | 40 ++++---- .../theta=15_phi=270/tkr.json | 40 ++++---- .../theta=15_phi=270/tuv.json | 40 ++++---- .../full_spectrum/theta=0_phi=0/photopic.json | 40 ++++---- .../full_spectrum/theta=0_phi=0/solar.json | 40 ++++---- .../full_spectrum/theta=0_phi=0/tdw.json | 40 ++++---- .../full_spectrum/theta=0_phi=0/tkr.json | 40 ++++---- .../full_spectrum/theta=0_phi=0/tuv.json | 40 ++++---- .../theta=15_phi=270/photopic.json | 40 ++++---- .../full_spectrum/theta=15_phi=270/solar.json | 40 ++++---- .../full_spectrum/theta=15_phi=270/tdw.json | 40 ++++---- .../full_spectrum/theta=15_phi=270/tkr.json | 40 ++++---- .../full_spectrum/theta=15_phi=270/tuv.json | 40 ++++---- .../theta=0_phi=0/photopic.json | 64 ++++++------- .../theta=0_phi=0/solar.json | 64 ++++++------- .../condensed_spectrum/theta=0_phi=0/tdw.json | 64 ++++++------- .../thermal_SHGC_Environment.json | 34 +++---- .../theta=0_phi=0/thermal_U_Environment.json | 32 +++---- .../condensed_spectrum/theta=0_phi=0/tkr.json | 64 ++++++------- .../condensed_spectrum/theta=0_phi=0/tuv.json | 64 ++++++------- .../theta=15_phi=270/photopic.json | 64 ++++++------- .../theta=15_phi=270/solar.json | 64 ++++++------- .../theta=15_phi=270/tdw.json | 64 ++++++------- .../thermal_SHGC_Environment.json | 36 +++---- .../thermal_U_Environment.json | 32 +++---- .../theta=15_phi=270/tkr.json | 64 ++++++------- .../theta=15_phi=270/tuv.json | 64 ++++++------- .../full_spectrum/theta=0_phi=0/photopic.json | 64 ++++++------- .../full_spectrum/theta=0_phi=0/solar.json | 64 ++++++------- .../full_spectrum/theta=0_phi=0/tdw.json | 64 ++++++------- .../thermal_SHGC_Environment.json | 36 +++---- .../theta=0_phi=0/thermal_U_Environment.json | 34 +++---- .../full_spectrum/theta=0_phi=0/tkr.json | 64 ++++++------- .../full_spectrum/theta=0_phi=0/tuv.json | 64 ++++++------- .../theta=15_phi=270/photopic.json | 64 ++++++------- .../full_spectrum/theta=15_phi=270/solar.json | 64 ++++++------- .../full_spectrum/theta=15_phi=270/tdw.json | 64 ++++++------- .../thermal_SHGC_Environment.json | 36 +++---- .../thermal_U_Environment.json | 34 +++---- .../full_spectrum/theta=15_phi=270/tkr.json | 64 ++++++------- .../full_spectrum/theta=15_phi=270/tuv.json | 64 ++++++------- .../theta=0_phi=0/photopic.json | 64 ++++++------- .../theta=0_phi=0/solar.json | 64 ++++++------- .../condensed_spectrum/theta=0_phi=0/tdw.json | 64 ++++++------- .../thermal_SHGC_Environment.json | 34 +++---- .../theta=0_phi=0/thermal_U_Environment.json | 34 +++---- .../condensed_spectrum/theta=0_phi=0/tkr.json | 64 ++++++------- .../condensed_spectrum/theta=0_phi=0/tuv.json | 64 ++++++------- .../theta=15_phi=270/photopic.json | 64 ++++++------- .../theta=15_phi=270/solar.json | 64 ++++++------- .../theta=15_phi=270/tdw.json | 64 ++++++------- .../thermal_SHGC_Environment.json | 36 +++---- .../thermal_U_Environment.json | 34 +++---- .../theta=15_phi=270/tkr.json | 64 ++++++------- .../theta=15_phi=270/tuv.json | 64 ++++++------- .../full_spectrum/theta=0_phi=0/photopic.json | 64 ++++++------- .../full_spectrum/theta=0_phi=0/solar.json | 64 ++++++------- .../full_spectrum/theta=0_phi=0/tdw.json | 64 ++++++------- .../thermal_SHGC_Environment.json | 36 +++---- .../theta=0_phi=0/thermal_U_Environment.json | 34 +++---- .../full_spectrum/theta=0_phi=0/tkr.json | 64 ++++++------- .../full_spectrum/theta=0_phi=0/tuv.json | 64 ++++++------- .../theta=15_phi=270/photopic.json | 64 ++++++------- .../full_spectrum/theta=15_phi=270/solar.json | 64 ++++++------- .../full_spectrum/theta=15_phi=270/tdw.json | 64 ++++++------- .../thermal_SHGC_Environment.json | 34 +++---- .../thermal_U_Environment.json | 34 +++---- .../full_spectrum/theta=15_phi=270/tkr.json | 64 ++++++------- .../full_spectrum/theta=15_phi=270/tuv.json | 64 ++++++------- .../thermal_SHGC_Environment.json | 34 +++---- .../theta=0_phi=0/thermal_U_Environment.json | 32 +++---- .../thermal_SHGC_Environment.json | 34 +++---- .../thermal_U_Environment.json | 32 +++---- .../thermal_SHGC_Environment.json | 36 +++---- .../theta=0_phi=0/thermal_U_Environment.json | 32 +++---- .../thermal_SHGC_Environment.json | 32 +++---- .../thermal_U_Environment.json | 32 +++---- .../thermal_SHGC_Environment.json | 34 +++---- .../theta=0_phi=0/thermal_U_Environment.json | 28 +++--- .../thermal_SHGC_Environment.json | 34 +++---- .../thermal_U_Environment.json | 28 +++--- .../thermal_SHGC_Environment.json | 32 +++---- .../theta=0_phi=0/thermal_U_Environment.json | 28 +++--- .../thermal_SHGC_Environment.json | 32 +++---- .../thermal_U_Environment.json | 28 +++--- .../thermal_SHGC_Environment.json | 34 +++---- .../theta=0_phi=0/thermal_U_Environment.json | 28 +++--- .../thermal_SHGC_Environment.json | 32 +++---- .../thermal_U_Environment.json | 28 +++--- .../thermal_SHGC_Environment.json | 30 +++--- .../theta=0_phi=0/thermal_U_Environment.json | 28 +++--- .../thermal_SHGC_Environment.json | 30 +++--- .../thermal_U_Environment.json | 28 +++--- .../thermal_SHGC_Environment.json | 34 +++---- .../theta=0_phi=0/thermal_U_Environment.json | 28 +++--- .../thermal_SHGC_Environment.json | 34 +++---- .../thermal_U_Environment.json | 28 +++--- .../thermal_SHGC_Environment.json | 34 +++---- .../theta=0_phi=0/thermal_U_Environment.json | 28 +++--- .../thermal_SHGC_Environment.json | 36 +++---- .../thermal_U_Environment.json | 28 +++--- .../thermal_SHGC_Environment.json | 32 +++---- .../theta=0_phi=0/thermal_U_Environment.json | 28 +++--- .../thermal_SHGC_Environment.json | 36 +++---- .../thermal_U_Environment.json | 28 +++--- .../thermal_SHGC_Environment.json | 32 +++---- .../theta=0_phi=0/thermal_U_Environment.json | 28 +++--- .../thermal_SHGC_Environment.json | 34 +++---- .../thermal_U_Environment.json | 28 +++--- .../theta=0_phi=0/photopic.json | 8 +- .../theta=0_phi=0/solar.json | 8 +- .../condensed_spectrum/theta=0_phi=0/tdw.json | 8 +- .../condensed_spectrum/theta=0_phi=0/tkr.json | 8 +- .../theta=15_phi=270/photopic.json | 8 +- .../theta=15_phi=270/solar.json | 8 +- .../theta=15_phi=270/tdw.json | 8 +- .../theta=15_phi=270/tkr.json | 8 +- .../full_spectrum/theta=0_phi=0/photopic.json | 8 +- .../full_spectrum/theta=0_phi=0/solar.json | 8 +- .../full_spectrum/theta=0_phi=0/tkr.json | 8 +- .../full_spectrum/theta=0_phi=0/tuv.json | 8 +- .../theta=15_phi=270/photopic.json | 8 +- .../full_spectrum/theta=15_phi=270/solar.json | 8 +- .../full_spectrum/theta=15_phi=270/tkr.json | 8 +- .../full_spectrum/theta=15_phi=270/tuv.json | 8 +- .../thermal_SHGC_Environment.json | 36 +++---- .../theta=0_phi=0/thermal_U_Environment.json | 28 +++--- .../thermal_SHGC_Environment.json | 34 +++---- .../thermal_U_Environment.json | 28 +++--- .../thermal_SHGC_Environment.json | 34 +++---- .../theta=0_phi=0/thermal_U_Environment.json | 30 +++--- .../thermal_SHGC_Environment.json | 36 +++---- .../thermal_U_Environment.json | 30 +++--- .../theta=0_phi=0/photopic.json | 64 ++++++------- .../theta=0_phi=0/solar.json | 64 ++++++------- .../condensed_spectrum/theta=0_phi=0/tdw.json | 64 ++++++------- .../thermal_SHGC_Environment.json | 36 +++---- .../theta=0_phi=0/thermal_U_Environment.json | 32 +++---- .../condensed_spectrum/theta=0_phi=0/tkr.json | 64 ++++++------- .../condensed_spectrum/theta=0_phi=0/tuv.json | 64 ++++++------- .../theta=15_phi=270/photopic.json | 64 ++++++------- .../theta=15_phi=270/solar.json | 64 ++++++------- .../theta=15_phi=270/tdw.json | 64 ++++++------- .../thermal_SHGC_Environment.json | 36 +++---- .../thermal_U_Environment.json | 32 +++---- .../theta=15_phi=270/tkr.json | 64 ++++++------- .../theta=15_phi=270/tuv.json | 64 ++++++------- .../full_spectrum/theta=0_phi=0/photopic.json | 64 ++++++------- .../full_spectrum/theta=0_phi=0/solar.json | 64 ++++++------- .../full_spectrum/theta=0_phi=0/tdw.json | 64 ++++++------- .../thermal_SHGC_Environment.json | 34 +++---- .../theta=0_phi=0/thermal_U_Environment.json | 32 +++---- .../full_spectrum/theta=0_phi=0/tkr.json | 64 ++++++------- .../full_spectrum/theta=0_phi=0/tuv.json | 64 ++++++------- .../theta=15_phi=270/photopic.json | 64 ++++++------- .../full_spectrum/theta=15_phi=270/solar.json | 64 ++++++------- .../full_spectrum/theta=15_phi=270/tdw.json | 64 ++++++------- .../thermal_SHGC_Environment.json | 36 +++---- .../thermal_U_Environment.json | 32 +++---- .../full_spectrum/theta=15_phi=270/tkr.json | 64 ++++++------- .../full_spectrum/theta=15_phi=270/tuv.json | 64 ++++++------- .../theta=0_phi=0/photopic.json | 64 ++++++------- .../theta=0_phi=0/solar.json | 64 ++++++------- .../condensed_spectrum/theta=0_phi=0/tdw.json | 64 ++++++------- .../thermal_SHGC_Environment.json | 34 +++---- .../theta=0_phi=0/thermal_U_Environment.json | 34 +++---- .../condensed_spectrum/theta=0_phi=0/tkr.json | 64 ++++++------- .../condensed_spectrum/theta=0_phi=0/tuv.json | 64 ++++++------- .../theta=15_phi=270/photopic.json | 64 ++++++------- .../theta=15_phi=270/solar.json | 64 ++++++------- .../theta=15_phi=270/tdw.json | 64 ++++++------- .../thermal_SHGC_Environment.json | 34 +++---- .../thermal_U_Environment.json | 34 +++---- .../theta=15_phi=270/tkr.json | 64 ++++++------- .../theta=15_phi=270/tuv.json | 64 ++++++------- .../full_spectrum/theta=0_phi=0/photopic.json | 64 ++++++------- .../full_spectrum/theta=0_phi=0/solar.json | 64 ++++++------- .../full_spectrum/theta=0_phi=0/tdw.json | 64 ++++++------- .../thermal_SHGC_Environment.json | 36 +++---- .../theta=0_phi=0/thermal_U_Environment.json | 32 +++---- .../full_spectrum/theta=0_phi=0/tkr.json | 64 ++++++------- .../full_spectrum/theta=0_phi=0/tuv.json | 64 ++++++------- .../theta=15_phi=270/photopic.json | 64 ++++++------- .../full_spectrum/theta=15_phi=270/solar.json | 64 ++++++------- .../full_spectrum/theta=15_phi=270/tdw.json | 64 ++++++------- .../thermal_SHGC_Environment.json | 34 +++---- .../thermal_U_Environment.json | 32 +++---- .../full_spectrum/theta=15_phi=270/tkr.json | 64 ++++++------- .../full_spectrum/theta=15_phi=270/tuv.json | 64 ++++++------- .../thermal_SHGC_Environment.json | 34 +++---- .../theta=0_phi=0/thermal_U_Environment.json | 32 +++---- .../thermal_SHGC_Environment.json | 34 +++---- .../thermal_U_Environment.json | 32 +++---- .../thermal_SHGC_Environment.json | 34 +++---- .../theta=0_phi=0/thermal_U_Environment.json | 32 +++---- .../thermal_SHGC_Environment.json | 34 +++---- .../thermal_U_Environment.json | 32 +++---- .../theta=0_phi=0/photopic.json | 96 +++++++++---------- .../theta=0_phi=0/solar.json | 96 +++++++++---------- .../condensed_spectrum/theta=0_phi=0/tdw.json | 96 +++++++++---------- .../thermal_SHGC_Environment.json | 62 ++++++------ .../theta=0_phi=0/thermal_U_Environment.json | 62 ++++++------ .../condensed_spectrum/theta=0_phi=0/tkr.json | 96 +++++++++---------- .../condensed_spectrum/theta=0_phi=0/tuv.json | 96 +++++++++---------- .../theta=15_phi=270/photopic.json | 96 +++++++++---------- .../theta=15_phi=270/solar.json | 96 +++++++++---------- .../theta=15_phi=270/tdw.json | 96 +++++++++---------- .../thermal_SHGC_Environment.json | 60 ++++++------ .../thermal_U_Environment.json | 62 ++++++------ .../theta=15_phi=270/tkr.json | 96 +++++++++---------- .../theta=15_phi=270/tuv.json | 96 +++++++++---------- .../full_spectrum/theta=0_phi=0/photopic.json | 96 +++++++++---------- .../full_spectrum/theta=0_phi=0/solar.json | 96 +++++++++---------- .../full_spectrum/theta=0_phi=0/tdw.json | 96 +++++++++---------- .../thermal_SHGC_Environment.json | 62 ++++++------ .../theta=0_phi=0/thermal_U_Environment.json | 60 ++++++------ .../full_spectrum/theta=0_phi=0/tkr.json | 96 +++++++++---------- .../full_spectrum/theta=0_phi=0/tuv.json | 96 +++++++++---------- .../theta=15_phi=270/photopic.json | 96 +++++++++---------- .../full_spectrum/theta=15_phi=270/solar.json | 96 +++++++++---------- .../full_spectrum/theta=15_phi=270/tdw.json | 96 +++++++++---------- .../thermal_SHGC_Environment.json | 66 ++++++------- .../thermal_U_Environment.json | 60 ++++++------ .../full_spectrum/theta=15_phi=270/tkr.json | 96 +++++++++---------- .../full_spectrum/theta=15_phi=270/tuv.json | 96 +++++++++---------- .../theta=0_phi=0/photopic.json | 8 +- .../theta=0_phi=0/solar.json | 8 +- .../condensed_spectrum/theta=0_phi=0/tdw.json | 18 ++-- .../thermal_SHGC_Environment.json | 36 +++---- .../theta=0_phi=0/thermal_U_Environment.json | 30 +++--- .../condensed_spectrum/theta=0_phi=0/tkr.json | 16 ++-- .../condensed_spectrum/theta=0_phi=0/tuv.json | 8 +- .../theta=15_phi=270/photopic.json | 12 +-- .../theta=15_phi=270/solar.json | 12 +-- .../theta=15_phi=270/tdw.json | 18 ++-- .../thermal_SHGC_Environment.json | 34 +++---- .../thermal_U_Environment.json | 30 +++--- .../theta=15_phi=270/tkr.json | 12 +-- .../theta=15_phi=270/tuv.json | 12 +-- .../full_spectrum/theta=0_phi=0/photopic.json | 8 +- .../full_spectrum/theta=0_phi=0/solar.json | 16 ++-- .../full_spectrum/theta=0_phi=0/tdw.json | 12 +-- .../thermal_SHGC_Environment.json | 36 +++---- .../theta=0_phi=0/thermal_U_Environment.json | 28 +++--- .../full_spectrum/theta=0_phi=0/tkr.json | 12 +-- .../full_spectrum/theta=0_phi=0/tuv.json | 8 +- .../theta=15_phi=270/photopic.json | 8 +- .../full_spectrum/theta=15_phi=270/solar.json | 12 +-- .../full_spectrum/theta=15_phi=270/tdw.json | 12 +-- .../thermal_SHGC_Environment.json | 36 +++---- .../thermal_U_Environment.json | 28 +++--- .../full_spectrum/theta=15_phi=270/tkr.json | 8 +- .../full_spectrum/theta=15_phi=270/tuv.json | 8 +- test/main.cpp | 2 +- 305 files changed, 6286 insertions(+), 6271 deletions(-) diff --git a/src/create_wce_objects.cpp b/src/create_wce_objects.cpp index 113bd1b1..d89f87aa 100644 --- a/src/create_wce_objects.cpp +++ b/src/create_wce_objects.cpp @@ -441,9 +441,8 @@ namespace wincalc SpectralAveraging::CSpectralSampleData::create(measured_wavelength_data); std::shared_ptr material = - SingleLayerOptics::Material::nBandMaterial(spectral_sample_data, - product_data.thickness_meters, - product_data.material_type); + SingleLayerOptics::Material::nBandMaterial( + spectral_sample_data, product_data.thickness_meters, product_data.material_type); return material; } @@ -460,10 +459,8 @@ namespace wincalc auto pvSample = std::make_shared( measured_wavelength_data, eqef, eqeb); - auto material = - SingleLayerOptics::Material::nBandPhotovoltaicMaterial(pvSample, - product_data.thickness_meters, - product_data.material_type); + auto material = SingleLayerOptics::Material::nBandPhotovoltaicMaterial( + pvSample, product_data.thickness_meters, product_data.material_type); return material; } @@ -1082,6 +1079,13 @@ namespace wincalc layer.thermal_data->opening_left, layer.thermal_data->opening_right); auto effective_openness = effective_thermal_values->getEffectiveOpenness(); + //if(layer.thermal_data->effective_openness.has_value()) + //{ + // effective_openness.Ah = layer.thermal_data->effective_openness.value(); + //} + //auto effective_thickness = layer.thermal_data->effective_thickness.has_value() + // ? layer.thermal_data->effective_thickness.value() + // : effective_thermal_values->effectiveThickness(); auto tarcog_layer = Tarcog::ISO15099::Layers::shading(effective_thermal_values->effectiveThickness(), layer.thermal_data->conductivity.value(), @@ -1110,15 +1114,17 @@ namespace wincalc return system; } - Gases::CGas create_gas(std::vector>> const& components) - { - auto gas = Gases::CGas(); - for(const auto & item : components) - { - auto percent = item.first; - std::visit([&gas, percent](auto arg) { gas.addGasItem(percent, arg); }, item.second); - } - - return gas; - } + Gases::CGas create_gas( + std::vector>> const & + components) + { + auto gas = Gases::CGas(); + for(const auto & item : components) + { + auto percent = item.first; + std::visit([&gas, percent](auto arg) { gas.addGasItem(percent, arg); }, item.second); + } + + return gas; + } } // namespace wincalc diff --git a/src/product_data.cpp b/src/product_data.cpp index 906628c1..6281b6fd 100644 --- a/src/product_data.cpp +++ b/src/product_data.cpp @@ -82,21 +82,24 @@ namespace wincalc thickness_meters(thickness_meters), flipped(flipped) {} - Product_Data_Thermal::Product_Data_Thermal(std::optional conductivity, - double thickness_meters, - bool flipped, - double opening_top, - double opening_bottom, - double opening_left, - double opening_right, - double opening_front) : + Product_Data_Thermal::Product_Data_Thermal( + std::optional conductivity, + double thickness_meters, + bool flipped, + double opening_top, + double opening_bottom, + double opening_left, + double opening_right, + std::optional effective_openness, + std::optional effective_thickness) : Flippable_Solid_Layer(thickness_meters, flipped), conductivity(conductivity), opening_top(opening_top), opening_bottom(opening_bottom), opening_left(opening_left), opening_right(opening_right), - opening_front(opening_front), + effective_openness(effective_openness), + effective_thickness(effective_thickness), youngs_modulus(Tarcog::DeflectionConstants::YOUNGSMODULUS), density(Tarcog::MaterialConstants::GLASSDENSITY) {} diff --git a/src/product_data.h b/src/product_data.h index 59f5076c..775bcf13 100644 --- a/src/product_data.h +++ b/src/product_data.h @@ -25,14 +25,20 @@ namespace wincalc double opening_bottom = 0, double opening_left = 0, double opening_right = 0, - double opening_front = 0); + std::optional effective_openness = std::nullopt, + std::optional effective_thickness = std::nullopt); std::optional conductivity; double opening_top; double opening_bottom; double opening_left; double opening_right; - double opening_front; + //! effective openness and effective thickness are calculated by default and it is not + //! necessary to assign them manually. However, if doing research work with custom shading + //! device, these two can be calculated outside and the effect of the effective values can + //! be monitored by the user. + std::optional effective_openness{std::nullopt}; + std::optional effective_thickness{std::nullopt}; std::optional youngs_modulus; std::optional density; }; diff --git a/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=0_phi=0/solar.json b/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=0_phi=0/solar.json index 76ca1c23..f0d38ca1 100644 --- a/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=0_phi=0/solar.json +++ b/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=0_phi=0/solar.json @@ -54,9 +54,9 @@ "direct_hemispherical": 0.40476825766798186 }, "transmittance": { - "diffuse_diffuse": 0.12920816154494755, + "diffuse_diffuse": 0.12920816154494752, "direct_diffuse": 0.11280031122356646, - "direct_direct": 0.0026428706382975817, + "direct_direct": 0.0026428706382975813, "direct_hemispherical": 0.11544318186186404 } }, diff --git a/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=0_phi=0/tdw.json b/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=0_phi=0/tdw.json index 3a72546b..42ca3eab 100644 --- a/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=0_phi=0/tdw.json +++ b/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=0_phi=0/tdw.json @@ -54,7 +54,7 @@ "direct_hemispherical": 0.3406884076242437 }, "transmittance": { - "diffuse_diffuse": 0.10493470279699207, + "diffuse_diffuse": 0.10493470279699205, "direct_diffuse": 0.08237469909404581, "direct_direct": 0.0019204006942006276, "direct_hemispherical": 0.08429509978824644 diff --git a/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 01ed3097..70d6ead4 100644 --- a/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.07580302834329822, - "U": 2.849222658807741, + "SHGC": 0.07580302834306363, + "U": 2.849222658749646, "gap_layer_effective_conductivities_shgc": [ - 0.08836956496480616 + 0.08836956496510937 ], "gap_layer_effective_conductivities_u": [ - 0.07740465761555557 + 0.07740465761515868 ], "layer_temperatures_shgc": [ - 315.2512713026636, - 315.25231420774276, - 305.77294853143576, - 305.5791783510458 + 315.25127130255964, + 315.25231420763873, + 305.77294853138176, + 305.5791783509922 ], "layer_temperatures_u": [ - 303.99937169089037, - 303.99900942242726, - 300.46638063225004, - 300.3969051847214 + 303.99937169087445, + 303.99900942241135, + 300.4663806322354, + 300.3969051847065 ], - "relative_heat_gain": 77.13721732191196, + "relative_heat_gain": 77.13721732211967, "solid_layer_effective_conductivities_shgc": [ - 7.012287594124211, + 7.012287594124633, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.278819169785403, + 7.278819169783897, 1.0 ], - "system_effective_conductivity_shgc": 0.10602678253142742, - "system_effective_conductivity_u": 0.10031429265286851 + "system_effective_conductivity_shgc": 0.10602678253132429, + "system_effective_conductivity_u": 0.10031429265099234 } diff --git a/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index 2cca7d60..b86bef1f 100644 --- a/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.279321913900745, + "U": 3.2793219139440937, "gap_layer_effective_conductivities_shgc": [ - 0.07572662693029437 + 0.07572662693031113 ], "gap_layer_effective_conductivities_u": [ - 0.07572662693025922 + 0.07572662693027894 ], "layer_temperatures_shgc": [ - 258.0639566615059, - 258.06526365315915, - 276.4914466690479, - 276.8812662360397 + 258.0639566615474, + 258.06526365320065, + 276.4914466690659, + 276.88126623605746 ], "layer_temperatures_u": [ - 258.0639566615241, - 258.06526365317734, - 276.4914466690716, - 276.8812662360633 + 258.0639566614636, + 258.0652636531168, + 276.49144666902384, + 276.88126623601585 ], - "relative_heat_gain": 25.513124490256683, + "relative_heat_gain": 25.513124490275487, "solid_layer_effective_conductivities_shgc": [ - 7.214868204841513, + 7.2148682048526, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.214868204841497, + 7.214868204841505, 1.0 ], - "system_effective_conductivity_shgc": 0.10775502172006292, - "system_effective_conductivity_u": 0.10775502171999869 + "system_effective_conductivity_shgc": 0.10775502172006045, + "system_effective_conductivity_u": 0.10775502172108627 } diff --git a/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=15_phi=270/solar.json b/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=15_phi=270/solar.json index e6f86445..cd374362 100644 --- a/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=15_phi=270/solar.json +++ b/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=15_phi=270/solar.json @@ -54,7 +54,7 @@ "direct_hemispherical": 0.4150037781368791 }, "transmittance": { - "diffuse_diffuse": 0.12920816154494755, + "diffuse_diffuse": 0.12920816154494752, "direct_diffuse": 0.10619557907660884, "direct_direct": 0.002288840456047685, "direct_hemispherical": 0.10848441953265653 diff --git a/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=15_phi=270/tdw.json b/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=15_phi=270/tdw.json index 42ff0cce..a0b79a02 100644 --- a/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=15_phi=270/tdw.json +++ b/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=15_phi=270/tdw.json @@ -54,7 +54,7 @@ "direct_hemispherical": 0.349251701206718 }, "transmittance": { - "diffuse_diffuse": 0.10493470279699207, + "diffuse_diffuse": 0.10493470279699205, "direct_diffuse": 0.07783162789201574, "direct_direct": 0.0016685982247172644, "direct_hemispherical": 0.079500226116733 diff --git a/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index a75c8560..8e8386d1 100644 --- a/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.08299242870536815, - "U": 2.849222658807741, + "SHGC": 0.08299242870466628, + "U": 2.849222658749646, "gap_layer_effective_conductivities_shgc": [ - 0.08865809735410152 + 0.08865809735432588 ], "gap_layer_effective_conductivities_u": [ - 0.07740465761555557 + 0.07740465761515868 ], "layer_temperatures_shgc": [ - 315.5936615654097, - 315.5947471655188, - 305.95763382590206, - 305.75995915253003 + 315.59366156535276, + 315.5947471654619, + 305.9576338258627, + 305.75995915249064 ], "layer_temperatures_u": [ - 303.99937169089037, - 303.99900942242726, - 300.46638063225004, - 300.3969051847214 + 303.99937169087445, + 303.99900942241135, + 300.4663806322354, + 300.3969051847065 ], - "relative_heat_gain": 82.35077213600795, + "relative_heat_gain": 82.35077213632495, "solid_layer_effective_conductivities_shgc": [ - 7.015704691967906, + 7.015704691967797, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.278819169785403, + 7.278819169783897, 1.0 ], - "system_effective_conductivity_shgc": 0.10676674379624858, - "system_effective_conductivity_u": 0.10031429265286851 + "system_effective_conductivity_shgc": 0.10676674379580853, + "system_effective_conductivity_u": 0.10031429265099234 } diff --git a/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index 2cca7d60..b86bef1f 100644 --- a/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.279321913900745, + "U": 3.2793219139440937, "gap_layer_effective_conductivities_shgc": [ - 0.07572662693029437 + 0.07572662693031113 ], "gap_layer_effective_conductivities_u": [ - 0.07572662693025922 + 0.07572662693027894 ], "layer_temperatures_shgc": [ - 258.0639566615059, - 258.06526365315915, - 276.4914466690479, - 276.8812662360397 + 258.0639566615474, + 258.06526365320065, + 276.4914466690659, + 276.88126623605746 ], "layer_temperatures_u": [ - 258.0639566615241, - 258.06526365317734, - 276.4914466690716, - 276.8812662360633 + 258.0639566614636, + 258.0652636531168, + 276.49144666902384, + 276.88126623601585 ], - "relative_heat_gain": 25.513124490256683, + "relative_heat_gain": 25.513124490275487, "solid_layer_effective_conductivities_shgc": [ - 7.214868204841513, + 7.2148682048526, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.214868204841497, + 7.214868204841505, 1.0 ], - "system_effective_conductivity_shgc": 0.10775502172006292, - "system_effective_conductivity_u": 0.10775502171999869 + "system_effective_conductivity_shgc": 0.10775502172006045, + "system_effective_conductivity_u": 0.10775502172108627 } diff --git a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/photopic.json b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/photopic.json index 26c46d0f..049b83b5 100644 --- a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/photopic.json +++ b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/photopic.json @@ -28,9 +28,9 @@ "electricity_diffuse": 0.0, "electricity_direct": 0.0, "heat_diffuse": 0.030178174764817902, - "heat_direct": 0.029027134827795648, + "heat_direct": 0.029027134827795655, "total_diffuse": 0.030178174764817902, - "total_direct": 0.029027134827795648 + "total_direct": 0.029027134827795655 } }, "front": { @@ -54,10 +54,10 @@ "direct_hemispherical": 0.5126777586088886 }, "transmittance": { - "diffuse_diffuse": 0.1576891446079311, - "direct_diffuse": 0.14079910461695183, - "direct_direct": 0.0032917270761523305, - "direct_hemispherical": 0.14409083169310416 + "diffuse_diffuse": 0.15768914460793107, + "direct_diffuse": 0.1407991046169518, + "direct_direct": 0.003291727076152329, + "direct_hemispherical": 0.14409083169310413 } }, "front": { diff --git a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/solar.json b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/solar.json index 7472cb32..665711db 100644 --- a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/solar.json +++ b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/solar.json @@ -54,10 +54,10 @@ "direct_hemispherical": 0.4082352221227744 }, "transmittance": { - "diffuse_diffuse": 0.1299319360908632, - "direct_diffuse": 0.11357010192194433, - "direct_direct": 0.002660183341355076, - "direct_hemispherical": 0.11623028526329941 + "diffuse_diffuse": 0.12993193609086318, + "direct_diffuse": 0.11357010192194432, + "direct_direct": 0.0026601833413550757, + "direct_hemispherical": 0.1162302852632994 } }, "front": { diff --git a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/tdw.json b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/tdw.json index 1f556244..dfc0e810 100644 --- a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/tdw.json +++ b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/tdw.json @@ -6,9 +6,9 @@ "electricity_diffuse": 0.0, "electricity_direct": 0.0, "heat_diffuse": 0.38773250227172157, - "heat_direct": 0.4566584172245783, + "heat_direct": 0.45665841722457845, "total_diffuse": 0.38773250227172157, - "total_direct": 0.4566584172245783 + "total_direct": 0.45665841722457845 } }, "front": { @@ -28,9 +28,9 @@ "electricity_diffuse": 0.0, "electricity_direct": 0.0, "heat_diffuse": 0.0878469384819181, - "heat_direct": 0.08528972683142873, + "heat_direct": 0.08528972683142874, "total_diffuse": 0.0878469384819181, - "total_direct": 0.08528972683142873 + "total_direct": 0.08528972683142874 } }, "front": { @@ -55,9 +55,9 @@ }, "transmittance": { "diffuse_diffuse": 0.11201692556521879, - "direct_diffuse": 0.08951997949979483, + "direct_diffuse": 0.08951997949979479, "direct_direct": 0.00208537984817425, - "direct_hemispherical": 0.09160535934796908 + "direct_hemispherical": 0.09160535934796904 } }, "front": { diff --git a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 411c4542..c58f5461 100644 --- a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.07512207302192754, - "U": 2.849222658785131, + "SHGC": 0.07512207302236577, + "U": 2.8492226587885208, "gap_layer_effective_conductivities_shgc": [ - 0.08822326162132152 + 0.08822326162126884 ], "gap_layer_effective_conductivities_u": [ - 0.07740465761540886 + 0.0774046576156049 ], "layer_temperatures_shgc": [ - 315.08769042584265, - 315.0887136393762, - 305.6993109683644, - 305.507391826985 + 315.0876904259067, + 315.08871363944024, + 305.6993109684028, + 305.50739182702296 ], "layer_temperatures_u": [ - 303.9993716910587, - 303.9990094225956, - 300.4663806323389, - 300.3969051848094 + 303.99937169080937, + 303.99900942234626, + 300.46638063220865, + 300.39690518467995 ], - "relative_heat_gain": 76.64340730794297, + "relative_heat_gain": 76.64340730838548, "solid_layer_effective_conductivities_shgc": [ - 7.010862286826223, + 7.010862286823563, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.278819169735563, + 7.278819169733269, 1.0 ], - "system_effective_conductivity_shgc": 0.10603300234413057, - "system_effective_conductivity_u": 0.10031429265360199 + "system_effective_conductivity_shgc": 0.10603300234383349, + "system_effective_conductivity_u": 0.10031429265524444 } diff --git a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index 38273de9..63f7c726 100644 --- a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.279321913916165, + "U": 3.279321913913816, "gap_layer_effective_conductivities_shgc": [ - 0.07572662693032564 + 0.07572662693031072 ], "gap_layer_effective_conductivities_u": [ - 0.075726626930258 + 0.07572662693027503 ], "layer_temperatures_shgc": [ - 258.06395666150723, - 258.06526365316046, - 276.49144666904715, - 276.881266236039 + 258.0639566615474, + 258.06526365320065, + 276.4914466690656, + 276.8812662360572 ], "layer_temperatures_u": [ - 258.06395666153827, - 258.0652636531915, - 276.49144666906756, - 276.8812662360593 + 258.0639566615255, + 258.0652636531787, + 276.4914466690778, + 276.8812662360695 ], - "relative_heat_gain": 25.513124490266126, + "relative_heat_gain": 25.513124490250128, "solid_layer_effective_conductivities_shgc": [ - 7.214868204841487, + 7.214868204841701, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.21486820484152, + 7.214868204841533, 1.0 ], - "system_effective_conductivity_shgc": 0.10775502172013812, - "system_effective_conductivity_u": 0.10775502172005946 + "system_effective_conductivity_shgc": 0.1077550217201647, + "system_effective_conductivity_u": 0.10775502172006209 } diff --git a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/tkr.json b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/tkr.json index 2e0d82bc..072082e3 100644 --- a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/tkr.json +++ b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/tkr.json @@ -49,15 +49,15 @@ "back": { "reflectance": { "diffuse_diffuse": 0.2745379303559487, - "direct_diffuse": 0.1350982538664724, + "direct_diffuse": 0.13509825386647245, "direct_direct": 0.08055681214050571, - "direct_hemispherical": 0.2156550660069781 + "direct_hemispherical": 0.21565506600697815 }, "transmittance": { "diffuse_diffuse": 0.0664814239683627, - "direct_diffuse": 0.04154321247620628, - "direct_direct": 0.0009629972868436568, - "direct_hemispherical": 0.04250620976304994 + "direct_diffuse": 0.04154321247620625, + "direct_direct": 0.0009629972868436566, + "direct_hemispherical": 0.04250620976304991 } }, "front": { diff --git a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=15_phi=270/photopic.json b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=15_phi=270/photopic.json index 4c4acd58..cf416b8c 100644 --- a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=15_phi=270/photopic.json +++ b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=15_phi=270/photopic.json @@ -54,7 +54,7 @@ "direct_hemispherical": 0.5264906514881363 }, "transmittance": { - "diffuse_diffuse": 0.1576891446079311, + "diffuse_diffuse": 0.15768914460793107, "direct_diffuse": 0.13263925000149684, "direct_direct": 0.0028518890829335123, "direct_hemispherical": 0.13549113908443036 diff --git a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=15_phi=270/solar.json b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=15_phi=270/solar.json index f2d5ece7..5af937e0 100644 --- a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=15_phi=270/solar.json +++ b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=15_phi=270/solar.json @@ -54,7 +54,7 @@ "direct_hemispherical": 0.41859524616376764 }, "transmittance": { - "diffuse_diffuse": 0.1299319360908632, + "diffuse_diffuse": 0.12993193609086318, "direct_diffuse": 0.10693915656642068, "direct_direct": 0.0023041959784507876, "direct_hemispherical": 0.10924335254487147 diff --git a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=15_phi=270/tdw.json b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=15_phi=270/tdw.json index b41a3267..2fc4e8d7 100644 --- a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=15_phi=270/tdw.json +++ b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=15_phi=270/tdw.json @@ -55,9 +55,9 @@ }, "transmittance": { "diffuse_diffuse": 0.11201692556521879, - "direct_diffuse": 0.08461299924722229, + "direct_diffuse": 0.08461299924722232, "direct_direct": 0.00181248278599347, - "direct_hemispherical": 0.08642548203321576 + "direct_hemispherical": 0.08642548203321579 } }, "front": { diff --git a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 8f1e57b5..5e4201ac 100644 --- a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.0823588845497136, - "U": 2.849222658785131, + "SHGC": 0.08235888455015766, + "U": 2.8492226587885208, "gap_layer_effective_conductivities_shgc": [ - 0.08851875748320448 + 0.0885187574834448 ], "gap_layer_effective_conductivities_u": [ - 0.07740465761540886 + 0.0774046576156049 ], "layer_temperatures_shgc": [ - 315.4363559154857, - 315.4374226079816, - 305.88688962930917, - 305.69099609008833 + 315.4363559153726, + 315.43742260786837, + 305.88688962925306, + 305.6909960900328 ], "layer_temperatures_u": [ - 303.9993716910587, - 303.9990094225956, - 300.4663806323389, - 300.3969051848094 + 303.99937169080937, + 303.99900942234626, + 300.46638063220865, + 300.39690518467995 ], - "relative_heat_gain": 81.89134339185057, + "relative_heat_gain": 81.89134339174082, "solid_layer_effective_conductivities_shgc": [ - 7.014444738734927, + 7.014444738734212, 1.0000000000000002 ], "solid_layer_effective_conductivities_u": [ - 7.278819169735563, + 7.278819169733269, 1.0 ], - "system_effective_conductivity_shgc": 0.1067781355665399, - "system_effective_conductivity_u": 0.10031429265360199 + "system_effective_conductivity_shgc": 0.1067781355664651, + "system_effective_conductivity_u": 0.10031429265524444 } diff --git a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index 38273de9..63f7c726 100644 --- a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.279321913916165, + "U": 3.279321913913816, "gap_layer_effective_conductivities_shgc": [ - 0.07572662693032564 + 0.07572662693031072 ], "gap_layer_effective_conductivities_u": [ - 0.075726626930258 + 0.07572662693027503 ], "layer_temperatures_shgc": [ - 258.06395666150723, - 258.06526365316046, - 276.49144666904715, - 276.881266236039 + 258.0639566615474, + 258.06526365320065, + 276.4914466690656, + 276.8812662360572 ], "layer_temperatures_u": [ - 258.06395666153827, - 258.0652636531915, - 276.49144666906756, - 276.8812662360593 + 258.0639566615255, + 258.0652636531787, + 276.4914466690778, + 276.8812662360695 ], - "relative_heat_gain": 25.513124490266126, + "relative_heat_gain": 25.513124490250128, "solid_layer_effective_conductivities_shgc": [ - 7.214868204841487, + 7.214868204841701, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.21486820484152, + 7.214868204841533, 1.0 ], - "system_effective_conductivity_shgc": 0.10775502172013812, - "system_effective_conductivity_u": 0.10775502172005946 + "system_effective_conductivity_shgc": 0.1077550217201647, + "system_effective_conductivity_u": 0.10775502172006209 } diff --git a/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=0_phi=0/solar.json b/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=0_phi=0/solar.json index cc1bb361..acf9383c 100644 --- a/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=0_phi=0/solar.json +++ b/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=0_phi=0/solar.json @@ -49,14 +49,14 @@ "back": { "reflectance": { "diffuse_diffuse": 0.4400408275751735, - "direct_diffuse": 0.3210459408424308, + "direct_diffuse": 0.3210459408424309, "direct_direct": 0.08372231682555094, - "direct_hemispherical": 0.40476825766798175 + "direct_hemispherical": 0.4047682576679818 }, "transmittance": { - "diffuse_diffuse": 0.12920816154494782, + "diffuse_diffuse": 0.12920816154494777, "direct_diffuse": 0.11280031122356647, - "direct_direct": 0.0026428706382975817, + "direct_direct": 0.0026428706382975813, "direct_hemispherical": 0.11544318186186406 } }, diff --git a/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=0_phi=0/tdw.json b/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=0_phi=0/tdw.json index 35ddcda2..acb3aaaf 100644 --- a/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=0_phi=0/tdw.json +++ b/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=0_phi=0/tdw.json @@ -54,7 +54,7 @@ "direct_hemispherical": 0.3406884076242437 }, "transmittance": { - "diffuse_diffuse": 0.10493470279699216, + "diffuse_diffuse": 0.10493470279699214, "direct_diffuse": 0.08237469909404582, "direct_direct": 0.0019204006942006276, "direct_hemispherical": 0.08429509978824645 diff --git a/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 1f9c6bd3..a62b61d1 100644 --- a/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.07580302834308791, - "U": 2.849222658772737, + "SHGC": 0.07580302834294132, + "U": 2.8492226587582183, "gap_layer_effective_conductivities_shgc": [ - 0.08836956496535067 + 0.08836956496560988 ], "gap_layer_effective_conductivities_u": [ - 0.07740465761408705 + 0.07740465761505462 ], "layer_temperatures_shgc": [ - 315.251271302513, - 315.25231420759206, - 305.7729485313576, - 305.57917835096794 + 315.2512713024132, + 315.25231420749225, + 305.7729485313064, + 305.57917835091723 ], "layer_temperatures_u": [ - 303.9993716909439, - 303.99900942248087, - 300.46638063226186, - 300.3969051847326 + 303.9993716908667, + 303.9990094224036, + 300.46638063222406, + 300.3969051846953 ], - "relative_heat_gain": 77.13721732184844, + "relative_heat_gain": 77.13721732188286, "solid_layer_effective_conductivities_shgc": [ - 7.012287594127626, + 7.012287594123898, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.278819169787896, + 7.278819169733937, 1.0 ], - "system_effective_conductivity_shgc": 0.10602678253122438, - "system_effective_conductivity_u": 0.10031429265269123 + "system_effective_conductivity_shgc": 0.10602678253163303, + "system_effective_conductivity_u": 0.10031429265139315 } diff --git a/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index 585fe354..54aa17da 100644 --- a/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.27932191390054, + "U": 3.2793219139418164, "gap_layer_effective_conductivities_shgc": [ - 0.075726626930323 + 0.07572662693030915 ], "gap_layer_effective_conductivities_u": [ - 0.07572662693025912 + 0.07572662693027746 ], "layer_temperatures_shgc": [ - 258.06395666153713, - 258.06526365319036, - 276.4914466690681, - 276.8812662360598 + 258.0639566615462, + 258.06526365319945, + 276.4914466690653, + 276.88126623605683 ], "layer_temperatures_u": [ - 258.0639566615243, - 258.06526365317745, - 276.49144666907, - 276.8812662360617 + 258.06395666146364, + 258.0652636531168, + 276.4914466690221, + 276.8812662360141 ], - "relative_heat_gain": 25.51312449025481, + "relative_heat_gain": 25.513124490294956, "solid_layer_effective_conductivities_shgc": [ - 7.2148682048415145, + 7.214868204852596, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.214868204841513, + 7.214868204841347, 1.0 ], - "system_effective_conductivity_shgc": 0.10775502172005891, - "system_effective_conductivity_u": 0.10775502171998108 + "system_effective_conductivity_shgc": 0.10775502172004513, + "system_effective_conductivity_u": 0.1077550217210507 } diff --git a/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=15_phi=270/photopic.json b/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=15_phi=270/photopic.json index f762a61b..a6e08b8f 100644 --- a/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=15_phi=270/photopic.json +++ b/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=15_phi=270/photopic.json @@ -55,9 +55,9 @@ }, "transmittance": { "diffuse_diffuse": 0.1566961486289654, - "direct_diffuse": 0.1399320795596977, - "direct_direct": 0.0030303127672371417, - "direct_hemispherical": 0.14296239232693483 + "direct_diffuse": 0.13993207955969747, + "direct_direct": 0.0030303127672371413, + "direct_hemispherical": 0.1429623923269346 } }, "front": { diff --git a/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=15_phi=270/solar.json b/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=15_phi=270/solar.json index ef523c1f..7255ce5c 100644 --- a/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=15_phi=270/solar.json +++ b/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=15_phi=270/solar.json @@ -54,10 +54,10 @@ "direct_hemispherical": 0.4041887932668424 }, "transmittance": { - "diffuse_diffuse": 0.12920816154494782, - "direct_diffuse": 0.11274036925795063, - "direct_direct": 0.0024465578706727494, - "direct_hemispherical": 0.11518692712862337 + "diffuse_diffuse": 0.12920816154494777, + "direct_diffuse": 0.11274036925795045, + "direct_direct": 0.0024465578706727486, + "direct_hemispherical": 0.11518692712862319 } }, "front": { diff --git a/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=15_phi=270/tdw.json b/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=15_phi=270/tdw.json index f78d4f27..dab87d3b 100644 --- a/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=15_phi=270/tdw.json +++ b/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=15_phi=270/tdw.json @@ -54,9 +54,9 @@ "direct_hemispherical": 0.3407032545429918 }, "transmittance": { - "diffuse_diffuse": 0.10493470279699216, + "diffuse_diffuse": 0.10493470279699214, "direct_diffuse": 0.0824536302287307, - "direct_direct": 0.0017804261021788638, + "direct_direct": 0.0017804261021788636, "direct_hemispherical": 0.08423405633090957 } }, diff --git a/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 1f9c6bd3..a62b61d1 100644 --- a/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.07580302834308791, - "U": 2.849222658772737, + "SHGC": 0.07580302834294132, + "U": 2.8492226587582183, "gap_layer_effective_conductivities_shgc": [ - 0.08836956496535067 + 0.08836956496560988 ], "gap_layer_effective_conductivities_u": [ - 0.07740465761408705 + 0.07740465761505462 ], "layer_temperatures_shgc": [ - 315.251271302513, - 315.25231420759206, - 305.7729485313576, - 305.57917835096794 + 315.2512713024132, + 315.25231420749225, + 305.7729485313064, + 305.57917835091723 ], "layer_temperatures_u": [ - 303.9993716909439, - 303.99900942248087, - 300.46638063226186, - 300.3969051847326 + 303.9993716908667, + 303.9990094224036, + 300.46638063222406, + 300.3969051846953 ], - "relative_heat_gain": 77.13721732184844, + "relative_heat_gain": 77.13721732188286, "solid_layer_effective_conductivities_shgc": [ - 7.012287594127626, + 7.012287594123898, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.278819169787896, + 7.278819169733937, 1.0 ], - "system_effective_conductivity_shgc": 0.10602678253122438, - "system_effective_conductivity_u": 0.10031429265269123 + "system_effective_conductivity_shgc": 0.10602678253163303, + "system_effective_conductivity_u": 0.10031429265139315 } diff --git a/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index 585fe354..54aa17da 100644 --- a/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.27932191390054, + "U": 3.2793219139418164, "gap_layer_effective_conductivities_shgc": [ - 0.075726626930323 + 0.07572662693030915 ], "gap_layer_effective_conductivities_u": [ - 0.07572662693025912 + 0.07572662693027746 ], "layer_temperatures_shgc": [ - 258.06395666153713, - 258.06526365319036, - 276.4914466690681, - 276.8812662360598 + 258.0639566615462, + 258.06526365319945, + 276.4914466690653, + 276.88126623605683 ], "layer_temperatures_u": [ - 258.0639566615243, - 258.06526365317745, - 276.49144666907, - 276.8812662360617 + 258.06395666146364, + 258.0652636531168, + 276.4914466690221, + 276.8812662360141 ], - "relative_heat_gain": 25.51312449025481, + "relative_heat_gain": 25.513124490294956, "solid_layer_effective_conductivities_shgc": [ - 7.2148682048415145, + 7.214868204852596, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.214868204841513, + 7.214868204841347, 1.0 ], - "system_effective_conductivity_shgc": 0.10775502172005891, - "system_effective_conductivity_u": 0.10775502171998108 + "system_effective_conductivity_shgc": 0.10775502172004513, + "system_effective_conductivity_u": 0.1077550217210507 } diff --git a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=0_phi=0/photopic.json b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=0_phi=0/photopic.json index a31c9265..e8bcde44 100644 --- a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=0_phi=0/photopic.json +++ b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=0_phi=0/photopic.json @@ -6,9 +6,9 @@ "electricity_diffuse": 0.0, "electricity_direct": 0.0, "heat_diffuse": 0.26849516967836656, - "heat_direct": 0.3142042748702118, + "heat_direct": 0.31420427487021185, "total_diffuse": 0.26849516967836656, - "total_direct": 0.3142042748702118 + "total_direct": 0.31420427487021185 } }, "front": { @@ -56,7 +56,7 @@ "transmittance": { "diffuse_diffuse": 0.1576891446079311, "direct_diffuse": 0.1407991046169518, - "direct_direct": 0.0032917270761523305, + "direct_direct": 0.003291727076152329, "direct_hemispherical": 0.14409083169310413 } }, diff --git a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=0_phi=0/solar.json b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=0_phi=0/solar.json index 84ff4596..9cb8ae37 100644 --- a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=0_phi=0/solar.json +++ b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=0_phi=0/solar.json @@ -56,7 +56,7 @@ "transmittance": { "diffuse_diffuse": 0.12993193609086293, "direct_diffuse": 0.1135701019219443, - "direct_direct": 0.002660183341355076, + "direct_direct": 0.0026601833413550757, "direct_hemispherical": 0.11623028526329938 } }, diff --git a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=0_phi=0/tdw.json b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=0_phi=0/tdw.json index ac3c37fb..8bbf7def 100644 --- a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=0_phi=0/tdw.json +++ b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=0_phi=0/tdw.json @@ -6,9 +6,9 @@ "electricity_diffuse": 0.0, "electricity_direct": 0.0, "heat_diffuse": 0.38773250227172146, - "heat_direct": 0.4566584172245783, + "heat_direct": 0.45665841722457845, "total_diffuse": 0.38773250227172146, - "total_direct": 0.4566584172245783 + "total_direct": 0.45665841722457845 } }, "front": { @@ -28,9 +28,9 @@ "electricity_diffuse": 0.0, "electricity_direct": 0.0, "heat_diffuse": 0.08784693848191813, - "heat_direct": 0.08528972683142873, + "heat_direct": 0.08528972683142874, "total_diffuse": 0.08784693848191813, - "total_direct": 0.08528972683142873 + "total_direct": 0.08528972683142874 } }, "front": { @@ -56,7 +56,7 @@ "transmittance": { "diffuse_diffuse": 0.11201692556521886, "direct_diffuse": 0.08951997949979484, - "direct_direct": 0.0020853798481742505, + "direct_direct": 0.00208537984817425, "direct_hemispherical": 0.0916053593479691 } }, diff --git a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index b68dd9c7..8eda291c 100644 --- a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.07512207302199113, - "U": 2.849222658817634, + "SHGC": 0.07512207302219222, + "U": 2.8492226587680993, "gap_layer_effective_conductivities_shgc": [ - 0.08822326162130513 + 0.08822326162079641 ], "gap_layer_effective_conductivities_u": [ - 0.07740465761486119 + 0.07740465761527814 ], "layer_temperatures_shgc": [ - 315.0876904259086, - 315.08871363944206, - 305.6993109683955, - 305.50739182701557 + 315.0876904259827, + 315.0887136395162, + 305.6993109684343, + 305.50739182705456 ], "layer_temperatures_u": [ - 303.99937169096387, - 303.99900942250076, - 300.46638063227863, - 300.3969051847493 + 303.9993716910429, + 303.9990094225798, + 300.4663806323249, + 300.3969051847956 ], - "relative_heat_gain": 76.64340730812302, + "relative_heat_gain": 76.64340730795463, "solid_layer_effective_conductivities_shgc": [ - 7.01086228682561, + 7.010862286826093, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.278819169734938, + 7.278819169785277, 1.0 ], - "system_effective_conductivity_shgc": 0.10603300234401462, - "system_effective_conductivity_u": 0.10031429265444365 + "system_effective_conductivity_shgc": 0.10603300234394797, + "system_effective_conductivity_u": 0.10031429265406851 } diff --git a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index f09bbbfb..9d661c33 100644 --- a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.2793219139160947, + "U": 3.279321913913904, "gap_layer_effective_conductivities_shgc": [ - 0.07572662693032717 + 0.0757266269303065 ], "gap_layer_effective_conductivities_u": [ - 0.07572662693032016 + 0.07572662693026815 ], "layer_temperatures_shgc": [ - 258.0639566615367, - 258.0652636531899, - 276.4914466690658, - 276.88126623605746 + 258.0639566615461, + 258.06526365319934, + 276.49144666906545, + 276.88126623605694 ], "layer_temperatures_u": [ - 258.06395666150615, - 258.0652636531594, - 276.4914466690495, - 276.88126623604126 + 258.06395666152514, + 258.06526365317836, + 276.4914466690791, + 276.8812662360708 ], - "relative_heat_gain": 25.513124490254448, + "relative_heat_gain": 25.513124490251347, "solid_layer_effective_conductivities_shgc": [ - 7.214868204841451, + 7.2148682048416966, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.214868204852766, + 7.214868204841528, 1.0 ], - "system_effective_conductivity_shgc": 0.10775502172005205, - "system_effective_conductivity_u": 0.10775502172011209 + "system_effective_conductivity_shgc": 0.10775502172019548, + "system_effective_conductivity_u": 0.10775502172006862 } diff --git a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=0_phi=0/tkr.json b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=0_phi=0/tkr.json index f7545224..e41eb23f 100644 --- a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=0_phi=0/tkr.json +++ b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=0_phi=0/tkr.json @@ -51,13 +51,13 @@ "diffuse_diffuse": 0.27453793035594876, "direct_diffuse": 0.1350982538664724, "direct_direct": 0.08055681214050571, - "direct_hemispherical": 0.2156550660069781 + "direct_hemispherical": 0.21565506600697812 }, "transmittance": { "diffuse_diffuse": 0.06648142396836257, - "direct_diffuse": 0.04154321247620627, - "direct_direct": 0.0009629972868436568, - "direct_hemispherical": 0.04250620976304993 + "direct_diffuse": 0.04154321247620625, + "direct_direct": 0.0009629972868436566, + "direct_hemispherical": 0.04250620976304991 } }, "front": { diff --git a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/photopic.json b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/photopic.json index 2110c242..9bfbb6c1 100644 --- a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/photopic.json +++ b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/photopic.json @@ -6,9 +6,9 @@ "electricity_diffuse": 0.0, "electricity_direct": 0.0, "heat_diffuse": 0.26849516967836656, - "heat_direct": 0.31398969002810195, + "heat_direct": 0.31398969002810184, "total_diffuse": 0.26849516967836656, - "total_direct": 0.31398969002810195 + "total_direct": 0.31398969002810184 } }, "front": { @@ -55,9 +55,9 @@ }, "transmittance": { "diffuse_diffuse": 0.1576891446079311, - "direct_diffuse": 0.14094093192570425, - "direct_direct": 0.003051930065770603, - "direct_hemispherical": 0.14399286199147485 + "direct_diffuse": 0.14094093192570423, + "direct_direct": 0.003051930065770601, + "direct_hemispherical": 0.14399286199147482 } }, "front": { diff --git a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/solar.json b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/solar.json index 3bb60cab..22c0001e 100644 --- a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/solar.json +++ b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/solar.json @@ -49,15 +49,15 @@ "back": { "reflectance": { "diffuse_diffuse": 0.44317473680451236, - "direct_diffuse": 0.32425184855358663, + "direct_diffuse": 0.3242518485535867, "direct_direct": 0.08340233828082756, - "direct_hemispherical": 0.4076541868344142 + "direct_hemispherical": 0.40765418683441423 }, "transmittance": { "diffuse_diffuse": 0.12993193609086293, - "direct_diffuse": 0.11351131650278834, - "direct_direct": 0.0024626191499128583, - "direct_hemispherical": 0.1159739356527012 + "direct_diffuse": 0.11351131650278833, + "direct_direct": 0.002462619149912858, + "direct_hemispherical": 0.11597393565270118 } }, "front": { diff --git a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/tdw.json b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/tdw.json index 0d1c5368..6b7e1824 100644 --- a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/tdw.json +++ b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/tdw.json @@ -49,15 +49,15 @@ "back": { "reflectance": { "diffuse_diffuse": 0.41240363368114247, - "direct_diffuse": 0.2773039457232403, + "direct_diffuse": 0.2773039457232405, "direct_direct": 0.08912403104492432, - "direct_hemispherical": 0.36642797676816463 + "direct_hemispherical": 0.36642797676816485 }, "transmittance": { "diffuse_diffuse": 0.11201692556521886, - "direct_diffuse": 0.08960279348097279, - "direct_direct": 0.0019333180842265633, - "direct_hemispherical": 0.09153611156519935 + "direct_diffuse": 0.08960279348097276, + "direct_direct": 0.001933318084226563, + "direct_hemispherical": 0.09153611156519932 } }, "front": { diff --git a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index b68dd9c7..8eda291c 100644 --- a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.07512207302199113, - "U": 2.849222658817634, + "SHGC": 0.07512207302219222, + "U": 2.8492226587680993, "gap_layer_effective_conductivities_shgc": [ - 0.08822326162130513 + 0.08822326162079641 ], "gap_layer_effective_conductivities_u": [ - 0.07740465761486119 + 0.07740465761527814 ], "layer_temperatures_shgc": [ - 315.0876904259086, - 315.08871363944206, - 305.6993109683955, - 305.50739182701557 + 315.0876904259827, + 315.0887136395162, + 305.6993109684343, + 305.50739182705456 ], "layer_temperatures_u": [ - 303.99937169096387, - 303.99900942250076, - 300.46638063227863, - 300.3969051847493 + 303.9993716910429, + 303.9990094225798, + 300.4663806323249, + 300.3969051847956 ], - "relative_heat_gain": 76.64340730812302, + "relative_heat_gain": 76.64340730795463, "solid_layer_effective_conductivities_shgc": [ - 7.01086228682561, + 7.010862286826093, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.278819169734938, + 7.278819169785277, 1.0 ], - "system_effective_conductivity_shgc": 0.10603300234401462, - "system_effective_conductivity_u": 0.10031429265444365 + "system_effective_conductivity_shgc": 0.10603300234394797, + "system_effective_conductivity_u": 0.10031429265406851 } diff --git a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index f09bbbfb..9d661c33 100644 --- a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.2793219139160947, + "U": 3.279321913913904, "gap_layer_effective_conductivities_shgc": [ - 0.07572662693032717 + 0.0757266269303065 ], "gap_layer_effective_conductivities_u": [ - 0.07572662693032016 + 0.07572662693026815 ], "layer_temperatures_shgc": [ - 258.0639566615367, - 258.0652636531899, - 276.4914466690658, - 276.88126623605746 + 258.0639566615461, + 258.06526365319934, + 276.49144666906545, + 276.88126623605694 ], "layer_temperatures_u": [ - 258.06395666150615, - 258.0652636531594, - 276.4914466690495, - 276.88126623604126 + 258.06395666152514, + 258.06526365317836, + 276.4914466690791, + 276.8812662360708 ], - "relative_heat_gain": 25.513124490254448, + "relative_heat_gain": 25.513124490251347, "solid_layer_effective_conductivities_shgc": [ - 7.214868204841451, + 7.2148682048416966, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.214868204852766, + 7.214868204841528, 1.0 ], - "system_effective_conductivity_shgc": 0.10775502172005205, - "system_effective_conductivity_u": 0.10775502172011209 + "system_effective_conductivity_shgc": 0.10775502172019548, + "system_effective_conductivity_u": 0.10775502172006862 } diff --git a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/tkr.json b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/tkr.json index 52cfb9b2..cd21551f 100644 --- a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/tkr.json +++ b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/tkr.json @@ -49,14 +49,14 @@ "back": { "reflectance": { "diffuse_diffuse": 0.27453793035594876, - "direct_diffuse": 0.13524389001957596, + "direct_diffuse": 0.1352438900195761, "direct_direct": 0.08041101339602694, - "direct_hemispherical": 0.2156549034156029 + "direct_hemispherical": 0.21565490341560303 }, "transmittance": { "diffuse_diffuse": 0.06648142396836257, "direct_diffuse": 0.041569216644003586, - "direct_direct": 0.0008925198703001039, + "direct_direct": 0.0008925198703001037, "direct_hemispherical": 0.04246173651430369 } }, diff --git a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/tuv.json b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/tuv.json index 81e44951..47ca5994 100644 --- a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/tuv.json +++ b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/tuv.json @@ -49,9 +49,9 @@ "back": { "reflectance": { "diffuse_diffuse": 0.1756504250623219, - "direct_diffuse": 0.028259881100547002, + "direct_diffuse": 0.028259881100547057, "direct_direct": 0.0770247708075378, - "direct_hemispherical": 0.10528465190808481 + "direct_hemispherical": 0.10528465190808486 }, "transmittance": { "diffuse_diffuse": 0.03729935320855942, diff --git a/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=0_phi=0/photopic.json b/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=0_phi=0/photopic.json index abc01f24..4e1b908d 100644 --- a/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=0_phi=0/photopic.json +++ b/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=0_phi=0/photopic.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.11484323834705497, - "heat_direct": 0.11563056498251204, - "total_diffuse": 0.11484323834705497, - "total_direct": 0.11563056498251204 + "heat_diffuse": 0.11483217185753525, + "heat_direct": 0.11517394896428299, + "total_diffuse": 0.11483217185753525, + "total_direct": 0.11517394896428299 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.11491379862382942, - "heat_direct": 0.11516686591751635, - "total_diffuse": 0.11491379862382942, - "total_direct": 0.11516686591751635 + "heat_diffuse": 0.11489994905492291, + "heat_direct": 0.1154961058976545, + "total_diffuse": 0.11489994905492291, + "total_direct": 0.1154961058976545 } } } @@ -26,30 +26,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.6601313497258862, - "direct_diffuse": 0.6538339690112369, + "diffuse_diffuse": 0.660140015225373, + "direct_diffuse": 0.6542666300298489, "direct_direct": 0.005065336001770739, - "direct_hemispherical": 0.6588993050130076 + "direct_hemispherical": 0.6593319660316196 }, "transmittance": { - "diffuse_diffuse": 0.2250254119270577, - "direct_diffuse": 0.2237091490049996, + "diffuse_diffuse": 0.22502781291709092, + "direct_diffuse": 0.22373310400461655, "direct_direct": 0.0017609809994809558, - "direct_hemispherical": 0.22547013000448057 + "direct_hemispherical": 0.2254940850040975 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.6601710052568015, - "direct_diffuse": 0.6547234260682276, + "diffuse_diffuse": 0.6601862987041979, + "direct_diffuse": 0.65468524809145, "direct_direct": 0.0050031020095520195, - "direct_hemispherical": 0.6597265280777797 + "direct_hemispherical": 0.659688350101002 }, "transmittance": { - "diffuse_diffuse": 0.22491519611936414, - "direct_diffuse": 0.2234306420043022, + "diffuse_diffuse": 0.2249137522408734, + "direct_diffuse": 0.22313958000094153, "direct_direct": 0.0016759640004019338, - "direct_hemispherical": 0.22510660600470414 + "direct_hemispherical": 0.22481554400134346 } } } diff --git a/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=0_phi=0/solar.json b/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=0_phi=0/solar.json index 2378a025..6917eedd 100644 --- a/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=0_phi=0/solar.json +++ b/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=0_phi=0/solar.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.15042164373484068, - "heat_direct": 0.14998115998560033, - "total_diffuse": 0.15042164373484068, - "total_direct": 0.14998115998560033 + "heat_diffuse": 0.15041843925745635, + "heat_direct": 0.15027069898313325, + "total_diffuse": 0.15041843925745635, + "total_direct": 0.15027069898313325 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.150494133681236, - "heat_direct": 0.15148470995986765, - "total_diffuse": 0.150494133681236, - "total_direct": 0.15148470995986765 + "heat_diffuse": 0.1504673969200072, + "heat_direct": 0.15183477792549924, + "total_diffuse": 0.1504673969200072, + "total_direct": 0.15183477792549924 } } } @@ -26,30 +26,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.6325117638430522, - "direct_diffuse": 0.6271115720123137, + "diffuse_diffuse": 0.6325016242691012, + "direct_diffuse": 0.626726441014117, "direct_direct": 0.004878470008352809, - "direct_hemispherical": 0.6319900420206666 + "direct_hemispherical": 0.6316049110224699 }, "transmittance": { - "diffuse_diffuse": 0.21706659242210324, - "direct_diffuse": 0.21646504999486935, + "diffuse_diffuse": 0.21707993647343796, + "direct_diffuse": 0.21656064199553315, "direct_direct": 0.0015637479988638734, - "direct_hemispherical": 0.21802879799373323 + "direct_hemispherical": 0.21812438999439704 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.6324799367934613, - "direct_diffuse": 0.62750050104783, + "diffuse_diffuse": 0.6324942146212231, + "direct_diffuse": 0.6272935130820956, "direct_direct": 0.0047296649958229135, - "direct_hemispherical": 0.6322301660436529 + "direct_hemispherical": 0.6320231780779185 }, "transmittance": { - "diffuse_diffuse": 0.2170259295253041, - "direct_diffuse": 0.21458492799550863, + "diffuse_diffuse": 0.21703838845877144, + "direct_diffuse": 0.21444184799561128, "direct_direct": 0.0017001960009707133, - "direct_hemispherical": 0.21628512399647934 + "direct_hemispherical": 0.216142043996582 } } } diff --git a/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=0_phi=0/tdw.json b/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=0_phi=0/tdw.json index b5c2e881..542d1e85 100644 --- a/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=0_phi=0/tdw.json +++ b/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=0_phi=0/tdw.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12064719724184933, - "heat_direct": 0.12123422931869103, - "total_diffuse": 0.12064719724184933, - "total_direct": 0.12123422931869103 + "heat_diffuse": 0.12063741329421884, + "heat_direct": 0.12089933469279043, + "total_diffuse": 0.12063741329421884, + "total_direct": 0.12089933469279043 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.1207180723085374, - "heat_direct": 0.1210914505545142, - "total_diffuse": 0.1207180723085374, - "total_direct": 0.1210914505545142 + "heat_diffuse": 0.12070212043252372, + "heat_direct": 0.1214240882353179, + "total_diffuse": 0.12070212043252372, + "total_direct": 0.1214240882353179 } } } @@ -26,30 +26,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.6556257250524883, - "direct_diffuse": 0.6494747041127217, + "diffuse_diffuse": 0.6556313228520011, + "direct_diffuse": 0.6497739574870529, "direct_direct": 0.005034852270619456, - "direct_hemispherical": 0.6545095563833412 + "direct_hemispherical": 0.6548088097576724 }, "transmittance": { - "diffuse_diffuse": 0.22372707770565795, - "direct_diffuse": 0.22252740821514827, + "diffuse_diffuse": 0.2237312638537752, + "direct_diffuse": 0.2225630494667175, "direct_direct": 0.0017288060828200902, - "direct_hemispherical": 0.22425621429796835 + "direct_hemispherical": 0.2242918555495376 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.6556537195223187, - "direct_diffuse": 0.6502825092791715, + "diffuse_diffuse": 0.6556688472901532, + "direct_diffuse": 0.6502167930744647, "direct_direct": 0.004958495817377263, - "direct_hemispherical": 0.6552410050965488 + "direct_hemispherical": 0.655175288891842 }, "transmittance": { - "diffuse_diffuse": 0.22362820816914997, - "direct_diffuse": 0.22198762734575958, + "diffuse_diffuse": 0.22362903227732867, + "direct_diffuse": 0.22172070586966283, "direct_direct": 0.001679917003177267, - "direct_hemispherical": 0.22366754434893685 + "direct_hemispherical": 0.2234006228728401 } } } diff --git a/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=0_phi=0/tkr.json b/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=0_phi=0/tkr.json index 6e034bfc..9963a44b 100644 --- a/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=0_phi=0/tkr.json +++ b/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=0_phi=0/tkr.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.13136910168342802, - "heat_direct": 0.1315861209540854, - "total_diffuse": 0.13136910168342802, - "total_direct": 0.1315861209540854 + "heat_diffuse": 0.13136168703093368, + "heat_direct": 0.13147608752391304, + "total_diffuse": 0.13136168703093368, + "total_direct": 0.13147608752391304 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.1314405582751467, - "heat_direct": 0.13203619214992962, - "total_diffuse": 0.1314405582751467, - "total_direct": 0.13203619214992962 + "heat_diffuse": 0.13142072271623348, + "heat_direct": 0.13237510655021367, + "total_diffuse": 0.13142072271623348, + "total_direct": 0.13237510655021367 } } } @@ -26,30 +26,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.647302289605512, - "direct_diffuse": 0.641421645411818, + "diffuse_diffuse": 0.6473022203101054, + "direct_diffuse": 0.6414744490714491, "direct_direct": 0.004978538354833462, - "direct_hemispherical": 0.6464001837666514 + "direct_hemispherical": 0.6464529874262825 }, "transmittance": { - "diffuse_diffuse": 0.2213286087110577, - "direct_diffuse": 0.22034432731240997, + "diffuse_diffuse": 0.22133609265895754, + "direct_diffuse": 0.22040155708295112, "direct_direct": 0.0016693679668535943, - "direct_hemispherical": 0.22201369527926357 + "direct_hemispherical": 0.22207092504980472 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.6473087420925139, - "direct_diffuse": 0.6420786115072618, + "diffuse_diffuse": 0.647323563793325, + "direct_diffuse": 0.6419620227423415, "direct_direct": 0.00487609286817143, - "direct_hemispherical": 0.6469547043754332 + "direct_hemispherical": 0.646838115610513 }, "transmittance": { - "diffuse_diffuse": 0.221250699632336, - "direct_diffuse": 0.2193218839183607, + "diffuse_diffuse": 0.22125571349043957, + "direct_diffuse": 0.21909955828299688, "direct_direct": 0.001687219556276398, - "direct_hemispherical": 0.2210091034746371 + "direct_hemispherical": 0.22078677783927328 } } } diff --git a/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=0_phi=0/tuv.json b/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=0_phi=0/tuv.json index 885db835..01931c6a 100644 --- a/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=0_phi=0/tuv.json +++ b/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=0_phi=0/tuv.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.13644312666723477, - "heat_direct": 0.13648504139064144, - "total_diffuse": 0.13644312666723477, - "total_direct": 0.13648504139064144 + "heat_diffuse": 0.13643683325796546, + "heat_direct": 0.13648142108243172, + "total_diffuse": 0.13643683325796546, + "total_direct": 0.13648142108243172 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.13651485845936676, - "heat_direct": 0.13721567239982724, - "total_diffuse": 0.13651485845936676, - "total_direct": 0.13721567239982724 + "heat_diffuse": 0.13649318498964488, + "heat_direct": 0.13755755718952598, + "total_diffuse": 0.13649318498964488, + "total_direct": 0.13755755718952598 } } } @@ -26,30 +26,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.6433633140588499, - "direct_diffuse": 0.6376106227276394, + "diffuse_diffuse": 0.6433605628722399, + "direct_diffuse": 0.6375467967328604, "direct_direct": 0.0049518884049863, - "direct_hemispherical": 0.6425625111326256 + "direct_hemispherical": 0.6424986851378467 }, "transmittance": { - "diffuse_diffuse": 0.22019355927391648, - "direct_diffuse": 0.21931120795357584, + "diffuse_diffuse": 0.22020260386979526, + "direct_diffuse": 0.21937865425656455, "direct_direct": 0.0016412395231570757, - "direct_hemispherical": 0.2209524474767329 + "direct_hemispherical": 0.22101989377972162 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.6433595720361329, - "direct_diffuse": 0.638196205868778, + "diffuse_diffuse": 0.6433742488940427, + "direct_diffuse": 0.6380555422165166, "direct_direct": 0.00483709656622825, - "direct_hemispherical": 0.6430333024350062 + "direct_hemispherical": 0.6428926387827448 }, "transmittance": { - "diffuse_diffuse": 0.22012556950449924, - "direct_diffuse": 0.2180603497548416, + "diffuse_diffuse": 0.22013256611631052, + "direct_diffuse": 0.21785912861740406, "direct_direct": 0.0016906754103247592, - "direct_hemispherical": 0.21975102516516634 + "direct_hemispherical": 0.2195498040277288 } } } diff --git a/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=15_phi=270/photopic.json b/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=15_phi=270/photopic.json index ac796096..a33ba9e3 100644 --- a/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=15_phi=270/photopic.json +++ b/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=15_phi=270/photopic.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.11484323834705497, - "heat_direct": 0.11499706796398686, - "total_diffuse": 0.11484323834705497, - "total_direct": 0.11499706796398686 + "heat_diffuse": 0.11483217185753525, + "heat_direct": 0.11513388790836854, + "total_diffuse": 0.11483217185753525, + "total_direct": 0.11513388790836854 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.11491379862382942, - "heat_direct": 0.1139153519691328, - "total_diffuse": 0.11491379862382942, - "total_direct": 0.1139153519691328 + "heat_diffuse": 0.11489994905492291, + "heat_direct": 0.11394704598673122, + "total_diffuse": 0.11489994905492291, + "total_direct": 0.11394704598673122 } } } @@ -26,30 +26,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.6601313497258862, - "direct_diffuse": 0.6547766720290553, + "diffuse_diffuse": 0.660140015225373, + "direct_diffuse": 0.6548624660819372, "direct_direct": 0.004857128998074448, - "direct_hemispherical": 0.6596338010271298 + "direct_hemispherical": 0.6597195950800117 }, "transmittance": { - "diffuse_diffuse": 0.2250254119270577, - "direct_diffuse": 0.2237244860096209, + "diffuse_diffuse": 0.22502781291709092, + "direct_diffuse": 0.22350187201235733, "direct_direct": 0.0016446449992627474, - "direct_hemispherical": 0.22536913100888364 + "direct_hemispherical": 0.22514651701162008 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.6601710052568015, - "direct_diffuse": 0.6549166820401306, + "diffuse_diffuse": 0.6601862987041979, + "direct_diffuse": 0.6546676080223888, "direct_direct": 0.004711397998191427, - "direct_hemispherical": 0.6596280800383221 + "direct_hemispherical": 0.6593790060205802 }, "transmittance": { - "diffuse_diffuse": 0.22491519611936414, - "direct_diffuse": 0.22479190299333485, + "diffuse_diffuse": 0.2249137522408734, + "direct_diffuse": 0.22500928299347822, "direct_direct": 0.001664664999210556, - "direct_hemispherical": 0.2264565679925454 + "direct_hemispherical": 0.22667394799268878 } } } diff --git a/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=15_phi=270/solar.json b/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=15_phi=270/solar.json index aa16ab37..c1bf05b5 100644 --- a/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=15_phi=270/solar.json +++ b/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=15_phi=270/solar.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.15042164373484068, - "heat_direct": 0.1506642569749379, - "total_diffuse": 0.15042164373484068, - "total_direct": 0.1506642569749379 + "heat_diffuse": 0.15041843925745635, + "heat_direct": 0.15075577096404383, + "total_diffuse": 0.15041843925745635, + "total_direct": 0.15075577096404383 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.150494133681236, - "heat_direct": 0.1503450591254264, - "total_diffuse": 0.150494133681236, - "total_direct": 0.1503450591254264 + "heat_diffuse": 0.1504673969200072, + "heat_direct": 0.15046200817598815, + "total_diffuse": 0.1504673969200072, + "total_direct": 0.15046200817598815 } } } @@ -26,30 +26,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.6325117638430522, - "direct_diffuse": 0.6273534710338183, + "diffuse_diffuse": 0.6325016242691012, + "direct_diffuse": 0.6273113840458947, "direct_direct": 0.004600241995040793, - "direct_hemispherical": 0.6319537130288592 + "direct_hemispherical": 0.6319116260409355 }, "transmittance": { - "diffuse_diffuse": 0.21706659242210324, - "direct_diffuse": 0.21573438199683176, + "diffuse_diffuse": 0.21707993647343796, + "direct_diffuse": 0.21568495499564938, "direct_direct": 0.0016476479993715334, - "direct_hemispherical": 0.2173820299962033 + "direct_hemispherical": 0.2173326029950209 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.6324799367934613, - "direct_diffuse": 0.6275355398783304, + "diffuse_diffuse": 0.6324942146212231, + "direct_diffuse": 0.627355618826279, "direct_direct": 0.0046091729943950645, - "direct_hemispherical": 0.6321447128727256 + "direct_hemispherical": 0.6319647918206741 }, "transmittance": { - "diffuse_diffuse": 0.2170259295253041, - "direct_diffuse": 0.21589761500296809, + "diffuse_diffuse": 0.21703838845877144, + "direct_diffuse": 0.21596058700445794, "direct_direct": 0.0016126129988797973, - "direct_hemispherical": 0.21751022800184788 + "direct_hemispherical": 0.21757320000333774 } } } diff --git a/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=15_phi=270/tdw.json b/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=15_phi=270/tdw.json index 1406b1a0..887a0c0a 100644 --- a/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=15_phi=270/tdw.json +++ b/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=15_phi=270/tdw.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12064719724184933, - "heat_direct": 0.12081551026504302, - "total_diffuse": 0.12064719724184933, - "total_direct": 0.12081551026504302 + "heat_diffuse": 0.12063741329421884, + "heat_direct": 0.12094493938065537, + "total_diffuse": 0.12063741329421884, + "total_direct": 0.12094493938065537 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.1207180723085374, - "heat_direct": 0.11985818500450847, - "total_diffuse": 0.1207180723085374, - "total_direct": 0.11985818500450847 + "heat_diffuse": 0.12070212043252372, + "heat_direct": 0.11990378680413091, + "total_diffuse": 0.12070212043252372, + "total_direct": 0.11990378680413091 } } } @@ -26,30 +26,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.6556257250524883, - "direct_diffuse": 0.6503030839183676, + "diffuse_diffuse": 0.6556313228520011, + "direct_diffuse": 0.6503680165443201, "direct_direct": 0.004815222634088667, - "direct_hemispherical": 0.6551183065524562 + "direct_hemispherical": 0.6551832391784087 }, "transmittance": { - "diffuse_diffuse": 0.22372707770565795, - "direct_diffuse": 0.22242104829930479, + "diffuse_diffuse": 0.2237312638537752, + "direct_diffuse": 0.22222668655773994, "direct_direct": 0.001645134883196625, - "direct_hemispherical": 0.2240661831825014 + "direct_hemispherical": 0.22387182144093656 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.6556537195223187, - "direct_diffuse": 0.6504499550503324, + "diffuse_diffuse": 0.6556688472901532, + "direct_diffuse": 0.6502121620601111, "direct_direct": 0.004694721879248277, - "direct_hemispherical": 0.6551446769295807 + "direct_hemispherical": 0.6549068839393594 }, "transmittance": { - "diffuse_diffuse": 0.22362820816914997, - "direct_diffuse": 0.2233409643879674, + "diffuse_diffuse": 0.22362903227732867, + "direct_diffuse": 0.2235331555785662, "direct_direct": 0.0016561736779436603, - "direct_hemispherical": 0.22499713806591107 + "direct_hemispherical": 0.22518932925650986 } } } diff --git a/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=15_phi=270/tkr.json b/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=15_phi=270/tkr.json index b402ec13..1b84bac8 100644 --- a/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=15_phi=270/tkr.json +++ b/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=15_phi=270/tkr.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.13136910168342802, - "heat_direct": 0.131564170529801, - "total_diffuse": 0.13136910168342802, - "total_direct": 0.131564170529801 + "heat_diffuse": 0.13136168703093368, + "heat_direct": 0.13167994624757814, + "total_diffuse": 0.13136168703093368, + "total_direct": 0.13167994624757814 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.1314405582751467, - "heat_direct": 0.13083663765597484, - "total_diffuse": 0.1314405582751467, - "total_direct": 0.13083663765597484 + "heat_diffuse": 0.13142072271623348, + "heat_direct": 0.13090793190321068, + "total_diffuse": 0.13142072271623348, + "total_direct": 0.13090793190321068 } } } @@ -26,30 +26,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.647302289605512, - "direct_diffuse": 0.6420388310001046, + "diffuse_diffuse": 0.6473022203101054, + "direct_diffuse": 0.6420652254092803, "direct_direct": 0.004737807194335543, - "direct_hemispherical": 0.6467766381944402 + "direct_hemispherical": 0.6468030326036159 }, "transmittance": { - "diffuse_diffuse": 0.2213286087110577, - "direct_diffuse": 0.2200131514087708, + "diffuse_diffuse": 0.22133609265895754, + "direct_diffuse": 0.2198709812818179, "direct_direct": 0.0016460398669881557, - "direct_hemispherical": 0.22165919127575898 + "direct_hemispherical": 0.22151702114880606 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.6473087420925139, - "direct_diffuse": 0.6421983769776154, + "diffuse_diffuse": 0.647323563793325, + "direct_diffuse": 0.6419814239177367, "direct_direct": 0.004663915363039967, - "direct_hemispherical": 0.6468622923406554 + "direct_hemispherical": 0.6466453392807767 }, "transmittance": { - "diffuse_diffuse": 0.221250699632336, - "direct_diffuse": 0.22066058271067795, + "diffuse_diffuse": 0.22125571349043957, + "direct_diffuse": 0.22080624152332065, "direct_direct": 0.001640487292692369, - "direct_hemispherical": 0.22230107000337032 + "direct_hemispherical": 0.22244672881601302 } } } diff --git a/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=15_phi=270/tuv.json b/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=15_phi=270/tuv.json index c334eb1b..5671cec9 100644 --- a/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=15_phi=270/tuv.json +++ b/test/expected_results/CS03_genBSDF/condensed_spectrum/theta=15_phi=270/tuv.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.13644312666723477, - "heat_direct": 0.13665085741672517, - "total_diffuse": 0.13644312666723477, - "total_direct": 0.13665085741672517 + "heat_diffuse": 0.13643683325796546, + "heat_direct": 0.1367601718120659, + "total_diffuse": 0.13643683325796546, + "total_direct": 0.1367601718120659 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.13651485845936676, - "heat_direct": 0.13603207129750775, - "total_diffuse": 0.13651485845936676, - "total_direct": 0.13603207129750775 + "heat_diffuse": 0.13649318498964488, + "heat_direct": 0.1361155242169082, + "total_diffuse": 0.13649318498964488, + "total_direct": 0.1361155242169082 } } } @@ -26,30 +26,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.6433633140588499, - "direct_diffuse": 0.6381278629432404, + "diffuse_diffuse": 0.6433605628722399, + "direct_diffuse": 0.6381360195593242, "direct_direct": 0.0047011711771447464, - "direct_hemispherical": 0.6428290341203852 + "direct_hemispherical": 0.6428371907364689 }, "transmittance": { - "diffuse_diffuse": 0.22019355927391648, - "direct_diffuse": 0.21887364032213777, + "diffuse_diffuse": 0.22020260386979526, + "direct_diffuse": 0.2187561693107132, "direct_direct": 0.0016464681407517565, - "direct_hemispherical": 0.22052010846288952 + "direct_hemispherical": 0.22040263745146496 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.6433595720361329, - "direct_diffuse": 0.6382934071539301, + "diffuse_diffuse": 0.6433742488940427, + "direct_diffuse": 0.6380863163650498, "direct_direct": 0.004649336513381614, - "direct_hemispherical": 0.6429427436673117 + "direct_hemispherical": 0.6427356528784314 }, "transmittance": { - "diffuse_diffuse": 0.22012556950449924, - "direct_diffuse": 0.21939212115416912, + "diffuse_diffuse": 0.22013256611631052, + "direct_diffuse": 0.2195157590236491, "direct_direct": 0.0016330638810116962, - "direct_hemispherical": 0.22102518503518082 + "direct_hemispherical": 0.22114882290466079 } } } diff --git a/test/expected_results/CS03_genBSDF/full_spectrum/theta=0_phi=0/photopic.json b/test/expected_results/CS03_genBSDF/full_spectrum/theta=0_phi=0/photopic.json index abc01f24..4e1b908d 100644 --- a/test/expected_results/CS03_genBSDF/full_spectrum/theta=0_phi=0/photopic.json +++ b/test/expected_results/CS03_genBSDF/full_spectrum/theta=0_phi=0/photopic.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.11484323834705497, - "heat_direct": 0.11563056498251204, - "total_diffuse": 0.11484323834705497, - "total_direct": 0.11563056498251204 + "heat_diffuse": 0.11483217185753525, + "heat_direct": 0.11517394896428299, + "total_diffuse": 0.11483217185753525, + "total_direct": 0.11517394896428299 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.11491379862382942, - "heat_direct": 0.11516686591751635, - "total_diffuse": 0.11491379862382942, - "total_direct": 0.11516686591751635 + "heat_diffuse": 0.11489994905492291, + "heat_direct": 0.1154961058976545, + "total_diffuse": 0.11489994905492291, + "total_direct": 0.1154961058976545 } } } @@ -26,30 +26,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.6601313497258862, - "direct_diffuse": 0.6538339690112369, + "diffuse_diffuse": 0.660140015225373, + "direct_diffuse": 0.6542666300298489, "direct_direct": 0.005065336001770739, - "direct_hemispherical": 0.6588993050130076 + "direct_hemispherical": 0.6593319660316196 }, "transmittance": { - "diffuse_diffuse": 0.2250254119270577, - "direct_diffuse": 0.2237091490049996, + "diffuse_diffuse": 0.22502781291709092, + "direct_diffuse": 0.22373310400461655, "direct_direct": 0.0017609809994809558, - "direct_hemispherical": 0.22547013000448057 + "direct_hemispherical": 0.2254940850040975 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.6601710052568015, - "direct_diffuse": 0.6547234260682276, + "diffuse_diffuse": 0.6601862987041979, + "direct_diffuse": 0.65468524809145, "direct_direct": 0.0050031020095520195, - "direct_hemispherical": 0.6597265280777797 + "direct_hemispherical": 0.659688350101002 }, "transmittance": { - "diffuse_diffuse": 0.22491519611936414, - "direct_diffuse": 0.2234306420043022, + "diffuse_diffuse": 0.2249137522408734, + "direct_diffuse": 0.22313958000094153, "direct_direct": 0.0016759640004019338, - "direct_hemispherical": 0.22510660600470414 + "direct_hemispherical": 0.22481554400134346 } } } diff --git a/test/expected_results/CS03_genBSDF/full_spectrum/theta=0_phi=0/solar.json b/test/expected_results/CS03_genBSDF/full_spectrum/theta=0_phi=0/solar.json index 2378a025..6917eedd 100644 --- a/test/expected_results/CS03_genBSDF/full_spectrum/theta=0_phi=0/solar.json +++ b/test/expected_results/CS03_genBSDF/full_spectrum/theta=0_phi=0/solar.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.15042164373484068, - "heat_direct": 0.14998115998560033, - "total_diffuse": 0.15042164373484068, - "total_direct": 0.14998115998560033 + "heat_diffuse": 0.15041843925745635, + "heat_direct": 0.15027069898313325, + "total_diffuse": 0.15041843925745635, + "total_direct": 0.15027069898313325 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.150494133681236, - "heat_direct": 0.15148470995986765, - "total_diffuse": 0.150494133681236, - "total_direct": 0.15148470995986765 + "heat_diffuse": 0.1504673969200072, + "heat_direct": 0.15183477792549924, + "total_diffuse": 0.1504673969200072, + "total_direct": 0.15183477792549924 } } } @@ -26,30 +26,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.6325117638430522, - "direct_diffuse": 0.6271115720123137, + "diffuse_diffuse": 0.6325016242691012, + "direct_diffuse": 0.626726441014117, "direct_direct": 0.004878470008352809, - "direct_hemispherical": 0.6319900420206666 + "direct_hemispherical": 0.6316049110224699 }, "transmittance": { - "diffuse_diffuse": 0.21706659242210324, - "direct_diffuse": 0.21646504999486935, + "diffuse_diffuse": 0.21707993647343796, + "direct_diffuse": 0.21656064199553315, "direct_direct": 0.0015637479988638734, - "direct_hemispherical": 0.21802879799373323 + "direct_hemispherical": 0.21812438999439704 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.6324799367934613, - "direct_diffuse": 0.62750050104783, + "diffuse_diffuse": 0.6324942146212231, + "direct_diffuse": 0.6272935130820956, "direct_direct": 0.0047296649958229135, - "direct_hemispherical": 0.6322301660436529 + "direct_hemispherical": 0.6320231780779185 }, "transmittance": { - "diffuse_diffuse": 0.2170259295253041, - "direct_diffuse": 0.21458492799550863, + "diffuse_diffuse": 0.21703838845877144, + "direct_diffuse": 0.21444184799561128, "direct_direct": 0.0017001960009707133, - "direct_hemispherical": 0.21628512399647934 + "direct_hemispherical": 0.216142043996582 } } } diff --git a/test/expected_results/CS03_genBSDF/full_spectrum/theta=0_phi=0/tdw.json b/test/expected_results/CS03_genBSDF/full_spectrum/theta=0_phi=0/tdw.json index 08dd4a48..28ae9fe8 100644 --- a/test/expected_results/CS03_genBSDF/full_spectrum/theta=0_phi=0/tdw.json +++ b/test/expected_results/CS03_genBSDF/full_spectrum/theta=0_phi=0/tdw.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12248872463298088, - "heat_direct": 0.12301220561949437, - "total_diffuse": 0.12248872463298088, - "total_direct": 0.12301220561949437 + "heat_diffuse": 0.12247934762069618, + "heat_direct": 0.12271593174920599, + "total_diffuse": 0.12247934762069618, + "total_direct": 0.12271593174920599 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12255969957877891, - "heat_direct": 0.12297125106445486, - "total_diffuse": 0.12255969957877891, - "total_direct": 0.12297125106445486 + "heat_diffuse": 0.12254308066562869, + "heat_direct": 0.1233049667954233, + "total_diffuse": 0.12254308066562869, + "total_direct": 0.1233049667954233 } } } @@ -26,30 +26,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.6541961437269507, - "direct_diffuse": 0.6480915610096558, + "diffuse_diffuse": 0.6542007681816091, + "direct_diffuse": 0.6483484857190908, "direct_direct": 0.0050251801439010315, - "direct_hemispherical": 0.6531167411535569 + "direct_hemispherical": 0.6533736658629918 }, "transmittance": { - "diffuse_diffuse": 0.22331513164006894, - "direct_diffuse": 0.2221524558639726, + "diffuse_diffuse": 0.22331988419769547, + "direct_diffuse": 0.22219180502482574, "direct_direct": 0.0017185973629768978, - "direct_hemispherical": 0.22387105322694947 + "direct_hemispherical": 0.22391040238780263 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.6542204382802509, - "direct_diffuse": 0.648873458998661, + "diffuse_diffuse": 0.6542355134799235, + "direct_diffuse": 0.6487990052405089, "direct_direct": 0.004944342801101152, - "direct_hemispherical": 0.6538178017997621 + "direct_hemispherical": 0.65374334804161 }, "transmittance": { - "diffuse_diffuse": 0.22321986214097356, - "direct_diffuse": 0.22152977589166084, + "diffuse_diffuse": 0.2232214058544512, + "direct_diffuse": 0.22127051391884428, "direct_direct": 0.0016811712441221027, - "direct_hemispherical": 0.22321094713578293 + "direct_hemispherical": 0.22295168516296637 } } } diff --git a/test/expected_results/CS03_genBSDF/full_spectrum/theta=0_phi=0/tkr.json b/test/expected_results/CS03_genBSDF/full_spectrum/theta=0_phi=0/tkr.json index f3994d0e..5ba89b29 100644 --- a/test/expected_results/CS03_genBSDF/full_spectrum/theta=0_phi=0/tkr.json +++ b/test/expected_results/CS03_genBSDF/full_spectrum/theta=0_phi=0/tkr.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.13661069339895776, - "heat_direct": 0.1366468253962671, - "total_diffuse": 0.13661069339895776, - "total_direct": 0.1366468253962671 + "heat_diffuse": 0.13660443701809558, + "heat_direct": 0.13664671931968153, + "total_diffuse": 0.13660443701809558, + "total_direct": 0.13664671931968153 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.1366824342794238, - "heat_direct": 0.1373867217305399, - "total_diffuse": 0.1366824342794238, - "total_direct": 0.1373867217305399 + "heat_diffuse": 0.13666070011376374, + "heat_direct": 0.13772870461562603, + "total_diffuse": 0.13666070011376374, + "total_direct": 0.13772870461562603 } } } @@ -26,30 +26,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.6432332316763573, - "direct_diffuse": 0.6374847659142123, + "diffuse_diffuse": 0.6432303919218468, + "direct_diffuse": 0.6374170882927516, "direct_direct": 0.004951008305851842, - "direct_hemispherical": 0.6424357742200641 + "direct_hemispherical": 0.6423680965986034 }, "transmittance": { - "diffuse_diffuse": 0.2201560749246815, - "direct_diffuse": 0.2192770897860477, + "diffuse_diffuse": 0.22016517106005445, + "direct_diffuse": 0.21934487348409407, "direct_direct": 0.001640310597620894, - "direct_hemispherical": 0.2209174003836686 + "direct_hemispherical": 0.22098518408171497 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.6432291529858767, - "direct_diffuse": 0.6380679916746934, + "diffuse_diffuse": 0.6432438250604338, + "direct_diffuse": 0.6379265329632433, "direct_direct": 0.004835808735977755, - "direct_hemispherical": 0.6429038004106712 + "direct_hemispherical": 0.6427623416992211 }, "transmittance": { - "diffuse_diffuse": 0.2200884127347009, - "direct_diffuse": 0.21801868832088872, + "diffuse_diffuse": 0.22009547482580363, + "direct_diffuse": 0.2178181641472528, "direct_direct": 0.0016907895379000158, - "direct_hemispherical": 0.21970947785878875 + "direct_hemispherical": 0.21950895368515283 } } } diff --git a/test/expected_results/CS03_genBSDF/full_spectrum/theta=0_phi=0/tuv.json b/test/expected_results/CS03_genBSDF/full_spectrum/theta=0_phi=0/tuv.json index f4bf5e1a..c003d159 100644 --- a/test/expected_results/CS03_genBSDF/full_spectrum/theta=0_phi=0/tuv.json +++ b/test/expected_results/CS03_genBSDF/full_spectrum/theta=0_phi=0/tuv.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.14352117825574714, - "heat_direct": 0.1433188294954739, - "total_diffuse": 0.14352117825574714, - "total_direct": 0.1433188294954739 + "heat_diffuse": 0.14351644893365026, + "heat_direct": 0.1434636510198035, + "total_diffuse": 0.14351644893365026, + "total_direct": 0.1434636510198035 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.14359329394088888, - "heat_direct": 0.1444408296521969, - "total_diffuse": 0.14359329394088888, - "total_direct": 0.1444408296521969 + "heat_diffuse": 0.1435690566628373, + "heat_direct": 0.1447868580102823, + "total_diffuse": 0.1435690566628373, + "total_direct": 0.1447868580102823 } } } @@ -26,30 +26,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.6378686087284325, - "direct_diffuse": 0.6322944062624679, + "diffuse_diffuse": 0.6378621164163155, + "direct_diffuse": 0.6320678868017913, "direct_direct": 0.004914712845060705, - "direct_hemispherical": 0.6372091191075286 + "direct_hemispherical": 0.636982599646852 }, "transmittance": { - "diffuse_diffuse": 0.2186102130158248, - "direct_diffuse": 0.217870049870544, + "diffuse_diffuse": 0.21862143465003833, + "direct_diffuse": 0.21795174780689094, "direct_direct": 0.0016020015264534891, - "direct_hemispherical": 0.2194720513969975 + "direct_hemispherical": 0.21955374933334443 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.6378506457931424, - "direct_diffuse": 0.6327804131826135, + "diffuse_diffuse": 0.6378651206012957, + "direct_diffuse": 0.6326061660743917, "direct_direct": 0.004782698364052279, - "direct_hemispherical": 0.6375631115466658 + "direct_hemispherical": 0.637388864438444 }, "transmittance": { - "diffuse_diffuse": 0.21855606026597083, - "direct_diffuse": 0.2163005626196666, + "diffuse_diffuse": 0.21856582273586933, + "direct_diffuse": 0.21612878136980315, "direct_direct": 0.0016954961814708868, - "direct_hemispherical": 0.21799605880113748 + "direct_hemispherical": 0.21782427755127404 } } } diff --git a/test/expected_results/CS03_genBSDF/full_spectrum/theta=15_phi=270/photopic.json b/test/expected_results/CS03_genBSDF/full_spectrum/theta=15_phi=270/photopic.json index ac796096..a33ba9e3 100644 --- a/test/expected_results/CS03_genBSDF/full_spectrum/theta=15_phi=270/photopic.json +++ b/test/expected_results/CS03_genBSDF/full_spectrum/theta=15_phi=270/photopic.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.11484323834705497, - "heat_direct": 0.11499706796398686, - "total_diffuse": 0.11484323834705497, - "total_direct": 0.11499706796398686 + "heat_diffuse": 0.11483217185753525, + "heat_direct": 0.11513388790836854, + "total_diffuse": 0.11483217185753525, + "total_direct": 0.11513388790836854 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.11491379862382942, - "heat_direct": 0.1139153519691328, - "total_diffuse": 0.11491379862382942, - "total_direct": 0.1139153519691328 + "heat_diffuse": 0.11489994905492291, + "heat_direct": 0.11394704598673122, + "total_diffuse": 0.11489994905492291, + "total_direct": 0.11394704598673122 } } } @@ -26,30 +26,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.6601313497258862, - "direct_diffuse": 0.6547766720290553, + "diffuse_diffuse": 0.660140015225373, + "direct_diffuse": 0.6548624660819372, "direct_direct": 0.004857128998074448, - "direct_hemispherical": 0.6596338010271298 + "direct_hemispherical": 0.6597195950800117 }, "transmittance": { - "diffuse_diffuse": 0.2250254119270577, - "direct_diffuse": 0.2237244860096209, + "diffuse_diffuse": 0.22502781291709092, + "direct_diffuse": 0.22350187201235733, "direct_direct": 0.0016446449992627474, - "direct_hemispherical": 0.22536913100888364 + "direct_hemispherical": 0.22514651701162008 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.6601710052568015, - "direct_diffuse": 0.6549166820401306, + "diffuse_diffuse": 0.6601862987041979, + "direct_diffuse": 0.6546676080223888, "direct_direct": 0.004711397998191427, - "direct_hemispherical": 0.6596280800383221 + "direct_hemispherical": 0.6593790060205802 }, "transmittance": { - "diffuse_diffuse": 0.22491519611936414, - "direct_diffuse": 0.22479190299333485, + "diffuse_diffuse": 0.2249137522408734, + "direct_diffuse": 0.22500928299347822, "direct_direct": 0.001664664999210556, - "direct_hemispherical": 0.2264565679925454 + "direct_hemispherical": 0.22667394799268878 } } } diff --git a/test/expected_results/CS03_genBSDF/full_spectrum/theta=15_phi=270/solar.json b/test/expected_results/CS03_genBSDF/full_spectrum/theta=15_phi=270/solar.json index aa16ab37..c1bf05b5 100644 --- a/test/expected_results/CS03_genBSDF/full_spectrum/theta=15_phi=270/solar.json +++ b/test/expected_results/CS03_genBSDF/full_spectrum/theta=15_phi=270/solar.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.15042164373484068, - "heat_direct": 0.1506642569749379, - "total_diffuse": 0.15042164373484068, - "total_direct": 0.1506642569749379 + "heat_diffuse": 0.15041843925745635, + "heat_direct": 0.15075577096404383, + "total_diffuse": 0.15041843925745635, + "total_direct": 0.15075577096404383 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.150494133681236, - "heat_direct": 0.1503450591254264, - "total_diffuse": 0.150494133681236, - "total_direct": 0.1503450591254264 + "heat_diffuse": 0.1504673969200072, + "heat_direct": 0.15046200817598815, + "total_diffuse": 0.1504673969200072, + "total_direct": 0.15046200817598815 } } } @@ -26,30 +26,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.6325117638430522, - "direct_diffuse": 0.6273534710338183, + "diffuse_diffuse": 0.6325016242691012, + "direct_diffuse": 0.6273113840458947, "direct_direct": 0.004600241995040793, - "direct_hemispherical": 0.6319537130288592 + "direct_hemispherical": 0.6319116260409355 }, "transmittance": { - "diffuse_diffuse": 0.21706659242210324, - "direct_diffuse": 0.21573438199683176, + "diffuse_diffuse": 0.21707993647343796, + "direct_diffuse": 0.21568495499564938, "direct_direct": 0.0016476479993715334, - "direct_hemispherical": 0.2173820299962033 + "direct_hemispherical": 0.2173326029950209 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.6324799367934613, - "direct_diffuse": 0.6275355398783304, + "diffuse_diffuse": 0.6324942146212231, + "direct_diffuse": 0.627355618826279, "direct_direct": 0.0046091729943950645, - "direct_hemispherical": 0.6321447128727256 + "direct_hemispherical": 0.6319647918206741 }, "transmittance": { - "diffuse_diffuse": 0.2170259295253041, - "direct_diffuse": 0.21589761500296809, + "diffuse_diffuse": 0.21703838845877144, + "direct_diffuse": 0.21596058700445794, "direct_direct": 0.0016126129988797973, - "direct_hemispherical": 0.21751022800184788 + "direct_hemispherical": 0.21757320000333774 } } } diff --git a/test/expected_results/CS03_genBSDF/full_spectrum/theta=15_phi=270/tdw.json b/test/expected_results/CS03_genBSDF/full_spectrum/theta=15_phi=270/tdw.json index fd5fff3d..8e542e10 100644 --- a/test/expected_results/CS03_genBSDF/full_spectrum/theta=15_phi=270/tdw.json +++ b/test/expected_results/CS03_genBSDF/full_spectrum/theta=15_phi=270/tdw.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12248872463298088, - "heat_direct": 0.12266163306937992, - "total_diffuse": 0.12248872463298088, - "total_direct": 0.12266163306937992 + "heat_diffuse": 0.12247934762069618, + "heat_direct": 0.12278871716259142, + "total_diffuse": 0.12247934762069618, + "total_direct": 0.12278871716259142 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12255969957877891, - "heat_direct": 0.12174377551504466, - "total_diffuse": 0.12255969957877891, - "total_direct": 0.12174377551504466 + "heat_diffuse": 0.12254308066562869, + "heat_direct": 0.12179379008912179, + "total_diffuse": 0.12254308066562869, + "total_direct": 0.12179379008912179 } } } @@ -26,30 +26,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.6541961437269507, - "direct_diffuse": 0.6488836674145972, + "diffuse_diffuse": 0.6542007681816091, + "direct_diffuse": 0.6489419809569545, "direct_direct": 0.004801926241308945, - "direct_hemispherical": 0.6536855936559062 + "direct_hemispherical": 0.6537439071982635 }, "transmittance": { - "diffuse_diffuse": 0.22331513164006894, - "direct_diffuse": 0.2220074829571494, + "diffuse_diffuse": 0.22331988419769547, + "direct_diffuse": 0.22182208532158074, "direct_direct": 0.0016452903175646248, - "direct_hemispherical": 0.22365277327471403 + "direct_hemispherical": 0.22346737563914537 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.6542204382802509, - "direct_diffuse": 0.6490327154989293, + "diffuse_diffuse": 0.6542355134799235, + "direct_diffuse": 0.648798501845081, "direct_direct": 0.0046894307442888064, - "direct_hemispherical": 0.6537221462432181 + "direct_hemispherical": 0.6534879325893699 }, "transmittance": { - "diffuse_diffuse": 0.22321986214097356, - "direct_diffuse": 0.22288059875942529, + "diffuse_diffuse": 0.2232214058544512, + "direct_diffuse": 0.22306479783919644, "direct_direct": 0.0016534794823121388, - "direct_hemispherical": 0.22453407824173743 + "direct_hemispherical": 0.2247182773215086 } } } diff --git a/test/expected_results/CS03_genBSDF/full_spectrum/theta=15_phi=270/tkr.json b/test/expected_results/CS03_genBSDF/full_spectrum/theta=15_phi=270/tkr.json index f8a14c9b..fd93ac19 100644 --- a/test/expected_results/CS03_genBSDF/full_spectrum/theta=15_phi=270/tkr.json +++ b/test/expected_results/CS03_genBSDF/full_spectrum/theta=15_phi=270/tkr.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.13661069339895776, - "heat_direct": 0.1368188423004537, - "total_diffuse": 0.13661069339895776, - "total_direct": 0.1368188423004537 + "heat_diffuse": 0.13660443701809558, + "heat_direct": 0.13692794331436905, + "total_diffuse": 0.13660443701809558, + "total_direct": 0.13692794331436905 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.1366824342794238, - "heat_direct": 0.13620364747972485, - "total_diffuse": 0.1366824342794238, - "total_direct": 0.13620364747972485 + "heat_diffuse": 0.13666070011376374, + "heat_direct": 0.1362875019322205, + "total_diffuse": 0.13666070011376374, + "total_direct": 0.1362875019322205 } } } @@ -26,30 +26,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.6432332316763573, - "direct_diffuse": 0.6379987054918577, + "diffuse_diffuse": 0.6432303919218468, + "direct_diffuse": 0.638006259815404, "direct_direct": 0.0046999612939290355, - "direct_hemispherical": 0.6426986667857867 + "direct_hemispherical": 0.6427062211093331 }, "transmittance": { - "diffuse_diffuse": 0.2201560749246815, - "direct_diffuse": 0.2188360086295153, + "diffuse_diffuse": 0.22016517106005445, + "direct_diffuse": 0.21871935329205344, "direct_direct": 0.001646482284244364, - "direct_hemispherical": 0.22048249091375965 + "direct_hemispherical": 0.2203658355762978 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.6432291529858767, - "direct_diffuse": 0.6381644477907182, + "diffuse_diffuse": 0.6432438250604338, + "direct_diffuse": 0.6379576826976168, "direct_direct": 0.004648855055328623, - "direct_hemispherical": 0.6428133028460469 + "direct_hemispherical": 0.6426065377529454 }, "transmittance": { - "diffuse_diffuse": 0.2200884127347009, - "direct_diffuse": 0.21935023094708134, + "diffuse_diffuse": 0.22009547482580363, + "direct_diffuse": 0.21947314158768735, "direct_direct": 0.0016328187271471538, - "direct_hemispherical": 0.2209830496742285 + "direct_hemispherical": 0.2211059603148345 } } } diff --git a/test/expected_results/CS03_genBSDF/full_spectrum/theta=15_phi=270/tuv.json b/test/expected_results/CS03_genBSDF/full_spectrum/theta=15_phi=270/tuv.json index 805c191a..2b986312 100644 --- a/test/expected_results/CS03_genBSDF/full_spectrum/theta=15_phi=270/tuv.json +++ b/test/expected_results/CS03_genBSDF/full_spectrum/theta=15_phi=270/tuv.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.14352117825574714, - "heat_direct": 0.14374657182790004, - "total_diffuse": 0.14352117825574714, - "total_direct": 0.14374657182790004 + "heat_diffuse": 0.14351644893365026, + "heat_direct": 0.1438468729500147, + "total_diffuse": 0.14351644893365026, + "total_direct": 0.1438468729500147 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.14359329394088888, - "heat_direct": 0.14327948286067943, - "total_diffuse": 0.14359329394088888, - "total_direct": 0.14327948286067943 + "heat_diffuse": 0.1435690566628373, + "heat_direct": 0.1433798966167142, + "total_diffuse": 0.1435690566628373, + "total_direct": 0.1433798966167142 } } } @@ -26,30 +26,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.6378686087284325, - "direct_diffuse": 0.6326722268839287, + "diffuse_diffuse": 0.6378621164163155, + "direct_diffuse": 0.6326549425451933, "direct_direct": 0.004650065472994364, - "direct_hemispherical": 0.6373222923569231 + "direct_hemispherical": 0.6373050080181877 }, "transmittance": { - "diffuse_diffuse": 0.2186102130158248, - "direct_diffuse": 0.2172840702505257, + "diffuse_diffuse": 0.21862143465003833, + "direct_diffuse": 0.2172010534671465, "direct_direct": 0.001647065564651412, - "direct_hemispherical": 0.21893113581517712 + "direct_hemispherical": 0.2188481190317979 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.6378506457931424, - "direct_diffuse": 0.6328461383777936, + "diffuse_diffuse": 0.6378651206012957, + "direct_diffuse": 0.6326528050424393, "direct_direct": 0.0046289996308648135, - "direct_hemispherical": 0.6374751380086584 + "direct_hemispherical": 0.6372818046733041 }, "transmittance": { - "diffuse_diffuse": 0.21855606026597083, - "direct_diffuse": 0.21762267059693552, + "diffuse_diffuse": 0.21856582273586933, + "direct_diffuse": 0.217715590176255, "direct_direct": 0.0016227085337269956, - "direct_hemispherical": 0.21924537913066253 + "direct_hemispherical": 0.219338298709982 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/photopic.json b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/photopic.json index c9260cc7..0dee7b4f 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/photopic.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/photopic.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.24241746764915884, - "heat_direct": 0.2949555970575398, - "total_diffuse": 0.24241746764915884, - "total_direct": 0.2949555970575398 + "heat_diffuse": 0.4746861519029203, + "heat_direct": 0.5712342456272478, + "total_diffuse": 0.4746861519029203, + "total_direct": 0.5712342456272478 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.29072560517041485, - "heat_direct": 0.3159063237937177, - "total_diffuse": 0.29072560517041485, - "total_direct": 0.3159063237937177 + "heat_diffuse": 0.5985026280449074, + "heat_direct": 0.6448972311350123, + "total_diffuse": 0.5985026280449074, + "total_direct": 0.6448972311350123 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.030008531435580275, - "heat_direct": 0.02852585788186668, - "total_diffuse": 0.030008531435580275, - "total_direct": 0.02852585788186668 + "heat_diffuse": 0.025260107858548493, + "heat_direct": 0.022913886720798325, + "total_diffuse": 0.025260107858548493, + "total_direct": 0.022913886720798325 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.008713930925411971, - "heat_direct": 0.00707425710195211, - "total_diffuse": 0.008713930925411971, - "total_direct": 0.00707425710195211 + "heat_diffuse": 0.007253630367409144, + "heat_direct": 0.005587675683503066, + "total_diffuse": 0.007253630367409144, + "total_direct": 0.005587675683503066 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.41082281399177933, - "direct_diffuse": 0.28630590572955517, - "direct_direct": 0.0923409703358509, - "direct_hemispherical": 0.3786468760654061 + "diffuse_diffuse": 0.24139339139203392, + "direct_diffuse": 0.08988045498063164, + "direct_direct": 0.08531459749637212, + "direct_hemispherical": 0.17519505247700376 }, "transmittance": { - "diffuse_diffuse": 0.31675118692348253, - "direct_diffuse": 0.1367361584979353, - "direct_direct": 0.1611355104972524, - "direct_hemispherical": 0.2978716689951877 + "diffuse_diffuse": 0.25866034884649786, + "direct_diffuse": 0.07174118601095694, + "direct_direct": 0.15891562916399302, + "direct_hemispherical": 0.23065681517494996 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.38159121408853375, - "direct_diffuse": 0.38975773642951717, - "direct_direct": 0.014300244737526387, - "direct_hemispherical": 0.40405798116704356 + "diffuse_diffuse": 0.12786432864341127, + "direct_diffuse": 0.12137399754031816, + "direct_direct": 0.006253007142818061, + "direct_hemispherical": 0.12762700468313623 }, "transmittance": { - "diffuse_diffuse": 0.3189692498156404, - "direct_diffuse": 0.11181973928130931, - "direct_direct": 0.1611416986559778, - "direct_hemispherical": 0.2729614379372871 + "diffuse_diffuse": 0.2663794129442714, + "direct_diffuse": 0.06285475034227611, + "direct_direct": 0.1590333381560723, + "direct_hemispherical": 0.2218880884983484 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/solar.json b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/solar.json index 6569059e..38b80abf 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/solar.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/solar.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.25670208164067293, - "heat_direct": 0.31648339407081233, - "total_diffuse": 0.25670208164067293, - "total_direct": 0.31648339407081233 + "heat_diffuse": 0.44623395862966836, + "heat_direct": 0.5446314997201677, + "total_diffuse": 0.44623395862966836, + "total_direct": 0.5446314997201677 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.3423343900325044, - "heat_direct": 0.3713578901706912, - "total_diffuse": 0.3423343900325044, - "total_direct": 0.3713578901706912 + "heat_diffuse": 0.617417223758784, + "heat_direct": 0.6642248039032085, + "total_diffuse": 0.617417223758784, + "total_direct": 0.6642248039032085 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12713695173410697, - "heat_direct": 0.12204658275499351, - "total_diffuse": 0.12713695173410697, - "total_direct": 0.12204658275499351 + "heat_diffuse": 0.11131329000088495, + "heat_direct": 0.10294360276530894, + "total_diffuse": 0.11131329000088495, + "total_direct": 0.10294360276530894 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.03656466718925517, - "heat_direct": 0.029066882804970284, - "total_diffuse": 0.03656466718925517, - "total_direct": 0.029066882804970284 + "heat_diffuse": 0.0313926901978881, + "heat_direct": 0.023975685072686766, + "total_diffuse": 0.0313926901978881, + "total_direct": 0.023975685072686766 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.33983546838534423, - "direct_diffuse": 0.22060060290854236, - "direct_direct": 0.08257043527365535, - "direct_hemispherical": 0.3031710381821977 + "diffuse_diffuse": 0.21130631713589204, + "direct_diffuse": 0.06972158439704665, + "direct_direct": 0.07710117994314988, + "direct_hemispherical": 0.14682276434019653 }, "transmittance": { - "diffuse_diffuse": 0.276325498239876, - "direct_diffuse": 0.10950032521910744, - "direct_direct": 0.1487986597728891, - "direct_hemispherical": 0.25829898499199655 + "diffuse_diffuse": 0.2311464342335551, + "direct_diffuse": 0.05853953545508392, + "direct_direct": 0.14706259771924282, + "direct_hemispherical": 0.20560213317432674 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.3429460240094147, - "direct_diffuse": 0.35024449504986277, - "direct_direct": 0.01288383142427729, - "direct_hemispherical": 0.36312832647414006 + "diffuse_diffuse": 0.11419478682112257, + "direct_diffuse": 0.10866378569295133, + "direct_direct": 0.005637964985021243, + "direct_hemispherical": 0.11430175067797257 }, "transmittance": { - "diffuse_diffuse": 0.2781549187688259, - "direct_diffuse": 0.08764363801177999, - "direct_direct": 0.1488032625384183, - "direct_hemispherical": 0.2364469005501983 + "diffuse_diffuse": 0.23699529922220489, + "direct_diffuse": 0.05034355154496864, + "direct_direct": 0.14715420880116364, + "direct_hemispherical": 0.19749776034613228 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/tdw.json b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/tdw.json index e86e1760..42bd9e5c 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/tdw.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/tdw.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.32887609568525056, - "heat_direct": 0.4012614718419299, - "total_diffuse": 0.32887609568525056, - "total_direct": 0.4012614718419299 + "heat_diffuse": 0.4673811028803787, + "heat_direct": 0.5659777138382336, + "total_diffuse": 0.4673811028803787, + "total_direct": 0.5659777138382336 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.4839164989188816, - "heat_direct": 0.5183133807715261, - "total_diffuse": 0.4839164989188816, - "total_direct": 0.5183133807715261 + "heat_diffuse": 0.6735410509598664, + "heat_direct": 0.7193829354113684, + "total_diffuse": 0.6735410509598664, + "total_direct": 0.7193829354113684 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.11278728428877237, - "heat_direct": 0.11466904325299974, - "total_diffuse": 0.11278728428877237, - "total_direct": 0.11466904325299974 + "heat_diffuse": 0.10983021578412897, + "heat_direct": 0.11115617046962416, + "total_diffuse": 0.10983021578412897, + "total_direct": 0.11115617046962416 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.02847142336128432, - "heat_direct": 0.02155796699295561, - "total_diffuse": 0.02847142336128432, - "total_direct": 0.02155796699295561 + "heat_diffuse": 0.027480140041919742, + "heat_direct": 0.020785607627757826, + "total_diffuse": 0.027480140041919742, + "total_direct": 0.020785607627757826 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.30929766735299186, - "direct_diffuse": 0.17324215014872368, - "direct_direct": 0.08694744671134878, - "direct_hemispherical": 0.2601895968600725 + "diffuse_diffuse": 0.20721665410605514, + "direct_diffuse": 0.054665608887553896, + "direct_direct": 0.08268888642522682, + "direct_hemispherical": 0.1373544953127807 }, "transmittance": { - "diffuse_diffuse": 0.24903895267298473, - "direct_diffuse": 0.07959273302542474, - "direct_direct": 0.14428715501957323, - "direct_hemispherical": 0.22387988804499798 + "diffuse_diffuse": 0.21557202722943739, + "direct_diffuse": 0.04247274657846409, + "direct_direct": 0.14303887380089747, + "direct_hemispherical": 0.18551162037936156 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.23724545272962907, - "direct_diffuse": 0.24181978020985256, - "direct_direct": 0.009805670391517633, - "direct_hemispherical": 0.2516254506013702 + "diffuse_diffuse": 0.07912801829730287, + "direct_diffuse": 0.07493265707351142, + "direct_direct": 0.0047972574600262064, + "direct_hemispherical": 0.07972991453353763 }, "transmittance": { - "diffuse_diffuse": 0.25036662499020446, - "direct_diffuse": 0.0642125649703981, - "direct_direct": 0.14429063666374992, - "direct_hemispherical": 0.208503201634148 + "diffuse_diffuse": 0.2198507907009115, + "direct_diffuse": 0.036996674924151846, + "direct_direct": 0.14310486750318446, + "direct_hemispherical": 0.1801015424273363 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 73e0d36c..ed867664 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.3005083577757709, - "U": 3.2682093959777383, + "SHGC": 0.29533957841375735, + "U": 3.3262101883122863, "gap_layer_effective_conductivities_shgc": [ - 0.07734660512252296 + 0.07900734665512783 ], "gap_layer_effective_conductivities_u": [ - 0.09782813990518593 + 0.10089528992795241 ], "layer_temperatures_shgc": [ - 316.52760934041214, - 316.5477502533505, - 307.1287644874593, - 306.9308696931177 + 325.4589438799176, + 325.49548078959015, + 310.2457252662197, + 309.959721223522 ], "layer_temperatures_u": [ - 304.20748660696574, - 304.2028223015027, - 300.9154798092304, - 300.8357877887761 + 304.23045689179867, + 304.22592061735145, + 300.9772059632895, + 300.8960996514703 ], - "relative_heat_gain": 243.3470402737175, + "relative_heat_gain": 240.0500302316936, "solid_layer_effective_conductivities_shgc": [ - 1.8975669205317234, + 1.9334283476182017, 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.3657592814426773, + 2.3951488111590367, 1.0 ], - "system_effective_conductivity_shgc": 0.12881807383079683, - "system_effective_conductivity_u": 0.1256302063960971 + "system_effective_conductivity_shgc": 0.10789372497799844, + "system_effective_conductivity_u": 0.12929166678920284 } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index 88693d00..7f3165bc 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.2147564246492584, + "U": 3.2098802958209958, "gap_layer_effective_conductivities_shgc": [ - 0.07534565371596631 + 0.07505053254323385 ], "gap_layer_effective_conductivities_u": [ - 0.07534565371596541 + 0.07505053254322981 ], "layer_temperatures_shgc": [ - 257.8911029825417, - 257.9111177936561, - 276.8234303623168, - 277.2055749002269 + 257.87556315306915, + 257.895438698528, + 276.8485092041007, + 277.23007410680486 ], "layer_temperatures_u": [ - 257.89110298254184, - 257.9111177936563, - 276.82343036231794, - 277.205574900228 + 257.87556315306904, + 257.8954386985278, + 276.8485092041006, + 277.2300741068048 ], - "relative_heat_gain": 25.01080498397924, + "relative_heat_gain": 24.972868701618207, "solid_layer_effective_conductivities_shgc": [ - 2.2437350662532602, + 2.268494509204794, 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.2437350662545734, + 2.2684945092033075, 0.9999999999999999 ], - "system_effective_conductivity_shgc": 0.10516538769822967, - "system_effective_conductivity_u": 0.10516538769809688 + "system_effective_conductivity_shgc": 0.10478864568744427, + "system_effective_conductivity_u": 0.10478864568758083 } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/tkr.json b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/tkr.json index 84a823cf..bc0561ef 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/tkr.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/tkr.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.34977970017350124, - "heat_direct": 0.4274568471633679, - "total_diffuse": 0.34977970017350124, - "total_direct": 0.4274568471633679 + "heat_diffuse": 0.41146623842300806, + "heat_direct": 0.500835233271926, + "total_diffuse": 0.41146623842300806, + "total_direct": 0.500835233271926 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.6402856275029869, - "heat_direct": 0.6821659321111939, - "total_diffuse": 0.6402856275029869, - "total_direct": 0.6821659321111939 + "heat_diffuse": 0.7332798675113597, + "heat_direct": 0.7791728424653429, + "total_diffuse": 0.7332798675113597, + "total_direct": 0.7791728424653429 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.25361299398173104, - "heat_direct": 0.26382327174506626, - "total_diffuse": 0.25361299398173104, - "total_direct": 0.26382327174506626 + "heat_diffuse": 0.25196244965050657, + "heat_direct": 0.2618427011237554, + "total_diffuse": 0.25196244965050657, + "total_direct": 0.2618427011237554 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.06309449071344732, - "heat_direct": 0.047710308740054816, - "total_diffuse": 0.06309449071344732, - "total_direct": 0.047710308740054816 + "heat_diffuse": 0.062250066197698455, + "heat_direct": 0.047420775827813566, + "total_diffuse": 0.062250066197698455, + "total_direct": 0.047420775827813566 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.21925972876610067, - "direct_diffuse": 0.07922597213794305, - "direct_direct": 0.07848931485155472, - "direct_hemispherical": 0.15771528698949777 + "diffuse_diffuse": 0.1730055288565657, + "direct_diffuse": 0.02523904851085862, + "direct_direct": 0.07653395095684921, + "direct_hemispherical": 0.10177299946770783 }, "transmittance": { - "diffuse_diffuse": 0.17734757707866708, - "direct_diffuse": 0.033554621382677785, - "direct_direct": 0.11744997271939026, - "direct_hemispherical": 0.15100459410206804 + "diffuse_diffuse": 0.1635657830699198, + "direct_diffuse": 0.018583989478583737, + "direct_direct": 0.11696507665802709, + "direct_hemispherical": 0.13554906613661083 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.11867796988906379, - "direct_diffuse": 0.12043929594979144, - "direct_direct": 0.005991007083563365, - "direct_hemispherical": 0.1264303030333548 + "diffuse_diffuse": 0.03930166712151141, + "direct_diffuse": 0.03695672947426303, + "direct_direct": 0.0034792186354236556, + "direct_hemispherical": 0.04043594810968669 }, "transmittance": { - "diffuse_diffuse": 0.17794191189450165, - "direct_diffuse": 0.02624213929110554, - "direct_direct": 0.11745131682429112, - "direct_hemispherical": 0.14369345611539666 + "diffuse_diffuse": 0.16516839916942977, + "direct_diffuse": 0.01597996464753279, + "direct_direct": 0.11699046894962395, + "direct_hemispherical": 0.13297043359715674 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/tuv.json b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/tuv.json index 82d89238..c61be29a 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/tuv.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/tuv.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.3712249741233607, - "heat_direct": 0.4541227975415679, - "total_diffuse": 0.3712249741233607, - "total_direct": 0.4541227975415679 + "heat_diffuse": 0.3879172098160899, + "heat_direct": 0.4740635835983233, + "total_diffuse": 0.3879172098160899, + "total_direct": 0.4740635835983233 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.7324600826524383, - "heat_direct": 0.7785821570587154, - "total_diffuse": 0.7324600826524383, - "total_direct": 0.7785821570587154 + "heat_diffuse": 0.7684517314487493, + "heat_direct": 0.8143382011713185, + "total_diffuse": 0.7684517314487493, + "total_direct": 0.8143382011713185 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.32386682577038123, - "heat_direct": 0.3376654219814663, - "total_diffuse": 0.32386682577038123, - "total_direct": 0.3376654219814663 + "heat_diffuse": 0.3227138260445674, + "heat_direct": 0.3362624752125257, + "total_diffuse": 0.3227138260445674, + "total_direct": 0.3362624752125257 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.08035229754386129, - "heat_direct": 0.06069395688911184, - "total_diffuse": 0.08035229754386129, - "total_direct": 0.06069395688911184 + "heat_diffuse": 0.07954707100976638, + "heat_direct": 0.06061076830370499, + "total_diffuse": 0.07954707100976638, + "total_direct": 0.06061076830370499 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.16652180819056714, - "direct_diffuse": 0.023709138693415815, - "direct_direct": 0.07372681570330648, - "direct_hemispherical": 0.0974359543967223 + "diffuse_diffuse": 0.1532499210707902, + "direct_diffuse": 0.007843665755001228, + "direct_direct": 0.07313031577581, + "direct_hemispherical": 0.08097398153081123 }, "transmittance": { - "diffuse_diffuse": 0.1383863919156915, - "direct_diffuse": 0.006616059368266813, - "direct_direct": 0.10415976671197695, - "direct_hemispherical": 0.11077582608024376 + "diffuse_diffuse": 0.1361190430685526, + "direct_diffuse": 0.004580538556751182, + "direct_direct": 0.10411942110158853, + "direct_hemispherical": 0.10869995965833971 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.04863742759767751, - "direct_diffuse": 0.048765273372136105, - "direct_direct": 0.003745994100992569, - "direct_hemispherical": 0.052511267473128675 + "diffuse_diffuse": 0.015835997445413, + "direct_diffuse": 0.01456398177816747, + "direct_direct": 0.0027089370273005163, + "direct_hemispherical": 0.017272918805467986 }, "transmittance": { - "diffuse_diffuse": 0.13855019220602266, - "direct_diffuse": 0.0040527617401719535, - "direct_direct": 0.10415985683887226, - "direct_hemispherical": 0.10821261857904421 + "diffuse_diffuse": 0.1361652000960716, + "direct_diffuse": 0.003656966186486782, + "direct_direct": 0.10412114553302179, + "direct_hemispherical": 0.10777811171950857 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/photopic.json b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/photopic.json index a9d2e1f7..468b3043 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/photopic.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/photopic.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.24241746764915884, - "heat_direct": 0.1997727123796648, - "total_diffuse": 0.24241746764915884, - "total_direct": 0.1997727123796648 + "heat_diffuse": 0.4746861519029203, + "heat_direct": 0.37825918740042874, + "total_diffuse": 0.4746861519029203, + "total_direct": 0.37825918740042874 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.29072560517041485, - "heat_direct": 0.37550960341675677, - "total_diffuse": 0.29072560517041485, - "total_direct": 0.37550960341675677 + "heat_diffuse": 0.5985026280449074, + "heat_direct": 0.7552280086539442, + "total_diffuse": 0.5985026280449074, + "total_direct": 0.7552280086539442 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.030008531435580275, - "heat_direct": 0.026156083710125014, - "total_diffuse": 0.030008531435580275, - "total_direct": 0.026156083710125014 + "heat_diffuse": 0.025260107858548493, + "heat_direct": 0.022641306028754478, + "total_diffuse": 0.025260107858548493, + "total_direct": 0.022641306028754478 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.008713930925411971, - "heat_direct": 0.00378786348065008, - "total_diffuse": 0.008713930925411971, - "total_direct": 0.00378786348065008 + "heat_diffuse": 0.007253630367409144, + "heat_direct": 0.0021693428959423016, + "total_diffuse": 0.007253630367409144, + "total_direct": 0.0021693428959423016 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.41082281399177933, - "direct_diffuse": 0.18956938052406969, - "direct_direct": 0.0893632280660593, - "direct_hemispherical": 0.27893260859012897 + "diffuse_diffuse": 0.24139339139203392, + "direct_diffuse": 0.06437903196424104, + "direct_direct": 0.08480884174022575, + "direct_hemispherical": 0.1491878737044668 }, "transmittance": { - "diffuse_diffuse": 0.31675118692348253, - "direct_diffuse": 0.09571671909658452, - "direct_direct": 0.3994218762234966, - "direct_hemispherical": 0.49513859532008114 + "diffuse_diffuse": 0.25866034884649786, + "direct_diffuse": 0.0510124917519979, + "direct_direct": 0.3988991411143519, + "direct_hemispherical": 0.4499116328663498 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.38159121408853375, - "direct_diffuse": 0.48625966046098446, - "direct_direct": 0.009203063183931917, - "direct_hemispherical": 0.4954627236449164 + "diffuse_diffuse": 0.12786432864341127, + "direct_diffuse": 0.16957805529709835, + "direct_direct": 0.0030477807866095665, + "direct_hemispherical": 0.1726258360837079 }, "transmittance": { - "diffuse_diffuse": 0.3189692498156404, - "direct_diffuse": 0.12179563262725847, - "direct_direct": 0.0034441768304183523, - "direct_hemispherical": 0.12523980945767682 + "diffuse_diffuse": 0.2663794129442714, + "direct_diffuse": 0.06928622450649563, + "direct_direct": 0.0006905878599101203, + "direct_hemispherical": 0.06997681236640575 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/solar.json b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/solar.json index 32f7dd80..d1d78c9e 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/solar.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/solar.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.25670208164067293, - "heat_direct": 0.21404093067710964, - "total_diffuse": 0.25670208164067293, - "total_direct": 0.21404093067710964 + "heat_diffuse": 0.44623395862966836, + "heat_direct": 0.3610550874324953, + "total_diffuse": 0.44623395862966836, + "total_direct": 0.3610550874324953 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.3423343900325044, - "heat_direct": 0.44222836033457014, - "total_diffuse": 0.3423343900325044, - "total_direct": 0.44222836033457014 + "heat_diffuse": 0.617417223758784, + "heat_direct": 0.7812830401659501, + "total_diffuse": 0.617417223758784, + "total_direct": 0.7812830401659501 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12713695173410697, - "heat_direct": 0.11421544463200775, - "total_diffuse": 0.12713695173410697, - "total_direct": 0.11421544463200775 + "heat_diffuse": 0.11131329000088495, + "heat_direct": 0.10229106013587784, + "total_diffuse": 0.11131329000088495, + "total_direct": 0.10229106013587784 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.03656466718925517, - "heat_direct": 0.01357712313430445, - "total_diffuse": 0.03656466718925517, - "total_direct": 0.01357712313430445 + "heat_diffuse": 0.0313926901978881, + "heat_direct": 0.00800783408449924, + "total_diffuse": 0.0313926901978881, + "total_direct": 0.00800783408449924 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.33983546838534423, - "direct_diffuse": 0.14580094609933686, - "direct_direct": 0.08017905724238036, - "direct_hemispherical": 0.22598000334171722 + "diffuse_diffuse": 0.21130631713589204, + "direct_diffuse": 0.049824917544232405, + "direct_direct": 0.07664750866713957, + "direct_hemispherical": 0.12647242621137197 }, "transmittance": { - "diffuse_diffuse": 0.276325498239876, - "direct_diffuse": 0.07658826297451526, - "direct_direct": 0.3691753583746505, - "direct_hemispherical": 0.44576362134916575 + "diffuse_diffuse": 0.2311464342335551, + "direct_diffuse": 0.04140742226974298, + "direct_direct": 0.36877400395051174, + "direct_hemispherical": 0.4101814262202547 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.3429460240094147, - "direct_diffuse": 0.43762786167948986, - "direct_direct": 0.008282098332740781, - "direct_hemispherical": 0.44590996001223066 + "diffuse_diffuse": 0.11419478682112257, + "direct_diffuse": 0.1519226382008919, + "direct_direct": 0.0027328401708836105, + "direct_hemispherical": 0.1546554783717755 }, "transmittance": { - "diffuse_diffuse": 0.2781549187688259, - "direct_diffuse": 0.0955873648400916, - "direct_direct": 0.0026971916788034647, - "direct_hemispherical": 0.09828455651889506 + "diffuse_diffuse": 0.23699529922220489, + "direct_diffuse": 0.05551170547599086, + "direct_direct": 0.0005419419017844513, + "direct_hemispherical": 0.05605364737777531 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/tdw.json b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/tdw.json index 9c5e6c63..d2bf441e 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/tdw.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/tdw.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.32887609568525056, - "heat_direct": 0.2712332027601083, - "total_diffuse": 0.32887609568525056, - "total_direct": 0.2712332027601083 + "heat_diffuse": 0.4673811028803787, + "heat_direct": 0.3775503902787042, + "total_diffuse": 0.4673811028803787, + "total_direct": 0.3775503902787042 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.4839164989188816, - "heat_direct": 0.6183062676355714, - "total_diffuse": 0.4839164989188816, - "total_direct": 0.6183062676355714 + "heat_diffuse": 0.6735410509598664, + "heat_direct": 0.8508539581410005, + "total_diffuse": 0.6735410509598664, + "total_direct": 0.8508539581410005 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.11278728428877237, - "heat_direct": 0.11352489771656933, - "total_diffuse": 0.11278728428877237, - "total_direct": 0.11352489771656933 + "heat_diffuse": 0.10983021578412897, + "heat_direct": 0.11133669835333573, + "total_diffuse": 0.10983021578412897, + "total_direct": 0.11133669835333573 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.02847142336128432, - "heat_direct": 0.002418474864350807, - "total_diffuse": 0.02847142336128432, - "total_direct": 0.002418474864350807 + "heat_diffuse": 0.027480140041919742, + "heat_direct": 0.0015853731425295244, + "total_diffuse": 0.027480140041919742, + "total_direct": 0.0015853731425295244 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.30929766735299186, - "direct_diffuse": 0.11461424745581059, - "direct_direct": 0.08520444744882075, - "direct_hemispherical": 0.19981869490463133 + "diffuse_diffuse": 0.20721665410605514, + "direct_diffuse": 0.039160485293096015, + "direct_direct": 0.08244594099386382, + "direct_hemispherical": 0.12160642628695983 }, "transmittance": { - "diffuse_diffuse": 0.24903895267298473, - "direct_diffuse": 0.05566525763256858, - "direct_direct": 0.3597579469861224, - "direct_hemispherical": 0.415423204618691 + "diffuse_diffuse": 0.21557202722943739, + "direct_diffuse": 0.030051288114810726, + "direct_direct": 0.3594551969661897, + "direct_hemispherical": 0.38950648508100044 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.23724545272962907, - "direct_diffuse": 0.3020093113550296, - "direct_direct": 0.005725010097588702, - "direct_hemispherical": 0.3077343214526183 + "diffuse_diffuse": 0.07912801829730287, + "direct_diffuse": 0.10468708432595851, + "direct_direct": 0.00188637337006541, + "direct_hemispherical": 0.10657345769602392 }, "transmittance": { - "diffuse_diffuse": 0.25036662499020446, - "direct_diffuse": 0.06961407624149275, - "direct_direct": 0.0019268598059665948, - "direct_hemispherical": 0.07154093604745934 + "diffuse_diffuse": 0.2198507907009115, + "direct_diffuse": 0.040600393099569435, + "direct_direct": 0.0003868179208769205, + "direct_hemispherical": 0.040987211020446356 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index da43c4e5..554606b9 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.16263358154099267, - "U": 3.2682093959777383, + "SHGC": 0.15988844192894297, + "U": 3.3262101883122863, "gap_layer_effective_conductivities_shgc": [ - 0.07872883531047946 + 0.08073708459230666 ], "gap_layer_effective_conductivities_u": [ - 0.09782813990518593 + 0.10089528992795241 ], "layer_temperatures_shgc": [ - 318.55552311434434, - 318.5789470306522, - 307.1738368524542, - 306.9567719465018 + 328.7747817324188, + 328.8168974179524, + 310.7944974398543, + 310.4751363454626 ], "layer_temperatures_u": [ - 304.20748660696574, - 304.2028223015027, - 300.9154798092304, - 300.8357877887761 + 304.23045689179867, + 304.22592061735145, + 300.9772059632895, + 300.8960996514703 ], - "relative_heat_gain": 143.36405599035652, + "relative_heat_gain": 141.82460263596616, "solid_layer_effective_conductivities_shgc": [ - 1.8912709680804631, - 0.9999999999999999 + 1.9315124483025186, + 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.3657592814426773, + 2.3951488111590367, 1.0 ], - "system_effective_conductivity_shgc": 0.10689783890445399, - "system_effective_conductivity_u": 0.1256302063960971 + "system_effective_conductivity_shgc": 0.09553694814340409, + "system_effective_conductivity_u": 0.12929166678920284 } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index 88693d00..7f3165bc 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.2147564246492584, + "U": 3.2098802958209958, "gap_layer_effective_conductivities_shgc": [ - 0.07534565371596631 + 0.07505053254323385 ], "gap_layer_effective_conductivities_u": [ - 0.07534565371596541 + 0.07505053254322981 ], "layer_temperatures_shgc": [ - 257.8911029825417, - 257.9111177936561, - 276.8234303623168, - 277.2055749002269 + 257.87556315306915, + 257.895438698528, + 276.8485092041007, + 277.23007410680486 ], "layer_temperatures_u": [ - 257.89110298254184, - 257.9111177936563, - 276.82343036231794, - 277.205574900228 + 257.87556315306904, + 257.8954386985278, + 276.8485092041006, + 277.2300741068048 ], - "relative_heat_gain": 25.01080498397924, + "relative_heat_gain": 24.972868701618207, "solid_layer_effective_conductivities_shgc": [ - 2.2437350662532602, + 2.268494509204794, 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.2437350662545734, + 2.2684945092033075, 0.9999999999999999 ], - "system_effective_conductivity_shgc": 0.10516538769822967, - "system_effective_conductivity_u": 0.10516538769809688 + "system_effective_conductivity_shgc": 0.10478864568744427, + "system_effective_conductivity_u": 0.10478864568758083 } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/tkr.json b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/tkr.json index e4c80ffa..43e46f36 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/tkr.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/tkr.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.34977970017350124, - "heat_direct": 0.2886134935772406, - "total_diffuse": 0.34977970017350124, - "total_direct": 0.2886134935772406 + "heat_diffuse": 0.41146623842300806, + "heat_direct": 0.33588540454468013, + "total_diffuse": 0.41146623842300806, + "total_direct": 0.33588540454468013 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.6402856275029869, - "heat_direct": 0.8156457062156935, - "total_diffuse": 0.6402856275029869, - "total_direct": 0.8156457062156935 + "heat_diffuse": 0.7332798675113597, + "heat_direct": 0.9283563779611729, + "total_diffuse": 0.7332798675113597, + "total_direct": 0.9283563779611729 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.25361299398173104, - "heat_direct": 0.26353336796544363, - "total_diffuse": 0.25361299398173104, - "total_direct": 0.26353336796544363 + "heat_diffuse": 0.25196244965050657, + "heat_direct": 0.26231143012568786, + "total_diffuse": 0.25196244965050657, + "total_direct": 0.26231143012568786 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.06309449071344732, - "heat_direct": 0.0018170434940735932, - "total_diffuse": 0.06309449071344732, - "total_direct": 0.0018170434940735932 + "heat_diffuse": 0.062250066197698455, + "heat_direct": 0.0015173416700532197, + "total_diffuse": 0.062250066197698455, + "total_direct": 0.0015173416700532197 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.21925972876610067, - "direct_diffuse": 0.05233406072990074, - "direct_direct": 0.07777501660988678, - "direct_hemispherical": 0.13010907733978752 + "diffuse_diffuse": 0.1730055288565657, + "direct_diffuse": 0.018089541321436142, + "direct_direct": 0.0765102348426955, + "direct_hemispherical": 0.09459977616413164 }, "transmittance": { - "diffuse_diffuse": 0.17734757707866708, - "direct_diffuse": 0.02342081744261737, - "direct_direct": 0.29432324367491075, - "direct_hemispherical": 0.3177440611175281 + "diffuse_diffuse": 0.1635657830699198, + "direct_diffuse": 0.013005650703835914, + "direct_direct": 0.29419773846166447, + "direct_hemispherical": 0.3072033891655004 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.11867796988906379, - "direct_diffuse": 0.15075937133011916, - "direct_direct": 0.0028675237995135342, - "direct_hemispherical": 0.15362689512963268 + "diffuse_diffuse": 0.03930166712151141, + "direct_diffuse": 0.051668671364918387, + "direct_direct": 0.0009360818547746128, + "direct_hemispherical": 0.052604753219693 }, "transmittance": { - "diffuse_diffuse": 0.17794191189450165, - "direct_diffuse": 0.028170726056848602, - "direct_direct": 0.0007396291037516365, - "direct_hemispherical": 0.02891035516060024 + "diffuse_diffuse": 0.16516839916942977, + "direct_diffuse": 0.017372819186606603, + "direct_direct": 0.00014870796247422983, + "direct_hemispherical": 0.017521527149080833 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/tuv.json b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/tuv.json index cde11f26..18912a01 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/tuv.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/tuv.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.3712249741233607, - "heat_direct": 0.30640678722533676, - "total_diffuse": 0.3712249741233607, - "total_direct": 0.30640678722533676 + "heat_diffuse": 0.3879172098160899, + "heat_direct": 0.3191338829052996, + "total_diffuse": 0.3879172098160899, + "total_direct": 0.3191338829052996 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.7324600826524383, - "heat_direct": 0.9317327257338571, - "total_diffuse": 0.7324600826524383, - "total_direct": 0.9317327257338571 + "heat_diffuse": 0.7684517314487493, + "heat_direct": 0.9738855051961925, + "total_diffuse": 0.7684517314487493, + "total_direct": 0.9738855051961925 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.32386682577038123, - "heat_direct": 0.3377673783273917, - "total_diffuse": 0.32386682577038123, - "total_direct": 0.3377673783273917 + "heat_diffuse": 0.3227138260445674, + "heat_direct": 0.3369117875604831, + "total_diffuse": 0.3227138260445674, + "total_direct": 0.3369117875604831 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.08035229754386129, - "heat_direct": 0.0016085040972058779, - "total_diffuse": 0.08035229754386129, - "total_direct": 0.0016085040972058779 + "heat_diffuse": 0.07954707100976638, + "heat_direct": 0.0015368261379865408, + "total_diffuse": 0.07954707100976638, + "total_direct": 0.0015368261379865408 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.16652180819056714, - "direct_diffuse": 0.015562098128943588, - "direct_direct": 0.07361636000567975, - "direct_hemispherical": 0.08917845813462334 + "diffuse_diffuse": 0.1532499210707902, + "direct_diffuse": 0.0056344912107626904, + "direct_direct": 0.07323301551960418, + "direct_hemispherical": 0.07886750673036687 }, "transmittance": { - "diffuse_diffuse": 0.1383863919156915, - "direct_diffuse": 0.004556552371931755, - "direct_direct": 0.26209082394071653, - "direct_hemispherical": 0.2666473763126483 + "diffuse_diffuse": 0.1361190430685526, + "direct_diffuse": 0.0030172522889189146, + "direct_direct": 0.2620695705149315, + "direct_hemispherical": 0.26508682280385043 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.04863742759767751, - "direct_diffuse": 0.06143689399974795, - "direct_direct": 0.0011794326104341655, - "direct_hemispherical": 0.06261632661018211 + "diffuse_diffuse": 0.015835997445413, + "direct_diffuse": 0.020423512727589667, + "direct_direct": 0.0003757308849606754, + "direct_hemispherical": 0.020799243612550342 }, "transmittance": { - "diffuse_diffuse": 0.13855019220602266, - "direct_diffuse": 0.003993088800334002, - "direct_direct": 4.935475842085432e-05, - "direct_hemispherical": 0.004042443558754856 + "diffuse_diffuse": 0.1361652000960716, + "direct_diffuse": 0.003768304576678408, + "direct_direct": 1.0120476592210463e-05, + "direct_hemispherical": 0.003778425053270618 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/photopic.json b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/photopic.json index 9fe52def..1623a1ab 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/photopic.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/photopic.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.2415305286127523, - "heat_direct": 0.2937405221219425, - "total_diffuse": 0.2415305286127523, - "total_direct": 0.2937405221219425 + "heat_diffuse": 0.47534785578899597, + "heat_direct": 0.5717624687611994, + "total_diffuse": 0.47534785578899597, + "total_direct": 0.5717624687611994 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.28874707204430783, - "heat_direct": 0.31377944524529644, - "total_diffuse": 0.28874707204430783, - "total_direct": 0.31377944524529644 + "heat_diffuse": 0.5977815175986634, + "heat_direct": 0.6441607347397781, + "total_diffuse": 0.5977815175986634, + "total_direct": 0.6441607347397781 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.02693894843963911, - "heat_direct": 0.02561307111348202, - "total_diffuse": 0.02693894843963911, - "total_direct": 0.02561307111348202 + "heat_diffuse": 0.02261865881608339, + "heat_direct": 0.02051191634208236, + "total_diffuse": 0.02261865881608339, + "total_direct": 0.02051191634208236 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.007833349912253285, - "heat_direct": 0.006372552969013971, - "total_diffuse": 0.007833349912253285, - "total_direct": 0.006372552969013971 + "heat_diffuse": 0.006505173116027383, + "heat_direct": 0.005017120224111431, + "total_diffuse": 0.006505173116027383, + "total_direct": 0.005017120224111431 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.4134160671002959, - "direct_diffuse": 0.28867158783141894, - "direct_direct": 0.09273336540009981, - "direct_hemispherical": 0.38140495323151874 + "diffuse_diffuse": 0.2424995970694102, + "direct_diffuse": 0.09059957419522739, + "direct_direct": 0.08565110317249496, + "direct_hemispherical": 0.17625067736772235 }, "transmittance": { - "diffuse_diffuse": 0.318114455847312, - "direct_diffuse": 0.13775380948934027, - "direct_direct": 0.16148764404371643, - "direct_hemispherical": 0.2992414535330567 + "diffuse_diffuse": 0.2595338883255109, + "direct_diffuse": 0.07222551045306294, + "direct_direct": 0.1592494270759333, + "direct_hemispherical": 0.23147493752899623 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.383072833592117, - "direct_diffuse": 0.3912723468572205, - "direct_direct": 0.014355545502743967, - "direct_hemispherical": 0.4056278923599645 + "diffuse_diffuse": 0.12839001343525977, + "direct_diffuse": 0.12186198325408006, + "direct_direct": 0.006277619317472155, + "direct_hemispherical": 0.1281396025715522 }, "transmittance": { - "diffuse_diffuse": 0.3203467444513203, - "direct_diffuse": 0.11272621549718309, - "direct_direct": 0.16149389392854224, - "direct_hemispherical": 0.27422010942572533 + "diffuse_diffuse": 0.2673232958500488, + "direct_diffuse": 0.06331441629904144, + "direct_direct": 0.15936812616551718, + "direct_hemispherical": 0.22268254246455862 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/solar.json b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/solar.json index 5650c6b7..fff76b7d 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/solar.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/solar.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.2559818649969538, - "heat_direct": 0.31574030631074307, - "total_diffuse": 0.2559818649969538, - "total_direct": 0.31574030631074307 + "heat_diffuse": 0.4469795588373094, + "heat_direct": 0.5456210273714369, + "total_diffuse": 0.4469795588373094, + "total_direct": 0.5456210273714369 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.33880619853492216, - "heat_direct": 0.3677988425396637, - "total_diffuse": 0.33880619853492216, - "total_direct": 0.3677988425396637 + "heat_diffuse": 0.6161737362055243, + "heat_direct": 0.6629668160185399, + "total_diffuse": 0.6161737362055243, + "total_direct": 0.6629668160185399 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12469512715764863, - "heat_direct": 0.11932223945623863, - "total_diffuse": 0.12469512715764863, - "total_direct": 0.11932223945623863 + "heat_diffuse": 0.10885979460843477, + "heat_direct": 0.10020186466999499, + "total_diffuse": 0.10885979460843477, + "total_direct": 0.10020186466999499 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.03592997949147834, - "heat_direct": 0.02855185264831585, - "total_diffuse": 0.03592997949147834, - "total_direct": 0.02855185264831585 + "heat_diffuse": 0.030767846707832072, + "heat_direct": 0.023472825565225758, + "total_diffuse": 0.030767846707832072, + "total_direct": 0.023472825565225758 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.34179573558695187, - "direct_diffuse": 0.22264545579459188, - "direct_direct": 0.08279956106336532, - "direct_hemispherical": 0.3054450168579572 + "diffuse_diffuse": 0.21208606260865948, + "direct_diffuse": 0.0703924144931853, + "direct_direct": 0.0772800168327062, + "direct_hemispherical": 0.1476724313258915 }, "transmittance": { - "diffuse_diffuse": 0.27752727225844614, - "direct_diffuse": 0.11022474906912752, - "direct_direct": 0.14926768830593398, - "direct_hemispherical": 0.2594924373750615 + "diffuse_diffuse": 0.23207458394559635, + "direct_diffuse": 0.05898110325623865, + "direct_direct": 0.14752357337643826, + "direct_hemispherical": 0.2065046766326769 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.34589218632273766, - "direct_diffuse": 0.35323460994747, - "direct_direct": 0.012980488125155511, - "direct_hemispherical": 0.36621509807262553 + "diffuse_diffuse": 0.11511277664975551, + "direct_diffuse": 0.10955946360599568, + "direct_direct": 0.005672103666247625, + "direct_hemispherical": 0.1152315672722433 }, "transmittance": { - "diffuse_diffuse": 0.27937163565086215, - "direct_diffuse": 0.08816189012642683, - "direct_direct": 0.14927231661296814, - "direct_hemispherical": 0.23743420673939497 + "diffuse_diffuse": 0.2379456404368879, + "direct_diffuse": 0.05071317690558805, + "direct_direct": 0.14761561423840347, + "direct_hemispherical": 0.19832879114399152 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/tdw.json b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/tdw.json index 75fc71d2..1ac00aa3 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/tdw.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/tdw.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.32889260377820617, - "heat_direct": 0.40327879681604795, - "total_diffuse": 0.32889260377820617, - "total_direct": 0.40327879681604795 + "heat_diffuse": 0.4799330316362484, + "heat_direct": 0.5829357311245992, + "total_diffuse": 0.4799330316362484, + "total_direct": 0.5829357311245992 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.4567447143681812, - "heat_direct": 0.4903341208998716, - "total_diffuse": 0.4567447143681812, - "total_direct": 0.4903341208998716 + "heat_diffuse": 0.6634375008682395, + "heat_direct": 0.7092694004451163, + "total_diffuse": 0.6634375008682395, + "total_direct": 0.7092694004451163 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.08512172019806954, - "heat_direct": 0.08241224041563112, - "total_diffuse": 0.08512172019806954, - "total_direct": 0.08241224041563112 + "heat_diffuse": 0.08175149837540813, + "heat_direct": 0.07838117301473145, + "total_diffuse": 0.08175149837540813, + "total_direct": 0.07838117301473145 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.021471779362939106, - "heat_direct": 0.015834705746946037, - "total_diffuse": 0.021471779362939106, - "total_direct": 0.015834705746946037 + "heat_diffuse": 0.020466900168383272, + "heat_direct": 0.014973375278995515, + "total_diffuse": 0.020466900168383272, + "total_direct": 0.014973375278995515 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.3243141182914829, - "direct_diffuse": 0.18923372193915988, - "direct_direct": 0.08848976719946457, - "direct_hemispherical": 0.27772348913862444 + "diffuse_diffuse": 0.21290393945887584, + "direct_diffuse": 0.059797868448471334, + "direct_direct": 0.08383784008296787, + "direct_hemispherical": 0.1436357085314392 }, "transmittance": { - "diffuse_diffuse": 0.26167155773224143, - "direct_diffuse": 0.08651269084995028, - "direct_direct": 0.15007278277974645, - "direct_hemispherical": 0.23658547362969673 + "diffuse_diffuse": 0.22541153052946764, + "direct_diffuse": 0.046322996508741, + "direct_direct": 0.14872439082048927, + "direct_hemispherical": 0.19504738732923027 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.2586611692181513, - "direct_diffuse": 0.26365908405751753, - "direct_direct": 0.010492496361849441, - "direct_hemispherical": 0.274151580419367 + "diffuse_diffuse": 0.08607878686979413, + "direct_diffuse": 0.08163288338925917, + "direct_direct": 0.005031644685960569, + "direct_hemispherical": 0.08666452807521974 }, "transmittance": { - "diffuse_diffuse": 0.26312233705072907, - "direct_diffuse": 0.06960304598276967, - "direct_direct": 0.15007654695104572, - "direct_hemispherical": 0.2196795929338154 + "diffuse_diffuse": 0.23001681209358305, + "direct_diffuse": 0.04029699212019214, + "direct_direct": 0.1487957040804765, + "direct_hemispherical": 0.18909269620066863 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 91bbcb15..2d18a8f8 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.30075384840325375, - "U": 3.268209395957587, + "SHGC": 0.295730133164184, + "U": 3.326210188269284, "gap_layer_effective_conductivities_shgc": [ - 0.07739035308066831 + 0.07902675986308978 ], "gap_layer_effective_conductivities_u": [ - 0.09782813990519092 + 0.1008952899279433 ], "layer_temperatures_shgc": [ - 316.4116409764771, - 316.4315465223962, - 307.0607429140768, - 306.8640039435568 + 325.4165356252433, + 325.45297829760375, + 310.2072538964354, + 309.92170102861223 ], "layer_temperatures_u": [ - 304.2074866069648, - 304.20282230150167, - 300.9154798092253, - 300.8357877887709 + 304.2304568918024, + 304.2259206173552, + 300.97720596329145, + 300.8960996514721 ], - "relative_heat_gain": 243.52506330466562, + "relative_heat_gain": 240.33324976266425, "solid_layer_effective_conductivities_shgc": [ - 1.8961347654484098, - 0.9999999999999999 + 1.9329497087884162, + 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.3657592814427746, + 2.3951488111593537, 1.0 ], - "system_effective_conductivity_shgc": 0.12849496398530602, - "system_effective_conductivity_u": 0.1256302063936898 + "system_effective_conductivity_shgc": 0.10756366800370926, + "system_effective_conductivity_u": 0.12929166678559442 } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index 42e0378d..3cbc5eb1 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.2147564246765183, + "U": 3.209880295838021, "gap_layer_effective_conductivities_shgc": [ - 0.07534565371596905 + 0.07505053254323311 ], "gap_layer_effective_conductivities_u": [ - 0.07534565371596948 + 0.07505053254323187 ], "layer_temperatures_shgc": [ - 257.891102982542, - 257.91111779365644, - 276.8234303623161, - 277.2055749002262 + 257.8755631530691, + 257.8954386985279, + 276.84850920410065, + 277.23007410680486 ], "layer_temperatures_u": [ - 257.8911029825391, - 257.9111177936535, - 276.8234303623166, - 277.2055749002267 + 257.875563153067, + 257.89543869852577, + 276.84850920409883, + 277.230074106803 ], - "relative_heat_gain": 25.010804983984368, + "relative_heat_gain": 24.972868701619674, "solid_layer_effective_conductivities_shgc": [ - 2.243735066253269, + 2.2684945092047846, 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.243735066253264, - 0.9999999999999999 + 2.2684945092047766, + 1.0 ], - "system_effective_conductivity_shgc": 0.10516538769823625, - "system_effective_conductivity_u": 0.10516538769823652 + "system_effective_conductivity_shgc": 0.10478864568746597, + "system_effective_conductivity_u": 0.10478864568747101 } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/tkr.json b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/tkr.json index 927a4090..ec9a9892 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/tkr.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/tkr.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.3713421810568209, - "heat_direct": 0.46050698748347507, - "total_diffuse": 0.3713421810568209, - "total_direct": 0.46050698748347507 + "heat_diffuse": 0.4430775618170457, + "heat_direct": 0.5459903677822615, + "total_diffuse": 0.4430775618170457, + "total_direct": 0.5459903677822615 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.6200614466618799, - "heat_direct": 0.6613380320538697, - "total_diffuse": 0.6200614466618799, - "total_direct": 0.6613380320538697 + "heat_diffuse": 0.7257341267562953, + "heat_direct": 0.7716642010901683, + "total_diffuse": 0.7257341267562953, + "total_direct": 0.7716642010901683 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.20341197256107765, - "heat_direct": 0.20018178323728023, - "total_diffuse": 0.20341197256107765, - "total_direct": 0.20018178323728023 + "heat_diffuse": 0.2009349145073319, + "heat_direct": 0.1971174642201741, + "total_diffuse": 0.2009349145073319, + "total_direct": 0.1971174642201741 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.049952785265346425, - "heat_direct": 0.03623551129797334, - "total_diffuse": 0.049952785265346425, - "total_direct": 0.03623551129797334 + "heat_diffuse": 0.04916105431869655, + "heat_direct": 0.03584659513859816, + "total_diffuse": 0.04916105431869655, + "total_direct": 0.03584659513859816 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.23046613628503754, - "direct_diffuse": 0.09132888304553559, - "direct_direct": 0.08004914449303067, - "direct_hemispherical": 0.17137802753856626 + "diffuse_diffuse": 0.1771847026177372, + "direct_diffuse": 0.02912681853928474, + "direct_direct": 0.07779486019256084, + "direct_hemispherical": 0.10692167873184558 }, "transmittance": { - "diffuse_diffuse": 0.19477971009706446, - "direct_diffuse": 0.039083606445125846, - "direct_direct": 0.12884959529555262, - "direct_hemispherical": 0.16793320174067847 + "diffuse_diffuse": 0.17880282105788542, + "direct_diffuse": 0.02168495783965893, + "direct_direct": 0.12828553142606, + "direct_hemispherical": 0.14997048926571893 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.13451193111881532, - "direct_diffuse": 0.13657301931820706, - "direct_direct": 0.006506031644658415, - "direct_hemispherical": 0.14307905096286547 + "diffuse_diffuse": 0.04444838505317412, + "direct_diffuse": 0.04191348731138018, + "direct_direct": 0.0036609520847273587, + "direct_hemispherical": 0.04557443939610754 }, "transmittance": { - "diffuse_diffuse": 0.1954738369539584, - "direct_diffuse": 0.030496244435995468, - "direct_direct": 0.1288511612492963, - "direct_hemispherical": 0.15934740568529177 + "diffuse_diffuse": 0.18065643387183347, + "direct_diffuse": 0.01859962553578623, + "direct_direct": 0.12831513883933984, + "direct_hemispherical": 0.14691476437512607 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/tuv.json b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/tuv.json index 93a5dc83..397877bf 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/tuv.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/tuv.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.45184124053891334, - "heat_direct": 0.5608670125242416, - "total_diffuse": 0.45184124053891334, - "total_direct": 0.5608670125242416 + "heat_diffuse": 0.4656445161977826, + "heat_direct": 0.5775445222352894, + "total_diffuse": 0.4656445161977826, + "total_direct": 0.5775445222352894 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.7461503171310493, - "heat_direct": 0.7920520131840684, - "total_diffuse": 0.7461503171310493, - "total_direct": 0.7920520131840684 + "heat_diffuse": 0.773838662159067, + "heat_direct": 0.8194904523757612, + "total_diffuse": 0.773838662159067, + "total_direct": 0.8194904523757612 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.219797192602522, - "heat_direct": 0.2126035981540024, - "total_diffuse": 0.219797192602522, - "total_direct": 0.2126035981540024 + "heat_diffuse": 0.21804824086244143, + "heat_direct": 0.21037466779040603, + "total_diffuse": 0.21804824086244143, + "total_direct": 0.21037466779040603 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.05326713807510635, - "heat_direct": 0.037956946067828595, - "total_diffuse": 0.05326713807510635, - "total_direct": 0.037956946067828595 + "heat_diffuse": 0.05277267922577237, + "heat_direct": 0.037900297995003135, + "total_diffuse": 0.05277267922577237, + "total_direct": 0.037900297995003135 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.16568824450217864, - "direct_diffuse": 0.01857147387737576, - "direct_direct": 0.07688861940803454, - "direct_hemispherical": 0.0954600932854103 + "diffuse_diffuse": 0.1553828261200906, + "direct_diffuse": 0.006152292529472969, + "direct_direct": 0.07641792822832436, + "direct_hemispherical": 0.08257022075779732 }, "transmittance": { - "diffuse_diffuse": 0.16267332235638654, - "direct_diffuse": 0.0052928971093668675, - "direct_direct": 0.12577639892697892, - "direct_hemispherical": 0.1310692960363458 + "diffuse_diffuse": 0.16092441681968522, + "direct_diffuse": 0.0037610773761901917, + "direct_direct": 0.12574951184031702, + "direct_hemispherical": 0.1295105892165072 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.037772759334551056, - "direct_diffuse": 0.03762522651267392, - "direct_direct": 0.0034986900133637663, - "direct_hemispherical": 0.04112391652603769 + "diffuse_diffuse": 0.012460141278615862, + "direct_diffuse": 0.011228084305519859, + "direct_direct": 0.002697485299650389, + "direct_hemispherical": 0.013925569605170248 }, "transmittance": { - "diffuse_diffuse": 0.1628097854592928, - "direct_diffuse": 0.0030906708236543845, - "direct_direct": 0.12577645339841095, - "direct_hemispherical": 0.12886712422206534 + "diffuse_diffuse": 0.16092851733654423, + "direct_diffuse": 0.0029331061222372667, + "direct_direct": 0.12575057390182812, + "direct_hemispherical": 0.12868368002406538 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/photopic.json b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/photopic.json index 0f64cdbd..0ef64564 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/photopic.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/photopic.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.2415305286127523, - "heat_direct": 0.19895884975280023, - "total_diffuse": 0.2415305286127523, - "total_direct": 0.19895884975280023 + "heat_diffuse": 0.47534785578899597, + "heat_direct": 0.37858579685517946, + "total_diffuse": 0.47534785578899597, + "total_direct": 0.37858579685517946 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.28874707204430783, - "heat_direct": 0.3729525149292724, - "total_diffuse": 0.28874707204430783, - "total_direct": 0.3729525149292724 + "heat_diffuse": 0.5977815175986634, + "heat_direct": 0.7542308405349483, + "total_diffuse": 0.5977815175986634, + "total_direct": 0.7542308405349483 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.02693894843963911, - "heat_direct": 0.0234544219908863, - "total_diffuse": 0.02693894843963911, - "total_direct": 0.0234544219908863 + "heat_diffuse": 0.02261865881608339, + "heat_direct": 0.0202588002541505, + "total_diffuse": 0.02261865881608339, + "total_direct": 0.0202588002541505 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.007833349912253285, - "heat_direct": 0.0034428016551410344, - "total_diffuse": 0.007833349912253285, - "total_direct": 0.0034428016551410344 + "heat_diffuse": 0.006505173116027383, + "heat_direct": 0.0019673270002471925, + "total_diffuse": 0.006505173116027383, + "total_direct": 0.0019673270002471925 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.4134160671002959, - "direct_diffuse": 0.1911467442748353, - "direct_direct": 0.08973485234090504, - "direct_hemispherical": 0.28088159661574036 + "diffuse_diffuse": 0.2424995970694102, + "direct_diffuse": 0.06489869036625837, + "direct_direct": 0.08514368135137296, + "direct_hemispherical": 0.15004237171763132 }, "transmittance": { - "diffuse_diffuse": 0.318114455847312, - "direct_diffuse": 0.09643044539610274, - "direct_direct": 0.4002746862444706, - "direct_hemispherical": 0.49670513164057334 + "diffuse_diffuse": 0.2595338883255109, + "direct_diffuse": 0.05136584344072381, + "direct_direct": 0.39974718773231493, + "direct_hemispherical": 0.45111303117303875 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.383072833592117, - "direct_diffuse": 0.48811987954259634, - "direct_direct": 0.009238370302842509, - "direct_hemispherical": 0.49735824984543886 + "diffuse_diffuse": 0.12839001343525977, + "direct_diffuse": 0.17025464386237332, + "direct_direct": 0.003059864404844776, + "direct_hemispherical": 0.1733145082672181 }, "transmittance": { - "diffuse_diffuse": 0.3203467444513203, - "direct_diffuse": 0.12277414063167835, - "direct_direct": 0.0034722929384695947, - "direct_hemispherical": 0.12624643357014795 + "diffuse_diffuse": 0.2673232958500488, + "direct_diffuse": 0.06979115184147033, + "direct_direct": 0.000696172356116123, + "direct_hemispherical": 0.07048732419758645 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/solar.json b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/solar.json index bc61141e..b90fd7b7 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/solar.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/solar.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.2559818649969538, - "heat_direct": 0.21355288049268267, - "total_diffuse": 0.2559818649969538, - "total_direct": 0.21355288049268267 + "heat_diffuse": 0.4469795588373094, + "heat_direct": 0.36167794614331716, + "total_diffuse": 0.4469795588373094, + "total_direct": 0.36167794614331716 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.33880619853492216, - "heat_direct": 0.4378880305880963, - "total_diffuse": 0.33880619853492216, - "total_direct": 0.4378880305880963 + "heat_diffuse": 0.6161737362055243, + "heat_direct": 0.7796384026209644, + "total_diffuse": 0.6161737362055243, + "total_direct": 0.7796384026209644 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12469512715764863, - "heat_direct": 0.11150022663502498, - "total_diffuse": 0.12469512715764863, - "total_direct": 0.11150022663502498 + "heat_diffuse": 0.10885979460843477, + "heat_direct": 0.0995661214213697, + "total_diffuse": 0.10885979460843477, + "total_direct": 0.0995661214213697 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.03592997949147834, - "heat_direct": 0.013550572256580986, - "total_diffuse": 0.03592997949147834, - "total_direct": 0.013550572256580986 + "heat_diffuse": 0.030767846707832072, + "heat_direct": 0.007995830674024137, + "total_diffuse": 0.030767846707832072, + "total_direct": 0.007995830674024137 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.34179573558695187, - "direct_diffuse": 0.14714522313615447, - "direct_direct": 0.08038435599284623, - "direct_hemispherical": 0.22752957912900068 + "diffuse_diffuse": 0.21208606260865948, + "direct_diffuse": 0.05030350494671179, + "direct_direct": 0.07682034522936332, + "direct_hemispherical": 0.1271238501760751 }, "transmittance": { - "diffuse_diffuse": 0.27752727225844614, - "direct_diffuse": 0.07709129166930345, - "direct_direct": 0.3703260220739885, - "direct_hemispherical": 0.44741731374329197 + "diffuse_diffuse": 0.23207458394559635, + "direct_diffuse": 0.04171012675524799, + "direct_direct": 0.3699219555039899, + "direct_hemispherical": 0.41163208225923786 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.34589218632273766, - "direct_diffuse": 0.4413815773041149, - "direct_direct": 0.008353594505074747, - "direct_hemispherical": 0.44973517180918965 + "diffuse_diffuse": 0.11511277664975551, + "direct_diffuse": 0.1531620835893435, + "direct_direct": 0.0027554434340902926, + "direct_hemispherical": 0.15591752702343378 }, "transmittance": { - "diffuse_diffuse": 0.27937163565086215, - "direct_diffuse": 0.09611746113208308, - "direct_direct": 0.0027087642140500574, - "direct_hemispherical": 0.09882622534613314 + "diffuse_diffuse": 0.2379456404368879, + "direct_diffuse": 0.05590385919636792, + "direct_direct": 0.000544380485209558, + "direct_hemispherical": 0.05644823968157748 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/tdw.json b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/tdw.json index bfc3c6f7..e1f5b017 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/tdw.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/tdw.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.32889260377820617, - "heat_direct": 0.27250024789349225, - "total_diffuse": 0.32889260377820617, - "total_direct": 0.27250024789349225 + "heat_diffuse": 0.4799330316362484, + "heat_direct": 0.3884351480878079, + "total_diffuse": 0.4799330316362484, + "total_direct": 0.3884351480878079 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.4567447143681812, - "heat_direct": 0.5844507531301715, - "total_diffuse": 0.4567447143681812, - "total_direct": 0.5844507531301715 + "heat_diffuse": 0.6634375008682395, + "heat_direct": 0.8377437286052417, + "total_diffuse": 0.6634375008682395, + "total_direct": 0.8377437286052417 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.08512172019806954, - "heat_direct": 0.0814105484766974, - "total_diffuse": 0.08512172019806954, - "total_direct": 0.0814105484766974 + "heat_diffuse": 0.08175149837540813, + "heat_direct": 0.07890140367296285, + "total_diffuse": 0.08175149837540813, + "total_direct": 0.07890140367296285 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.021471779362939106, - "heat_direct": 0.0025112633358791644, - "total_diffuse": 0.021471779362939106, - "total_direct": 0.0025112633358791644 + "heat_diffuse": 0.020466900168383272, + "heat_direct": 0.0015805440705803264, + "total_diffuse": 0.020466900168383272, + "total_direct": 0.0015805440705803264 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.3243141182914829, - "direct_diffuse": 0.12516486981297692, - "direct_direct": 0.08655302523036999, - "direct_hemispherical": 0.21171789504334693 + "diffuse_diffuse": 0.21290393945887584, + "direct_diffuse": 0.04282632503174921, + "direct_direct": 0.08354027859083457, + "direct_hemispherical": 0.12636660362258378 }, "transmittance": { - "diffuse_diffuse": 0.26167155773224143, - "direct_diffuse": 0.06049683653637361, - "direct_direct": 0.37387447205009006, - "direct_hemispherical": 0.43437130858646367 + "diffuse_diffuse": 0.22541153052946764, + "direct_diffuse": 0.032750725596603136, + "direct_direct": 0.37354611902004264, + "direct_hemispherical": 0.4062968446166458 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.2586611692181513, - "direct_diffuse": 0.3293284268821565, - "direct_direct": 0.006242577966038539, - "direct_hemispherical": 0.3355710048481951 + "diffuse_diffuse": 0.08607878686979413, + "direct_diffuse": 0.11400788153319567, + "direct_direct": 0.002054595014317966, + "direct_hemispherical": 0.11606247654751364 }, "transmittance": { - "diffuse_diffuse": 0.26312233705072907, - "direct_diffuse": 0.0753871931502628, - "direct_direct": 0.0020797855354917115, - "direct_hemispherical": 0.0774669786857545 + "diffuse_diffuse": 0.23001681209358305, + "direct_diffuse": 0.044195310897994694, + "direct_direct": 0.000417939878669553, + "direct_hemispherical": 0.04461325077666425 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 5dcc187b..75c39130 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.16260872187000797, - "U": 3.268209395957587, + "SHGC": 0.16006623044795132, + "U": 3.326210188269284, "gap_layer_effective_conductivities_shgc": [ - 0.07872012837486671 + 0.08072439000379106 ], "gap_layer_effective_conductivities_u": [ - 0.09782813990519092 + 0.1008952899279433 ], "layer_temperatures_shgc": [ - 318.42174152129667, - 318.44491401520867, - 307.12147735502555, - 306.90573283401443 + 328.72627922106864, + 328.7683055808525, + 310.7754087049881, + 310.4565507074831 ], "layer_temperatures_u": [ - 304.2074866069648, - 304.20282230150167, - 300.9154798092253, - 300.8357877887709 + 304.2304568918024, + 304.2259206173552, + 300.97720596329145, + 300.8960996514721 ], - "relative_heat_gain": 143.34602844283845, + "relative_heat_gain": 141.95352996531457, "solid_layer_effective_conductivities_shgc": [ - 1.890402056259992, - 0.9999999999999999 + 1.931376083653689, + 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.3657592814427746, + 2.3951488111593537, 1.0 ], - "system_effective_conductivity_shgc": 0.10704184210607652, - "system_effective_conductivity_u": 0.1256302063936898 + "system_effective_conductivity_shgc": 0.09554285520236096, + "system_effective_conductivity_u": 0.12929166678559442 } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index 42e0378d..3cbc5eb1 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.2147564246765183, + "U": 3.209880295838021, "gap_layer_effective_conductivities_shgc": [ - 0.07534565371596905 + 0.07505053254323311 ], "gap_layer_effective_conductivities_u": [ - 0.07534565371596948 + 0.07505053254323187 ], "layer_temperatures_shgc": [ - 257.891102982542, - 257.91111779365644, - 276.8234303623161, - 277.2055749002262 + 257.8755631530691, + 257.8954386985279, + 276.84850920410065, + 277.23007410680486 ], "layer_temperatures_u": [ - 257.8911029825391, - 257.9111177936535, - 276.8234303623166, - 277.2055749002267 + 257.875563153067, + 257.89543869852577, + 276.84850920409883, + 277.230074106803 ], - "relative_heat_gain": 25.010804983984368, + "relative_heat_gain": 24.972868701619674, "solid_layer_effective_conductivities_shgc": [ - 2.243735066253269, + 2.2684945092047846, 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.243735066253264, - 0.9999999999999999 + 2.2684945092047766, + 1.0 ], - "system_effective_conductivity_shgc": 0.10516538769823625, - "system_effective_conductivity_u": 0.10516538769823652 + "system_effective_conductivity_shgc": 0.10478864568746597, + "system_effective_conductivity_u": 0.10478864568747101 } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/tkr.json b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/tkr.json index b0c227b6..b2fe2f42 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/tkr.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/tkr.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.3713421810568209, - "heat_direct": 0.3102871837161106, - "total_diffuse": 0.3713421810568209, - "total_direct": 0.3102871837161106 + "heat_diffuse": 0.4430775618170457, + "heat_direct": 0.36533356265354955, + "total_diffuse": 0.4430775618170457, + "total_direct": 0.36533356265354955 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.6200614466618799, - "heat_direct": 0.7904171758527706, - "total_diffuse": 0.6200614466618799, - "total_direct": 0.7904171758527706 + "heat_diffuse": 0.7257341267562953, + "heat_direct": 0.9185833915416691, + "total_diffuse": 0.7257341267562953, + "total_direct": 0.9185833915416691 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.20341197256107765, - "heat_direct": 0.2007573313900834, - "total_diffuse": 0.20341197256107765, - "total_direct": 0.2007573313900834 + "heat_diffuse": 0.2009349145073319, + "heat_direct": 0.19887126849682432, + "total_diffuse": 0.2009349145073319, + "total_direct": 0.19887126849682432 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.049952785265346425, - "heat_direct": 0.0018090282266277026, - "total_diffuse": 0.049952785265346425, - "total_direct": 0.0018090282266277026 + "heat_diffuse": 0.04916105431869655, + "heat_direct": 0.001397857912108008, + "total_diffuse": 0.04916105431869655, + "total_direct": 0.001397857912108008 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.23046613628503754, - "direct_diffuse": 0.06031294539333551, - "direct_direct": 0.07914363643071026, - "direct_hemispherical": 0.13945658182404577 + "diffuse_diffuse": 0.1771847026177372, + "direct_diffuse": 0.02086022802131328, + "direct_direct": 0.07768602888117149, + "direct_hemispherical": 0.09854625690248477 }, "transmittance": { - "diffuse_diffuse": 0.19477971009706446, - "direct_diffuse": 0.027278499898317654, - "direct_direct": 0.3222204031714426, - "direct_hemispherical": 0.3494989030697603 + "diffuse_diffuse": 0.17880282105788542, + "direct_diffuse": 0.015174028724860233, + "direct_direct": 0.322074883222281, + "direct_hemispherical": 0.33724891194714124 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.13451193111881532, - "direct_diffuse": 0.1709326879362574, - "direct_direct": 0.0032490596170018852, - "direct_hemispherical": 0.1741817475532593 + "diffuse_diffuse": 0.04444838505317412, + "direct_diffuse": 0.058554765495091386, + "direct_direct": 0.0010601189826396724, + "direct_hemispherical": 0.059614884477731056 }, "transmittance": { - "diffuse_diffuse": 0.1954738369539584, - "direct_diffuse": 0.03273131096595745, - "direct_direct": 0.000860737401384777, - "direct_hemispherical": 0.03359204836734223 + "diffuse_diffuse": 0.18065643387183347, + "direct_diffuse": 0.020230458779082968, + "direct_direct": 0.00017340728940868283, + "direct_hemispherical": 0.02040386606849165 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/tuv.json b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/tuv.json index f4a5d95e..f5c085e6 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/tuv.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/tuv.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.45184124053891334, - "heat_direct": 0.3774649765204389, - "total_diffuse": 0.45184124053891334, - "total_direct": 0.3774649765204389 + "heat_diffuse": 0.4656445161977826, + "heat_direct": 0.38807952359469516, + "total_diffuse": 0.4656445161977826, + "total_direct": 0.38807952359469516 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.7461503171310493, - "heat_direct": 0.947605960739715, - "total_diffuse": 0.7461503171310493, - "total_direct": 0.947605960739715 + "heat_diffuse": 0.773838662159067, + "heat_direct": 0.9799641890532012, + "total_diffuse": 0.773838662159067, + "total_direct": 0.9799641890532012 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.219797192602522, - "heat_direct": 0.2141149843636916, - "total_diffuse": 0.219797192602522, - "total_direct": 0.2141149843636916 + "heat_diffuse": 0.21804824086244143, + "heat_direct": 0.2127597092501803, + "total_diffuse": 0.21804824086244143, + "total_direct": 0.2127597092501803 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.05326713807510635, - "heat_direct": 0.0010251974049000038, - "total_diffuse": 0.05326713807510635, - "total_direct": 0.0010251974049000038 + "heat_diffuse": 0.05277267922577237, + "heat_direct": 0.0009750863672346029, + "total_diffuse": 0.05277267922577237, + "total_direct": 0.0009750863672346029 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.16568824450217864, - "direct_diffuse": 0.012178469957375329, - "direct_direct": 0.07675627380965841, - "direct_hemispherical": 0.08893474376703374 + "diffuse_diffuse": 0.1553828261200906, + "direct_diffuse": 0.00441621014577212, + "direct_direct": 0.07645445593552941, + "direct_hemispherical": 0.08087066608130153 }, "transmittance": { - "diffuse_diffuse": 0.16267332235638654, - "direct_diffuse": 0.0036359171646262456, - "direct_direct": 0.31584937818420955, - "direct_hemispherical": 0.3194852953488358 + "diffuse_diffuse": 0.16092441681968522, + "direct_diffuse": 0.0024570011981648876, + "direct_direct": 0.3158330998756581, + "direct_hemispherical": 0.318290101073823 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.037772759334551056, - "direct_diffuse": 0.04741261531376316, - "direct_direct": 0.0009109471345823759, - "direct_hemispherical": 0.048323562448345535 + "diffuse_diffuse": 0.012460141278615862, + "direct_diffuse": 0.015753762270188848, + "direct_direct": 0.00029010496711689006, + "direct_hemispherical": 0.016043867237305737 }, "transmittance": { - "diffuse_diffuse": 0.1628097854592928, - "direct_diffuse": 0.0030148146154232868, - "direct_direct": 3.0464791616054346e-05, - "direct_hemispherical": 0.003045279407039341 + "diffuse_diffuse": 0.16092851733654423, + "direct_diffuse": 0.0030106099874902636, + "direct_direct": 6.247354768143973e-06, + "direct_hemispherical": 0.0030168573422584078 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/photopic.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/photopic.json index c9260cc7..0dee7b4f 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/photopic.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/photopic.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.24241746764915884, - "heat_direct": 0.2949555970575398, - "total_diffuse": 0.24241746764915884, - "total_direct": 0.2949555970575398 + "heat_diffuse": 0.4746861519029203, + "heat_direct": 0.5712342456272478, + "total_diffuse": 0.4746861519029203, + "total_direct": 0.5712342456272478 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.29072560517041485, - "heat_direct": 0.3159063237937177, - "total_diffuse": 0.29072560517041485, - "total_direct": 0.3159063237937177 + "heat_diffuse": 0.5985026280449074, + "heat_direct": 0.6448972311350123, + "total_diffuse": 0.5985026280449074, + "total_direct": 0.6448972311350123 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.030008531435580275, - "heat_direct": 0.02852585788186668, - "total_diffuse": 0.030008531435580275, - "total_direct": 0.02852585788186668 + "heat_diffuse": 0.025260107858548493, + "heat_direct": 0.022913886720798325, + "total_diffuse": 0.025260107858548493, + "total_direct": 0.022913886720798325 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.008713930925411971, - "heat_direct": 0.00707425710195211, - "total_diffuse": 0.008713930925411971, - "total_direct": 0.00707425710195211 + "heat_diffuse": 0.007253630367409144, + "heat_direct": 0.005587675683503066, + "total_diffuse": 0.007253630367409144, + "total_direct": 0.005587675683503066 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.41082281399177933, - "direct_diffuse": 0.28630590572955517, - "direct_direct": 0.0923409703358509, - "direct_hemispherical": 0.3786468760654061 + "diffuse_diffuse": 0.24139339139203392, + "direct_diffuse": 0.08988045498063164, + "direct_direct": 0.08531459749637212, + "direct_hemispherical": 0.17519505247700376 }, "transmittance": { - "diffuse_diffuse": 0.31675118692348253, - "direct_diffuse": 0.1367361584979353, - "direct_direct": 0.1611355104972524, - "direct_hemispherical": 0.2978716689951877 + "diffuse_diffuse": 0.25866034884649786, + "direct_diffuse": 0.07174118601095694, + "direct_direct": 0.15891562916399302, + "direct_hemispherical": 0.23065681517494996 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.38159121408853375, - "direct_diffuse": 0.38975773642951717, - "direct_direct": 0.014300244737526387, - "direct_hemispherical": 0.40405798116704356 + "diffuse_diffuse": 0.12786432864341127, + "direct_diffuse": 0.12137399754031816, + "direct_direct": 0.006253007142818061, + "direct_hemispherical": 0.12762700468313623 }, "transmittance": { - "diffuse_diffuse": 0.3189692498156404, - "direct_diffuse": 0.11181973928130931, - "direct_direct": 0.1611416986559778, - "direct_hemispherical": 0.2729614379372871 + "diffuse_diffuse": 0.2663794129442714, + "direct_diffuse": 0.06285475034227611, + "direct_direct": 0.1590333381560723, + "direct_hemispherical": 0.2218880884983484 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/solar.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/solar.json index 6569059e..38b80abf 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/solar.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/solar.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.25670208164067293, - "heat_direct": 0.31648339407081233, - "total_diffuse": 0.25670208164067293, - "total_direct": 0.31648339407081233 + "heat_diffuse": 0.44623395862966836, + "heat_direct": 0.5446314997201677, + "total_diffuse": 0.44623395862966836, + "total_direct": 0.5446314997201677 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.3423343900325044, - "heat_direct": 0.3713578901706912, - "total_diffuse": 0.3423343900325044, - "total_direct": 0.3713578901706912 + "heat_diffuse": 0.617417223758784, + "heat_direct": 0.6642248039032085, + "total_diffuse": 0.617417223758784, + "total_direct": 0.6642248039032085 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12713695173410697, - "heat_direct": 0.12204658275499351, - "total_diffuse": 0.12713695173410697, - "total_direct": 0.12204658275499351 + "heat_diffuse": 0.11131329000088495, + "heat_direct": 0.10294360276530894, + "total_diffuse": 0.11131329000088495, + "total_direct": 0.10294360276530894 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.03656466718925517, - "heat_direct": 0.029066882804970284, - "total_diffuse": 0.03656466718925517, - "total_direct": 0.029066882804970284 + "heat_diffuse": 0.0313926901978881, + "heat_direct": 0.023975685072686766, + "total_diffuse": 0.0313926901978881, + "total_direct": 0.023975685072686766 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.33983546838534423, - "direct_diffuse": 0.22060060290854236, - "direct_direct": 0.08257043527365535, - "direct_hemispherical": 0.3031710381821977 + "diffuse_diffuse": 0.21130631713589204, + "direct_diffuse": 0.06972158439704665, + "direct_direct": 0.07710117994314988, + "direct_hemispherical": 0.14682276434019653 }, "transmittance": { - "diffuse_diffuse": 0.276325498239876, - "direct_diffuse": 0.10950032521910744, - "direct_direct": 0.1487986597728891, - "direct_hemispherical": 0.25829898499199655 + "diffuse_diffuse": 0.2311464342335551, + "direct_diffuse": 0.05853953545508392, + "direct_direct": 0.14706259771924282, + "direct_hemispherical": 0.20560213317432674 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.3429460240094147, - "direct_diffuse": 0.35024449504986277, - "direct_direct": 0.01288383142427729, - "direct_hemispherical": 0.36312832647414006 + "diffuse_diffuse": 0.11419478682112257, + "direct_diffuse": 0.10866378569295133, + "direct_direct": 0.005637964985021243, + "direct_hemispherical": 0.11430175067797257 }, "transmittance": { - "diffuse_diffuse": 0.2781549187688259, - "direct_diffuse": 0.08764363801177999, - "direct_direct": 0.1488032625384183, - "direct_hemispherical": 0.2364469005501983 + "diffuse_diffuse": 0.23699529922220489, + "direct_diffuse": 0.05034355154496864, + "direct_direct": 0.14715420880116364, + "direct_hemispherical": 0.19749776034613228 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/tdw.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/tdw.json index e86e1760..42bd9e5c 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/tdw.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/tdw.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.32887609568525056, - "heat_direct": 0.4012614718419299, - "total_diffuse": 0.32887609568525056, - "total_direct": 0.4012614718419299 + "heat_diffuse": 0.4673811028803787, + "heat_direct": 0.5659777138382336, + "total_diffuse": 0.4673811028803787, + "total_direct": 0.5659777138382336 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.4839164989188816, - "heat_direct": 0.5183133807715261, - "total_diffuse": 0.4839164989188816, - "total_direct": 0.5183133807715261 + "heat_diffuse": 0.6735410509598664, + "heat_direct": 0.7193829354113684, + "total_diffuse": 0.6735410509598664, + "total_direct": 0.7193829354113684 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.11278728428877237, - "heat_direct": 0.11466904325299974, - "total_diffuse": 0.11278728428877237, - "total_direct": 0.11466904325299974 + "heat_diffuse": 0.10983021578412897, + "heat_direct": 0.11115617046962416, + "total_diffuse": 0.10983021578412897, + "total_direct": 0.11115617046962416 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.02847142336128432, - "heat_direct": 0.02155796699295561, - "total_diffuse": 0.02847142336128432, - "total_direct": 0.02155796699295561 + "heat_diffuse": 0.027480140041919742, + "heat_direct": 0.020785607627757826, + "total_diffuse": 0.027480140041919742, + "total_direct": 0.020785607627757826 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.30929766735299186, - "direct_diffuse": 0.17324215014872368, - "direct_direct": 0.08694744671134878, - "direct_hemispherical": 0.2601895968600725 + "diffuse_diffuse": 0.20721665410605514, + "direct_diffuse": 0.054665608887553896, + "direct_direct": 0.08268888642522682, + "direct_hemispherical": 0.1373544953127807 }, "transmittance": { - "diffuse_diffuse": 0.24903895267298473, - "direct_diffuse": 0.07959273302542474, - "direct_direct": 0.14428715501957323, - "direct_hemispherical": 0.22387988804499798 + "diffuse_diffuse": 0.21557202722943739, + "direct_diffuse": 0.04247274657846409, + "direct_direct": 0.14303887380089747, + "direct_hemispherical": 0.18551162037936156 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.23724545272962907, - "direct_diffuse": 0.24181978020985256, - "direct_direct": 0.009805670391517633, - "direct_hemispherical": 0.2516254506013702 + "diffuse_diffuse": 0.07912801829730287, + "direct_diffuse": 0.07493265707351142, + "direct_direct": 0.0047972574600262064, + "direct_hemispherical": 0.07972991453353763 }, "transmittance": { - "diffuse_diffuse": 0.25036662499020446, - "direct_diffuse": 0.0642125649703981, - "direct_direct": 0.14429063666374992, - "direct_hemispherical": 0.208503201634148 + "diffuse_diffuse": 0.2198507907009115, + "direct_diffuse": 0.036996674924151846, + "direct_direct": 0.14310486750318446, + "direct_hemispherical": 0.1801015424273363 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 900a8033..38cc73dd 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.3003135827279181, - "U": 3.247034772727739, + "SHGC": 0.29501525851476657, + "U": 3.1992390387594654, "gap_layer_effective_conductivities_shgc": [ - 0.07668844856899662 + 0.07734694898920759 ], "gap_layer_effective_conductivities_u": [ - 0.09652896813238193 + 0.09385627861928467 ], "layer_temperatures_shgc": [ - 316.5131154774232, - 316.53329414382324, - 307.09073444786577, - 306.8938208225815 + 325.4147189442151, + 325.4511539324846, + 310.10179046115405, + 309.8196564997721 ], "layer_temperatures_u": [ - 304.2060343846035, - 304.2013541806654, - 300.8929192155626, - 300.81374351713805 + 304.1952685045735, + 304.19055342728365, + 300.8419435019547, + 300.76393325474476 ], - "relative_heat_gain": 243.0410562132957, + "relative_heat_gain": 238.82700684423915, "solid_layer_effective_conductivities_shgc": [ - 1.8953334404035573, + 1.9283655164751488, 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.3676318863266363, + 2.394869018261466, 1.0 ], - "system_effective_conductivity_shgc": 0.1279738639854644, - "system_effective_conductivity_u": 0.12405858664637585 + "system_effective_conductivity_shgc": 0.10591161263651824, + "system_effective_conductivity_u": 0.12084161244323674 } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index 7aebabba..701a78f8 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.2129541265621464, + "U": 3.2216743786432445, "gap_layer_effective_conductivities_shgc": [ - 0.07521816396760803 + 0.07556478810875464 ], "gap_layer_effective_conductivities_u": [ - 0.07521816396760332 + 0.07556478810876094 ], "layer_temperatures_shgc": [ - 257.8801026841071, - 257.9000521432568, - 276.8326998064845, - 277.2146301016096 + 257.8559292635023, + 257.8756705756647, + 276.7878516728553, + 277.1708185618175 ], "layer_temperatures_u": [ - 257.880102684107, - 257.9000521432567, - 276.8326998064873, - 277.21463010161233 + 257.85592926350216, + 257.87567057566457, + 276.7878516728526, + 277.17081856181477 ], - "relative_heat_gain": 24.99678310486349, + "relative_heat_gain": 25.064626665972646, "solid_layer_effective_conductivities_shgc": [ - 2.2451091843147184, + 2.2652738114197843, 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.245109184314731, - 0.9999999999999999 + 2.2652738114183295, + 1.0 ], - "system_effective_conductivity_shgc": 0.1049974027448905, - "system_effective_conductivity_u": 0.10499740274476349 + "system_effective_conductivity_shgc": 0.10538941957214697, + "system_effective_conductivity_u": 0.10538941957224826 } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/tkr.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/tkr.json index 84a823cf..bc0561ef 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/tkr.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/tkr.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.34977970017350124, - "heat_direct": 0.4274568471633679, - "total_diffuse": 0.34977970017350124, - "total_direct": 0.4274568471633679 + "heat_diffuse": 0.41146623842300806, + "heat_direct": 0.500835233271926, + "total_diffuse": 0.41146623842300806, + "total_direct": 0.500835233271926 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.6402856275029869, - "heat_direct": 0.6821659321111939, - "total_diffuse": 0.6402856275029869, - "total_direct": 0.6821659321111939 + "heat_diffuse": 0.7332798675113597, + "heat_direct": 0.7791728424653429, + "total_diffuse": 0.7332798675113597, + "total_direct": 0.7791728424653429 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.25361299398173104, - "heat_direct": 0.26382327174506626, - "total_diffuse": 0.25361299398173104, - "total_direct": 0.26382327174506626 + "heat_diffuse": 0.25196244965050657, + "heat_direct": 0.2618427011237554, + "total_diffuse": 0.25196244965050657, + "total_direct": 0.2618427011237554 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.06309449071344732, - "heat_direct": 0.047710308740054816, - "total_diffuse": 0.06309449071344732, - "total_direct": 0.047710308740054816 + "heat_diffuse": 0.062250066197698455, + "heat_direct": 0.047420775827813566, + "total_diffuse": 0.062250066197698455, + "total_direct": 0.047420775827813566 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.21925972876610067, - "direct_diffuse": 0.07922597213794305, - "direct_direct": 0.07848931485155472, - "direct_hemispherical": 0.15771528698949777 + "diffuse_diffuse": 0.1730055288565657, + "direct_diffuse": 0.02523904851085862, + "direct_direct": 0.07653395095684921, + "direct_hemispherical": 0.10177299946770783 }, "transmittance": { - "diffuse_diffuse": 0.17734757707866708, - "direct_diffuse": 0.033554621382677785, - "direct_direct": 0.11744997271939026, - "direct_hemispherical": 0.15100459410206804 + "diffuse_diffuse": 0.1635657830699198, + "direct_diffuse": 0.018583989478583737, + "direct_direct": 0.11696507665802709, + "direct_hemispherical": 0.13554906613661083 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.11867796988906379, - "direct_diffuse": 0.12043929594979144, - "direct_direct": 0.005991007083563365, - "direct_hemispherical": 0.1264303030333548 + "diffuse_diffuse": 0.03930166712151141, + "direct_diffuse": 0.03695672947426303, + "direct_direct": 0.0034792186354236556, + "direct_hemispherical": 0.04043594810968669 }, "transmittance": { - "diffuse_diffuse": 0.17794191189450165, - "direct_diffuse": 0.02624213929110554, - "direct_direct": 0.11745131682429112, - "direct_hemispherical": 0.14369345611539666 + "diffuse_diffuse": 0.16516839916942977, + "direct_diffuse": 0.01597996464753279, + "direct_direct": 0.11699046894962395, + "direct_hemispherical": 0.13297043359715674 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/tuv.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/tuv.json index 82d89238..c61be29a 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/tuv.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/tuv.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.3712249741233607, - "heat_direct": 0.4541227975415679, - "total_diffuse": 0.3712249741233607, - "total_direct": 0.4541227975415679 + "heat_diffuse": 0.3879172098160899, + "heat_direct": 0.4740635835983233, + "total_diffuse": 0.3879172098160899, + "total_direct": 0.4740635835983233 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.7324600826524383, - "heat_direct": 0.7785821570587154, - "total_diffuse": 0.7324600826524383, - "total_direct": 0.7785821570587154 + "heat_diffuse": 0.7684517314487493, + "heat_direct": 0.8143382011713185, + "total_diffuse": 0.7684517314487493, + "total_direct": 0.8143382011713185 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.32386682577038123, - "heat_direct": 0.3376654219814663, - "total_diffuse": 0.32386682577038123, - "total_direct": 0.3376654219814663 + "heat_diffuse": 0.3227138260445674, + "heat_direct": 0.3362624752125257, + "total_diffuse": 0.3227138260445674, + "total_direct": 0.3362624752125257 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.08035229754386129, - "heat_direct": 0.06069395688911184, - "total_diffuse": 0.08035229754386129, - "total_direct": 0.06069395688911184 + "heat_diffuse": 0.07954707100976638, + "heat_direct": 0.06061076830370499, + "total_diffuse": 0.07954707100976638, + "total_direct": 0.06061076830370499 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.16652180819056714, - "direct_diffuse": 0.023709138693415815, - "direct_direct": 0.07372681570330648, - "direct_hemispherical": 0.0974359543967223 + "diffuse_diffuse": 0.1532499210707902, + "direct_diffuse": 0.007843665755001228, + "direct_direct": 0.07313031577581, + "direct_hemispherical": 0.08097398153081123 }, "transmittance": { - "diffuse_diffuse": 0.1383863919156915, - "direct_diffuse": 0.006616059368266813, - "direct_direct": 0.10415976671197695, - "direct_hemispherical": 0.11077582608024376 + "diffuse_diffuse": 0.1361190430685526, + "direct_diffuse": 0.004580538556751182, + "direct_direct": 0.10411942110158853, + "direct_hemispherical": 0.10869995965833971 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.04863742759767751, - "direct_diffuse": 0.048765273372136105, - "direct_direct": 0.003745994100992569, - "direct_hemispherical": 0.052511267473128675 + "diffuse_diffuse": 0.015835997445413, + "direct_diffuse": 0.01456398177816747, + "direct_direct": 0.0027089370273005163, + "direct_hemispherical": 0.017272918805467986 }, "transmittance": { - "diffuse_diffuse": 0.13855019220602266, - "direct_diffuse": 0.0040527617401719535, - "direct_direct": 0.10415985683887226, - "direct_hemispherical": 0.10821261857904421 + "diffuse_diffuse": 0.1361652000960716, + "direct_diffuse": 0.003656966186486782, + "direct_direct": 0.10412114553302179, + "direct_hemispherical": 0.10777811171950857 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/photopic.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/photopic.json index a9d2e1f7..468b3043 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/photopic.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/photopic.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.24241746764915884, - "heat_direct": 0.1997727123796648, - "total_diffuse": 0.24241746764915884, - "total_direct": 0.1997727123796648 + "heat_diffuse": 0.4746861519029203, + "heat_direct": 0.37825918740042874, + "total_diffuse": 0.4746861519029203, + "total_direct": 0.37825918740042874 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.29072560517041485, - "heat_direct": 0.37550960341675677, - "total_diffuse": 0.29072560517041485, - "total_direct": 0.37550960341675677 + "heat_diffuse": 0.5985026280449074, + "heat_direct": 0.7552280086539442, + "total_diffuse": 0.5985026280449074, + "total_direct": 0.7552280086539442 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.030008531435580275, - "heat_direct": 0.026156083710125014, - "total_diffuse": 0.030008531435580275, - "total_direct": 0.026156083710125014 + "heat_diffuse": 0.025260107858548493, + "heat_direct": 0.022641306028754478, + "total_diffuse": 0.025260107858548493, + "total_direct": 0.022641306028754478 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.008713930925411971, - "heat_direct": 0.00378786348065008, - "total_diffuse": 0.008713930925411971, - "total_direct": 0.00378786348065008 + "heat_diffuse": 0.007253630367409144, + "heat_direct": 0.0021693428959423016, + "total_diffuse": 0.007253630367409144, + "total_direct": 0.0021693428959423016 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.41082281399177933, - "direct_diffuse": 0.18956938052406969, - "direct_direct": 0.0893632280660593, - "direct_hemispherical": 0.27893260859012897 + "diffuse_diffuse": 0.24139339139203392, + "direct_diffuse": 0.06437903196424104, + "direct_direct": 0.08480884174022575, + "direct_hemispherical": 0.1491878737044668 }, "transmittance": { - "diffuse_diffuse": 0.31675118692348253, - "direct_diffuse": 0.09571671909658452, - "direct_direct": 0.3994218762234966, - "direct_hemispherical": 0.49513859532008114 + "diffuse_diffuse": 0.25866034884649786, + "direct_diffuse": 0.0510124917519979, + "direct_direct": 0.3988991411143519, + "direct_hemispherical": 0.4499116328663498 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.38159121408853375, - "direct_diffuse": 0.48625966046098446, - "direct_direct": 0.009203063183931917, - "direct_hemispherical": 0.4954627236449164 + "diffuse_diffuse": 0.12786432864341127, + "direct_diffuse": 0.16957805529709835, + "direct_direct": 0.0030477807866095665, + "direct_hemispherical": 0.1726258360837079 }, "transmittance": { - "diffuse_diffuse": 0.3189692498156404, - "direct_diffuse": 0.12179563262725847, - "direct_direct": 0.0034441768304183523, - "direct_hemispherical": 0.12523980945767682 + "diffuse_diffuse": 0.2663794129442714, + "direct_diffuse": 0.06928622450649563, + "direct_direct": 0.0006905878599101203, + "direct_hemispherical": 0.06997681236640575 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/solar.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/solar.json index 32f7dd80..d1d78c9e 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/solar.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/solar.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.25670208164067293, - "heat_direct": 0.21404093067710964, - "total_diffuse": 0.25670208164067293, - "total_direct": 0.21404093067710964 + "heat_diffuse": 0.44623395862966836, + "heat_direct": 0.3610550874324953, + "total_diffuse": 0.44623395862966836, + "total_direct": 0.3610550874324953 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.3423343900325044, - "heat_direct": 0.44222836033457014, - "total_diffuse": 0.3423343900325044, - "total_direct": 0.44222836033457014 + "heat_diffuse": 0.617417223758784, + "heat_direct": 0.7812830401659501, + "total_diffuse": 0.617417223758784, + "total_direct": 0.7812830401659501 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12713695173410697, - "heat_direct": 0.11421544463200775, - "total_diffuse": 0.12713695173410697, - "total_direct": 0.11421544463200775 + "heat_diffuse": 0.11131329000088495, + "heat_direct": 0.10229106013587784, + "total_diffuse": 0.11131329000088495, + "total_direct": 0.10229106013587784 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.03656466718925517, - "heat_direct": 0.01357712313430445, - "total_diffuse": 0.03656466718925517, - "total_direct": 0.01357712313430445 + "heat_diffuse": 0.0313926901978881, + "heat_direct": 0.00800783408449924, + "total_diffuse": 0.0313926901978881, + "total_direct": 0.00800783408449924 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.33983546838534423, - "direct_diffuse": 0.14580094609933686, - "direct_direct": 0.08017905724238036, - "direct_hemispherical": 0.22598000334171722 + "diffuse_diffuse": 0.21130631713589204, + "direct_diffuse": 0.049824917544232405, + "direct_direct": 0.07664750866713957, + "direct_hemispherical": 0.12647242621137197 }, "transmittance": { - "diffuse_diffuse": 0.276325498239876, - "direct_diffuse": 0.07658826297451526, - "direct_direct": 0.3691753583746505, - "direct_hemispherical": 0.44576362134916575 + "diffuse_diffuse": 0.2311464342335551, + "direct_diffuse": 0.04140742226974298, + "direct_direct": 0.36877400395051174, + "direct_hemispherical": 0.4101814262202547 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.3429460240094147, - "direct_diffuse": 0.43762786167948986, - "direct_direct": 0.008282098332740781, - "direct_hemispherical": 0.44590996001223066 + "diffuse_diffuse": 0.11419478682112257, + "direct_diffuse": 0.1519226382008919, + "direct_direct": 0.0027328401708836105, + "direct_hemispherical": 0.1546554783717755 }, "transmittance": { - "diffuse_diffuse": 0.2781549187688259, - "direct_diffuse": 0.0955873648400916, - "direct_direct": 0.0026971916788034647, - "direct_hemispherical": 0.09828455651889506 + "diffuse_diffuse": 0.23699529922220489, + "direct_diffuse": 0.05551170547599086, + "direct_direct": 0.0005419419017844513, + "direct_hemispherical": 0.05605364737777531 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/tdw.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/tdw.json index 9c5e6c63..d2bf441e 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/tdw.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/tdw.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.32887609568525056, - "heat_direct": 0.2712332027601083, - "total_diffuse": 0.32887609568525056, - "total_direct": 0.2712332027601083 + "heat_diffuse": 0.4673811028803787, + "heat_direct": 0.3775503902787042, + "total_diffuse": 0.4673811028803787, + "total_direct": 0.3775503902787042 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.4839164989188816, - "heat_direct": 0.6183062676355714, - "total_diffuse": 0.4839164989188816, - "total_direct": 0.6183062676355714 + "heat_diffuse": 0.6735410509598664, + "heat_direct": 0.8508539581410005, + "total_diffuse": 0.6735410509598664, + "total_direct": 0.8508539581410005 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.11278728428877237, - "heat_direct": 0.11352489771656933, - "total_diffuse": 0.11278728428877237, - "total_direct": 0.11352489771656933 + "heat_diffuse": 0.10983021578412897, + "heat_direct": 0.11133669835333573, + "total_diffuse": 0.10983021578412897, + "total_direct": 0.11133669835333573 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.02847142336128432, - "heat_direct": 0.002418474864350807, - "total_diffuse": 0.02847142336128432, - "total_direct": 0.002418474864350807 + "heat_diffuse": 0.027480140041919742, + "heat_direct": 0.0015853731425295244, + "total_diffuse": 0.027480140041919742, + "total_direct": 0.0015853731425295244 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.30929766735299186, - "direct_diffuse": 0.11461424745581059, - "direct_direct": 0.08520444744882075, - "direct_hemispherical": 0.19981869490463133 + "diffuse_diffuse": 0.20721665410605514, + "direct_diffuse": 0.039160485293096015, + "direct_direct": 0.08244594099386382, + "direct_hemispherical": 0.12160642628695983 }, "transmittance": { - "diffuse_diffuse": 0.24903895267298473, - "direct_diffuse": 0.05566525763256858, - "direct_direct": 0.3597579469861224, - "direct_hemispherical": 0.415423204618691 + "diffuse_diffuse": 0.21557202722943739, + "direct_diffuse": 0.030051288114810726, + "direct_direct": 0.3594551969661897, + "direct_hemispherical": 0.38950648508100044 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.23724545272962907, - "direct_diffuse": 0.3020093113550296, - "direct_direct": 0.005725010097588702, - "direct_hemispherical": 0.3077343214526183 + "diffuse_diffuse": 0.07912801829730287, + "direct_diffuse": 0.10468708432595851, + "direct_direct": 0.00188637337006541, + "direct_hemispherical": 0.10657345769602392 }, "transmittance": { - "diffuse_diffuse": 0.25036662499020446, - "direct_diffuse": 0.06961407624149275, - "direct_direct": 0.0019268598059665948, - "direct_hemispherical": 0.07154093604745934 + "diffuse_diffuse": 0.2198507907009115, + "direct_diffuse": 0.040600393099569435, + "direct_direct": 0.0003868179208769205, + "direct_hemispherical": 0.040987211020446356 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index f29f7690..5d5ceca9 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.16239303992533569, - "U": 3.247034772727739, + "SHGC": 0.15951368522604642, + "U": 3.1992390387594654, "gap_layer_effective_conductivities_shgc": [ - 0.07811784816546052 + 0.07927586756567252 ], "gap_layer_effective_conductivities_u": [ - 0.09652896813238193 + 0.09385627861928467 ], "layer_temperatures_shgc": [ - 318.5396372024114, - 318.5631125799283, - 307.1315883552533, - 306.9156138441202 + 328.72933759552643, + 328.7713662949826, + 310.6470547754841, + 310.3316841340811 ], "layer_temperatures_u": [ - 304.2060343846035, - 304.2013541806654, - 300.8929192155626, - 300.81374351713805 + 304.1952685045735, + 304.19055342728365, + 300.8419435019547, + 300.76393325474476 ], - "relative_heat_gain": 143.0248832774997, + "relative_heat_gain": 140.56500386971945, "solid_layer_effective_conductivities_shgc": [ - 1.8891040911269483, - 0.9999999999999999 + 1.9268054696456747, + 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.3676318863266363, + 2.394869018261466, 1.0 ], - "system_effective_conductivity_shgc": 0.10616682513205988, - "system_effective_conductivity_u": 0.12405858664637585 + "system_effective_conductivity_shgc": 0.09387511348137018, + "system_effective_conductivity_u": 0.12084161244323674 } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index 7aebabba..701a78f8 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.2129541265621464, + "U": 3.2216743786432445, "gap_layer_effective_conductivities_shgc": [ - 0.07521816396760803 + 0.07556478810875464 ], "gap_layer_effective_conductivities_u": [ - 0.07521816396760332 + 0.07556478810876094 ], "layer_temperatures_shgc": [ - 257.8801026841071, - 257.9000521432568, - 276.8326998064845, - 277.2146301016096 + 257.8559292635023, + 257.8756705756647, + 276.7878516728553, + 277.1708185618175 ], "layer_temperatures_u": [ - 257.880102684107, - 257.9000521432567, - 276.8326998064873, - 277.21463010161233 + 257.85592926350216, + 257.87567057566457, + 276.7878516728526, + 277.17081856181477 ], - "relative_heat_gain": 24.99678310486349, + "relative_heat_gain": 25.064626665972646, "solid_layer_effective_conductivities_shgc": [ - 2.2451091843147184, + 2.2652738114197843, 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.245109184314731, - 0.9999999999999999 + 2.2652738114183295, + 1.0 ], - "system_effective_conductivity_shgc": 0.1049974027448905, - "system_effective_conductivity_u": 0.10499740274476349 + "system_effective_conductivity_shgc": 0.10538941957214697, + "system_effective_conductivity_u": 0.10538941957224826 } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/tkr.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/tkr.json index e4c80ffa..43e46f36 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/tkr.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/tkr.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.34977970017350124, - "heat_direct": 0.2886134935772406, - "total_diffuse": 0.34977970017350124, - "total_direct": 0.2886134935772406 + "heat_diffuse": 0.41146623842300806, + "heat_direct": 0.33588540454468013, + "total_diffuse": 0.41146623842300806, + "total_direct": 0.33588540454468013 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.6402856275029869, - "heat_direct": 0.8156457062156935, - "total_diffuse": 0.6402856275029869, - "total_direct": 0.8156457062156935 + "heat_diffuse": 0.7332798675113597, + "heat_direct": 0.9283563779611729, + "total_diffuse": 0.7332798675113597, + "total_direct": 0.9283563779611729 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.25361299398173104, - "heat_direct": 0.26353336796544363, - "total_diffuse": 0.25361299398173104, - "total_direct": 0.26353336796544363 + "heat_diffuse": 0.25196244965050657, + "heat_direct": 0.26231143012568786, + "total_diffuse": 0.25196244965050657, + "total_direct": 0.26231143012568786 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.06309449071344732, - "heat_direct": 0.0018170434940735932, - "total_diffuse": 0.06309449071344732, - "total_direct": 0.0018170434940735932 + "heat_diffuse": 0.062250066197698455, + "heat_direct": 0.0015173416700532197, + "total_diffuse": 0.062250066197698455, + "total_direct": 0.0015173416700532197 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.21925972876610067, - "direct_diffuse": 0.05233406072990074, - "direct_direct": 0.07777501660988678, - "direct_hemispherical": 0.13010907733978752 + "diffuse_diffuse": 0.1730055288565657, + "direct_diffuse": 0.018089541321436142, + "direct_direct": 0.0765102348426955, + "direct_hemispherical": 0.09459977616413164 }, "transmittance": { - "diffuse_diffuse": 0.17734757707866708, - "direct_diffuse": 0.02342081744261737, - "direct_direct": 0.29432324367491075, - "direct_hemispherical": 0.3177440611175281 + "diffuse_diffuse": 0.1635657830699198, + "direct_diffuse": 0.013005650703835914, + "direct_direct": 0.29419773846166447, + "direct_hemispherical": 0.3072033891655004 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.11867796988906379, - "direct_diffuse": 0.15075937133011916, - "direct_direct": 0.0028675237995135342, - "direct_hemispherical": 0.15362689512963268 + "diffuse_diffuse": 0.03930166712151141, + "direct_diffuse": 0.051668671364918387, + "direct_direct": 0.0009360818547746128, + "direct_hemispherical": 0.052604753219693 }, "transmittance": { - "diffuse_diffuse": 0.17794191189450165, - "direct_diffuse": 0.028170726056848602, - "direct_direct": 0.0007396291037516365, - "direct_hemispherical": 0.02891035516060024 + "diffuse_diffuse": 0.16516839916942977, + "direct_diffuse": 0.017372819186606603, + "direct_direct": 0.00014870796247422983, + "direct_hemispherical": 0.017521527149080833 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/tuv.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/tuv.json index cde11f26..18912a01 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/tuv.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/tuv.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.3712249741233607, - "heat_direct": 0.30640678722533676, - "total_diffuse": 0.3712249741233607, - "total_direct": 0.30640678722533676 + "heat_diffuse": 0.3879172098160899, + "heat_direct": 0.3191338829052996, + "total_diffuse": 0.3879172098160899, + "total_direct": 0.3191338829052996 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.7324600826524383, - "heat_direct": 0.9317327257338571, - "total_diffuse": 0.7324600826524383, - "total_direct": 0.9317327257338571 + "heat_diffuse": 0.7684517314487493, + "heat_direct": 0.9738855051961925, + "total_diffuse": 0.7684517314487493, + "total_direct": 0.9738855051961925 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.32386682577038123, - "heat_direct": 0.3377673783273917, - "total_diffuse": 0.32386682577038123, - "total_direct": 0.3377673783273917 + "heat_diffuse": 0.3227138260445674, + "heat_direct": 0.3369117875604831, + "total_diffuse": 0.3227138260445674, + "total_direct": 0.3369117875604831 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.08035229754386129, - "heat_direct": 0.0016085040972058779, - "total_diffuse": 0.08035229754386129, - "total_direct": 0.0016085040972058779 + "heat_diffuse": 0.07954707100976638, + "heat_direct": 0.0015368261379865408, + "total_diffuse": 0.07954707100976638, + "total_direct": 0.0015368261379865408 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.16652180819056714, - "direct_diffuse": 0.015562098128943588, - "direct_direct": 0.07361636000567975, - "direct_hemispherical": 0.08917845813462334 + "diffuse_diffuse": 0.1532499210707902, + "direct_diffuse": 0.0056344912107626904, + "direct_direct": 0.07323301551960418, + "direct_hemispherical": 0.07886750673036687 }, "transmittance": { - "diffuse_diffuse": 0.1383863919156915, - "direct_diffuse": 0.004556552371931755, - "direct_direct": 0.26209082394071653, - "direct_hemispherical": 0.2666473763126483 + "diffuse_diffuse": 0.1361190430685526, + "direct_diffuse": 0.0030172522889189146, + "direct_direct": 0.2620695705149315, + "direct_hemispherical": 0.26508682280385043 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.04863742759767751, - "direct_diffuse": 0.06143689399974795, - "direct_direct": 0.0011794326104341655, - "direct_hemispherical": 0.06261632661018211 + "diffuse_diffuse": 0.015835997445413, + "direct_diffuse": 0.020423512727589667, + "direct_direct": 0.0003757308849606754, + "direct_hemispherical": 0.020799243612550342 }, "transmittance": { - "diffuse_diffuse": 0.13855019220602266, - "direct_diffuse": 0.003993088800334002, - "direct_direct": 4.935475842085432e-05, - "direct_hemispherical": 0.004042443558754856 + "diffuse_diffuse": 0.1361652000960716, + "direct_diffuse": 0.003768304576678408, + "direct_direct": 1.0120476592210463e-05, + "direct_hemispherical": 0.003778425053270618 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/photopic.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/photopic.json index 9fe52def..1623a1ab 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/photopic.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/photopic.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.2415305286127523, - "heat_direct": 0.2937405221219425, - "total_diffuse": 0.2415305286127523, - "total_direct": 0.2937405221219425 + "heat_diffuse": 0.47534785578899597, + "heat_direct": 0.5717624687611994, + "total_diffuse": 0.47534785578899597, + "total_direct": 0.5717624687611994 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.28874707204430783, - "heat_direct": 0.31377944524529644, - "total_diffuse": 0.28874707204430783, - "total_direct": 0.31377944524529644 + "heat_diffuse": 0.5977815175986634, + "heat_direct": 0.6441607347397781, + "total_diffuse": 0.5977815175986634, + "total_direct": 0.6441607347397781 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.02693894843963911, - "heat_direct": 0.02561307111348202, - "total_diffuse": 0.02693894843963911, - "total_direct": 0.02561307111348202 + "heat_diffuse": 0.02261865881608339, + "heat_direct": 0.02051191634208236, + "total_diffuse": 0.02261865881608339, + "total_direct": 0.02051191634208236 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.007833349912253285, - "heat_direct": 0.006372552969013971, - "total_diffuse": 0.007833349912253285, - "total_direct": 0.006372552969013971 + "heat_diffuse": 0.006505173116027383, + "heat_direct": 0.005017120224111431, + "total_diffuse": 0.006505173116027383, + "total_direct": 0.005017120224111431 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.4134160671002959, - "direct_diffuse": 0.28867158783141894, - "direct_direct": 0.09273336540009981, - "direct_hemispherical": 0.38140495323151874 + "diffuse_diffuse": 0.2424995970694102, + "direct_diffuse": 0.09059957419522739, + "direct_direct": 0.08565110317249496, + "direct_hemispherical": 0.17625067736772235 }, "transmittance": { - "diffuse_diffuse": 0.318114455847312, - "direct_diffuse": 0.13775380948934027, - "direct_direct": 0.16148764404371643, - "direct_hemispherical": 0.2992414535330567 + "diffuse_diffuse": 0.2595338883255109, + "direct_diffuse": 0.07222551045306294, + "direct_direct": 0.1592494270759333, + "direct_hemispherical": 0.23147493752899623 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.383072833592117, - "direct_diffuse": 0.3912723468572205, - "direct_direct": 0.014355545502743967, - "direct_hemispherical": 0.4056278923599645 + "diffuse_diffuse": 0.12839001343525977, + "direct_diffuse": 0.12186198325408006, + "direct_direct": 0.006277619317472155, + "direct_hemispherical": 0.1281396025715522 }, "transmittance": { - "diffuse_diffuse": 0.3203467444513203, - "direct_diffuse": 0.11272621549718309, - "direct_direct": 0.16149389392854224, - "direct_hemispherical": 0.27422010942572533 + "diffuse_diffuse": 0.2673232958500488, + "direct_diffuse": 0.06331441629904144, + "direct_direct": 0.15936812616551718, + "direct_hemispherical": 0.22268254246455862 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/solar.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/solar.json index 5650c6b7..fff76b7d 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/solar.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/solar.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.2559818649969538, - "heat_direct": 0.31574030631074307, - "total_diffuse": 0.2559818649969538, - "total_direct": 0.31574030631074307 + "heat_diffuse": 0.4469795588373094, + "heat_direct": 0.5456210273714369, + "total_diffuse": 0.4469795588373094, + "total_direct": 0.5456210273714369 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.33880619853492216, - "heat_direct": 0.3677988425396637, - "total_diffuse": 0.33880619853492216, - "total_direct": 0.3677988425396637 + "heat_diffuse": 0.6161737362055243, + "heat_direct": 0.6629668160185399, + "total_diffuse": 0.6161737362055243, + "total_direct": 0.6629668160185399 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12469512715764863, - "heat_direct": 0.11932223945623863, - "total_diffuse": 0.12469512715764863, - "total_direct": 0.11932223945623863 + "heat_diffuse": 0.10885979460843477, + "heat_direct": 0.10020186466999499, + "total_diffuse": 0.10885979460843477, + "total_direct": 0.10020186466999499 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.03592997949147834, - "heat_direct": 0.02855185264831585, - "total_diffuse": 0.03592997949147834, - "total_direct": 0.02855185264831585 + "heat_diffuse": 0.030767846707832072, + "heat_direct": 0.023472825565225758, + "total_diffuse": 0.030767846707832072, + "total_direct": 0.023472825565225758 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.34179573558695187, - "direct_diffuse": 0.22264545579459188, - "direct_direct": 0.08279956106336532, - "direct_hemispherical": 0.3054450168579572 + "diffuse_diffuse": 0.21208606260865948, + "direct_diffuse": 0.0703924144931853, + "direct_direct": 0.0772800168327062, + "direct_hemispherical": 0.1476724313258915 }, "transmittance": { - "diffuse_diffuse": 0.27752727225844614, - "direct_diffuse": 0.11022474906912752, - "direct_direct": 0.14926768830593398, - "direct_hemispherical": 0.2594924373750615 + "diffuse_diffuse": 0.23207458394559635, + "direct_diffuse": 0.05898110325623865, + "direct_direct": 0.14752357337643826, + "direct_hemispherical": 0.2065046766326769 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.34589218632273766, - "direct_diffuse": 0.35323460994747, - "direct_direct": 0.012980488125155511, - "direct_hemispherical": 0.36621509807262553 + "diffuse_diffuse": 0.11511277664975551, + "direct_diffuse": 0.10955946360599568, + "direct_direct": 0.005672103666247625, + "direct_hemispherical": 0.1152315672722433 }, "transmittance": { - "diffuse_diffuse": 0.27937163565086215, - "direct_diffuse": 0.08816189012642683, - "direct_direct": 0.14927231661296814, - "direct_hemispherical": 0.23743420673939497 + "diffuse_diffuse": 0.2379456404368879, + "direct_diffuse": 0.05071317690558805, + "direct_direct": 0.14761561423840347, + "direct_hemispherical": 0.19832879114399152 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/tdw.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/tdw.json index 75fc71d2..1ac00aa3 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/tdw.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/tdw.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.32889260377820617, - "heat_direct": 0.40327879681604795, - "total_diffuse": 0.32889260377820617, - "total_direct": 0.40327879681604795 + "heat_diffuse": 0.4799330316362484, + "heat_direct": 0.5829357311245992, + "total_diffuse": 0.4799330316362484, + "total_direct": 0.5829357311245992 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.4567447143681812, - "heat_direct": 0.4903341208998716, - "total_diffuse": 0.4567447143681812, - "total_direct": 0.4903341208998716 + "heat_diffuse": 0.6634375008682395, + "heat_direct": 0.7092694004451163, + "total_diffuse": 0.6634375008682395, + "total_direct": 0.7092694004451163 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.08512172019806954, - "heat_direct": 0.08241224041563112, - "total_diffuse": 0.08512172019806954, - "total_direct": 0.08241224041563112 + "heat_diffuse": 0.08175149837540813, + "heat_direct": 0.07838117301473145, + "total_diffuse": 0.08175149837540813, + "total_direct": 0.07838117301473145 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.021471779362939106, - "heat_direct": 0.015834705746946037, - "total_diffuse": 0.021471779362939106, - "total_direct": 0.015834705746946037 + "heat_diffuse": 0.020466900168383272, + "heat_direct": 0.014973375278995515, + "total_diffuse": 0.020466900168383272, + "total_direct": 0.014973375278995515 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.3243141182914829, - "direct_diffuse": 0.18923372193915988, - "direct_direct": 0.08848976719946457, - "direct_hemispherical": 0.27772348913862444 + "diffuse_diffuse": 0.21290393945887584, + "direct_diffuse": 0.059797868448471334, + "direct_direct": 0.08383784008296787, + "direct_hemispherical": 0.1436357085314392 }, "transmittance": { - "diffuse_diffuse": 0.26167155773224143, - "direct_diffuse": 0.08651269084995028, - "direct_direct": 0.15007278277974645, - "direct_hemispherical": 0.23658547362969673 + "diffuse_diffuse": 0.22541153052946764, + "direct_diffuse": 0.046322996508741, + "direct_direct": 0.14872439082048927, + "direct_hemispherical": 0.19504738732923027 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.2586611692181513, - "direct_diffuse": 0.26365908405751753, - "direct_direct": 0.010492496361849441, - "direct_hemispherical": 0.274151580419367 + "diffuse_diffuse": 0.08607878686979413, + "direct_diffuse": 0.08163288338925917, + "direct_direct": 0.005031644685960569, + "direct_hemispherical": 0.08666452807521974 }, "transmittance": { - "diffuse_diffuse": 0.26312233705072907, - "direct_diffuse": 0.06960304598276967, - "direct_direct": 0.15007654695104572, - "direct_hemispherical": 0.2196795929338154 + "diffuse_diffuse": 0.23001681209358305, + "direct_diffuse": 0.04029699212019214, + "direct_direct": 0.1487957040804765, + "direct_hemispherical": 0.18909269620066863 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index ccdcb8de..c25bcd1a 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.3005608133657136, - "U": 3.24703477270695, + "SHGC": 0.2954064807309276, + "U": 3.199239038728343, "gap_layer_effective_conductivities_shgc": [ - 0.07673092337718643 + 0.0773661741456406 ], "gap_layer_effective_conductivities_u": [ - 0.0965289681325269 + 0.09385627861934363 ], "layer_temperatures_shgc": [ - 316.3972726308871, - 316.4172153900757, - 307.02283573616154, - 306.82707378201803 + 325.3723409986676, + 325.40868163836564, + 310.0633077250988, + 309.7816233456282 ], "layer_temperatures_u": [ - 304.2060343845952, - 304.20135418065706, - 300.892919215559, - 300.81374351713447 + 304.19526850458794, + 304.19055342729814, + 300.8419435019598, + 300.76393325474976 ], - "relative_heat_gain": 243.2203410516675, + "relative_heat_gain": 239.11071040299692, "solid_layer_effective_conductivities_shgc": [ - 1.8938914752727898, - 0.9999999999999999 + 1.9278812769125215, + 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.367631886319564, + 2.3948690182765127, 1.0 ], - "system_effective_conductivity_shgc": 0.12764939977865966, - "system_effective_conductivity_u": 0.1240585866440896 + "system_effective_conductivity_shgc": 0.1055832767955728, + "system_effective_conductivity_u": 0.12084161244040957 } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index 712a3092..1e70d675 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.212954126589766, + "U": 3.2216743786598907, "gap_layer_effective_conductivities_shgc": [ - 0.0752181639676043 + 0.07556478810875998 ], "gap_layer_effective_conductivities_u": [ - 0.07521816396760195 + 0.07556478810876119 ], "layer_temperatures_shgc": [ - 257.88010268410926, - 257.90005214325896, - 276.832699806489, - 277.2146301016141 + 257.8559292635, + 257.87567057566235, + 276.78785167285, + 277.1708185618122 ], "layer_temperatures_u": [ - 257.88010268411034, - 257.90005214326004, - 276.8326998064904, - 277.2146301016154 + 257.85592926350205, + 257.87567057566446, + 276.7878516728526, + 277.1708185618147 ], - "relative_heat_gain": 24.99678310486845, + "relative_heat_gain": 25.06462666597348, "solid_layer_effective_conductivities_shgc": [ - 2.245109184316069, + 2.2652738114197586, 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.245109184314757, - 0.9999999999999999 + 2.2652738114197972, + 1.0 ], - "system_effective_conductivity_shgc": 0.10499740274490472, - "system_effective_conductivity_u": 0.10499740274488206 + "system_effective_conductivity_shgc": 0.10538941957214815, + "system_effective_conductivity_u": 0.10538941957214448 } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/tkr.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/tkr.json index 927a4090..ec9a9892 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/tkr.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/tkr.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.3713421810568209, - "heat_direct": 0.46050698748347507, - "total_diffuse": 0.3713421810568209, - "total_direct": 0.46050698748347507 + "heat_diffuse": 0.4430775618170457, + "heat_direct": 0.5459903677822615, + "total_diffuse": 0.4430775618170457, + "total_direct": 0.5459903677822615 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.6200614466618799, - "heat_direct": 0.6613380320538697, - "total_diffuse": 0.6200614466618799, - "total_direct": 0.6613380320538697 + "heat_diffuse": 0.7257341267562953, + "heat_direct": 0.7716642010901683, + "total_diffuse": 0.7257341267562953, + "total_direct": 0.7716642010901683 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.20341197256107765, - "heat_direct": 0.20018178323728023, - "total_diffuse": 0.20341197256107765, - "total_direct": 0.20018178323728023 + "heat_diffuse": 0.2009349145073319, + "heat_direct": 0.1971174642201741, + "total_diffuse": 0.2009349145073319, + "total_direct": 0.1971174642201741 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.049952785265346425, - "heat_direct": 0.03623551129797334, - "total_diffuse": 0.049952785265346425, - "total_direct": 0.03623551129797334 + "heat_diffuse": 0.04916105431869655, + "heat_direct": 0.03584659513859816, + "total_diffuse": 0.04916105431869655, + "total_direct": 0.03584659513859816 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.23046613628503754, - "direct_diffuse": 0.09132888304553559, - "direct_direct": 0.08004914449303067, - "direct_hemispherical": 0.17137802753856626 + "diffuse_diffuse": 0.1771847026177372, + "direct_diffuse": 0.02912681853928474, + "direct_direct": 0.07779486019256084, + "direct_hemispherical": 0.10692167873184558 }, "transmittance": { - "diffuse_diffuse": 0.19477971009706446, - "direct_diffuse": 0.039083606445125846, - "direct_direct": 0.12884959529555262, - "direct_hemispherical": 0.16793320174067847 + "diffuse_diffuse": 0.17880282105788542, + "direct_diffuse": 0.02168495783965893, + "direct_direct": 0.12828553142606, + "direct_hemispherical": 0.14997048926571893 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.13451193111881532, - "direct_diffuse": 0.13657301931820706, - "direct_direct": 0.006506031644658415, - "direct_hemispherical": 0.14307905096286547 + "diffuse_diffuse": 0.04444838505317412, + "direct_diffuse": 0.04191348731138018, + "direct_direct": 0.0036609520847273587, + "direct_hemispherical": 0.04557443939610754 }, "transmittance": { - "diffuse_diffuse": 0.1954738369539584, - "direct_diffuse": 0.030496244435995468, - "direct_direct": 0.1288511612492963, - "direct_hemispherical": 0.15934740568529177 + "diffuse_diffuse": 0.18065643387183347, + "direct_diffuse": 0.01859962553578623, + "direct_direct": 0.12831513883933984, + "direct_hemispherical": 0.14691476437512607 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/tuv.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/tuv.json index 93a5dc83..397877bf 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/tuv.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/tuv.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.45184124053891334, - "heat_direct": 0.5608670125242416, - "total_diffuse": 0.45184124053891334, - "total_direct": 0.5608670125242416 + "heat_diffuse": 0.4656445161977826, + "heat_direct": 0.5775445222352894, + "total_diffuse": 0.4656445161977826, + "total_direct": 0.5775445222352894 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.7461503171310493, - "heat_direct": 0.7920520131840684, - "total_diffuse": 0.7461503171310493, - "total_direct": 0.7920520131840684 + "heat_diffuse": 0.773838662159067, + "heat_direct": 0.8194904523757612, + "total_diffuse": 0.773838662159067, + "total_direct": 0.8194904523757612 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.219797192602522, - "heat_direct": 0.2126035981540024, - "total_diffuse": 0.219797192602522, - "total_direct": 0.2126035981540024 + "heat_diffuse": 0.21804824086244143, + "heat_direct": 0.21037466779040603, + "total_diffuse": 0.21804824086244143, + "total_direct": 0.21037466779040603 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.05326713807510635, - "heat_direct": 0.037956946067828595, - "total_diffuse": 0.05326713807510635, - "total_direct": 0.037956946067828595 + "heat_diffuse": 0.05277267922577237, + "heat_direct": 0.037900297995003135, + "total_diffuse": 0.05277267922577237, + "total_direct": 0.037900297995003135 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.16568824450217864, - "direct_diffuse": 0.01857147387737576, - "direct_direct": 0.07688861940803454, - "direct_hemispherical": 0.0954600932854103 + "diffuse_diffuse": 0.1553828261200906, + "direct_diffuse": 0.006152292529472969, + "direct_direct": 0.07641792822832436, + "direct_hemispherical": 0.08257022075779732 }, "transmittance": { - "diffuse_diffuse": 0.16267332235638654, - "direct_diffuse": 0.0052928971093668675, - "direct_direct": 0.12577639892697892, - "direct_hemispherical": 0.1310692960363458 + "diffuse_diffuse": 0.16092441681968522, + "direct_diffuse": 0.0037610773761901917, + "direct_direct": 0.12574951184031702, + "direct_hemispherical": 0.1295105892165072 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.037772759334551056, - "direct_diffuse": 0.03762522651267392, - "direct_direct": 0.0034986900133637663, - "direct_hemispherical": 0.04112391652603769 + "diffuse_diffuse": 0.012460141278615862, + "direct_diffuse": 0.011228084305519859, + "direct_direct": 0.002697485299650389, + "direct_hemispherical": 0.013925569605170248 }, "transmittance": { - "diffuse_diffuse": 0.1628097854592928, - "direct_diffuse": 0.0030906708236543845, - "direct_direct": 0.12577645339841095, - "direct_hemispherical": 0.12886712422206534 + "diffuse_diffuse": 0.16092851733654423, + "direct_diffuse": 0.0029331061222372667, + "direct_direct": 0.12575057390182812, + "direct_hemispherical": 0.12868368002406538 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/photopic.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/photopic.json index 0f64cdbd..0ef64564 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/photopic.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/photopic.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.2415305286127523, - "heat_direct": 0.19895884975280023, - "total_diffuse": 0.2415305286127523, - "total_direct": 0.19895884975280023 + "heat_diffuse": 0.47534785578899597, + "heat_direct": 0.37858579685517946, + "total_diffuse": 0.47534785578899597, + "total_direct": 0.37858579685517946 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.28874707204430783, - "heat_direct": 0.3729525149292724, - "total_diffuse": 0.28874707204430783, - "total_direct": 0.3729525149292724 + "heat_diffuse": 0.5977815175986634, + "heat_direct": 0.7542308405349483, + "total_diffuse": 0.5977815175986634, + "total_direct": 0.7542308405349483 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.02693894843963911, - "heat_direct": 0.0234544219908863, - "total_diffuse": 0.02693894843963911, - "total_direct": 0.0234544219908863 + "heat_diffuse": 0.02261865881608339, + "heat_direct": 0.0202588002541505, + "total_diffuse": 0.02261865881608339, + "total_direct": 0.0202588002541505 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.007833349912253285, - "heat_direct": 0.0034428016551410344, - "total_diffuse": 0.007833349912253285, - "total_direct": 0.0034428016551410344 + "heat_diffuse": 0.006505173116027383, + "heat_direct": 0.0019673270002471925, + "total_diffuse": 0.006505173116027383, + "total_direct": 0.0019673270002471925 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.4134160671002959, - "direct_diffuse": 0.1911467442748353, - "direct_direct": 0.08973485234090504, - "direct_hemispherical": 0.28088159661574036 + "diffuse_diffuse": 0.2424995970694102, + "direct_diffuse": 0.06489869036625837, + "direct_direct": 0.08514368135137296, + "direct_hemispherical": 0.15004237171763132 }, "transmittance": { - "diffuse_diffuse": 0.318114455847312, - "direct_diffuse": 0.09643044539610274, - "direct_direct": 0.4002746862444706, - "direct_hemispherical": 0.49670513164057334 + "diffuse_diffuse": 0.2595338883255109, + "direct_diffuse": 0.05136584344072381, + "direct_direct": 0.39974718773231493, + "direct_hemispherical": 0.45111303117303875 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.383072833592117, - "direct_diffuse": 0.48811987954259634, - "direct_direct": 0.009238370302842509, - "direct_hemispherical": 0.49735824984543886 + "diffuse_diffuse": 0.12839001343525977, + "direct_diffuse": 0.17025464386237332, + "direct_direct": 0.003059864404844776, + "direct_hemispherical": 0.1733145082672181 }, "transmittance": { - "diffuse_diffuse": 0.3203467444513203, - "direct_diffuse": 0.12277414063167835, - "direct_direct": 0.0034722929384695947, - "direct_hemispherical": 0.12624643357014795 + "diffuse_diffuse": 0.2673232958500488, + "direct_diffuse": 0.06979115184147033, + "direct_direct": 0.000696172356116123, + "direct_hemispherical": 0.07048732419758645 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/solar.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/solar.json index bc61141e..b90fd7b7 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/solar.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/solar.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.2559818649969538, - "heat_direct": 0.21355288049268267, - "total_diffuse": 0.2559818649969538, - "total_direct": 0.21355288049268267 + "heat_diffuse": 0.4469795588373094, + "heat_direct": 0.36167794614331716, + "total_diffuse": 0.4469795588373094, + "total_direct": 0.36167794614331716 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.33880619853492216, - "heat_direct": 0.4378880305880963, - "total_diffuse": 0.33880619853492216, - "total_direct": 0.4378880305880963 + "heat_diffuse": 0.6161737362055243, + "heat_direct": 0.7796384026209644, + "total_diffuse": 0.6161737362055243, + "total_direct": 0.7796384026209644 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12469512715764863, - "heat_direct": 0.11150022663502498, - "total_diffuse": 0.12469512715764863, - "total_direct": 0.11150022663502498 + "heat_diffuse": 0.10885979460843477, + "heat_direct": 0.0995661214213697, + "total_diffuse": 0.10885979460843477, + "total_direct": 0.0995661214213697 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.03592997949147834, - "heat_direct": 0.013550572256580986, - "total_diffuse": 0.03592997949147834, - "total_direct": 0.013550572256580986 + "heat_diffuse": 0.030767846707832072, + "heat_direct": 0.007995830674024137, + "total_diffuse": 0.030767846707832072, + "total_direct": 0.007995830674024137 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.34179573558695187, - "direct_diffuse": 0.14714522313615447, - "direct_direct": 0.08038435599284623, - "direct_hemispherical": 0.22752957912900068 + "diffuse_diffuse": 0.21208606260865948, + "direct_diffuse": 0.05030350494671179, + "direct_direct": 0.07682034522936332, + "direct_hemispherical": 0.1271238501760751 }, "transmittance": { - "diffuse_diffuse": 0.27752727225844614, - "direct_diffuse": 0.07709129166930345, - "direct_direct": 0.3703260220739885, - "direct_hemispherical": 0.44741731374329197 + "diffuse_diffuse": 0.23207458394559635, + "direct_diffuse": 0.04171012675524799, + "direct_direct": 0.3699219555039899, + "direct_hemispherical": 0.41163208225923786 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.34589218632273766, - "direct_diffuse": 0.4413815773041149, - "direct_direct": 0.008353594505074747, - "direct_hemispherical": 0.44973517180918965 + "diffuse_diffuse": 0.11511277664975551, + "direct_diffuse": 0.1531620835893435, + "direct_direct": 0.0027554434340902926, + "direct_hemispherical": 0.15591752702343378 }, "transmittance": { - "diffuse_diffuse": 0.27937163565086215, - "direct_diffuse": 0.09611746113208308, - "direct_direct": 0.0027087642140500574, - "direct_hemispherical": 0.09882622534613314 + "diffuse_diffuse": 0.2379456404368879, + "direct_diffuse": 0.05590385919636792, + "direct_direct": 0.000544380485209558, + "direct_hemispherical": 0.05644823968157748 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/tdw.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/tdw.json index bfc3c6f7..e1f5b017 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/tdw.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/tdw.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.32889260377820617, - "heat_direct": 0.27250024789349225, - "total_diffuse": 0.32889260377820617, - "total_direct": 0.27250024789349225 + "heat_diffuse": 0.4799330316362484, + "heat_direct": 0.3884351480878079, + "total_diffuse": 0.4799330316362484, + "total_direct": 0.3884351480878079 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.4567447143681812, - "heat_direct": 0.5844507531301715, - "total_diffuse": 0.4567447143681812, - "total_direct": 0.5844507531301715 + "heat_diffuse": 0.6634375008682395, + "heat_direct": 0.8377437286052417, + "total_diffuse": 0.6634375008682395, + "total_direct": 0.8377437286052417 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.08512172019806954, - "heat_direct": 0.0814105484766974, - "total_diffuse": 0.08512172019806954, - "total_direct": 0.0814105484766974 + "heat_diffuse": 0.08175149837540813, + "heat_direct": 0.07890140367296285, + "total_diffuse": 0.08175149837540813, + "total_direct": 0.07890140367296285 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.021471779362939106, - "heat_direct": 0.0025112633358791644, - "total_diffuse": 0.021471779362939106, - "total_direct": 0.0025112633358791644 + "heat_diffuse": 0.020466900168383272, + "heat_direct": 0.0015805440705803264, + "total_diffuse": 0.020466900168383272, + "total_direct": 0.0015805440705803264 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.3243141182914829, - "direct_diffuse": 0.12516486981297692, - "direct_direct": 0.08655302523036999, - "direct_hemispherical": 0.21171789504334693 + "diffuse_diffuse": 0.21290393945887584, + "direct_diffuse": 0.04282632503174921, + "direct_direct": 0.08354027859083457, + "direct_hemispherical": 0.12636660362258378 }, "transmittance": { - "diffuse_diffuse": 0.26167155773224143, - "direct_diffuse": 0.06049683653637361, - "direct_direct": 0.37387447205009006, - "direct_hemispherical": 0.43437130858646367 + "diffuse_diffuse": 0.22541153052946764, + "direct_diffuse": 0.032750725596603136, + "direct_direct": 0.37354611902004264, + "direct_hemispherical": 0.4062968446166458 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.2586611692181513, - "direct_diffuse": 0.3293284268821565, - "direct_direct": 0.006242577966038539, - "direct_hemispherical": 0.3355710048481951 + "diffuse_diffuse": 0.08607878686979413, + "direct_diffuse": 0.11400788153319567, + "direct_direct": 0.002054595014317966, + "direct_hemispherical": 0.11606247654751364 }, "transmittance": { - "diffuse_diffuse": 0.26312233705072907, - "direct_diffuse": 0.0753871931502628, - "direct_direct": 0.0020797855354917115, - "direct_hemispherical": 0.0774669786857545 + "diffuse_diffuse": 0.23001681209358305, + "direct_diffuse": 0.044195310897994694, + "direct_direct": 0.000417939878669553, + "direct_hemispherical": 0.04461325077666425 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 4002973e..7de2138b 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.16237058991141332, - "U": 3.24703477270695, + "SHGC": 0.15969224222356831, + "U": 3.199239038728343, "gap_layer_effective_conductivities_shgc": [ - 0.07810769418709941 + 0.07926144538654571 ], "gap_layer_effective_conductivities_u": [ - 0.0965289681325269 + 0.09385627861934363 ], "layer_temperatures_shgc": [ - 318.40598196602417, - 318.4292051832432, - 307.0794195055664, - 306.8647596285257 + 328.68085867368967, + 328.72279785491435, + 310.62799927178366, + 310.31312989322873 ], "layer_temperatures_u": [ - 304.2060343845952, - 304.20135418065706, - 300.892919215559, - 300.81374351713447 + 304.19526850458794, + 304.19055342729814, + 300.8419435019598, + 300.76393325474976 ], - "relative_heat_gain": 143.0086031467212, + "relative_heat_gain": 140.69448847852385, "solid_layer_effective_conductivities_shgc": [ - 1.888228671845878, + 1.9266647553535492, 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.367631886319564, + 2.3948690182765127, 1.0 ], - "system_effective_conductivity_shgc": 0.10630845993592518, - "system_effective_conductivity_u": 0.1240585866440896 + "system_effective_conductivity_shgc": 0.0938788529136097, + "system_effective_conductivity_u": 0.12084161244040957 } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index 712a3092..1e70d675 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.212954126589766, + "U": 3.2216743786598907, "gap_layer_effective_conductivities_shgc": [ - 0.0752181639676043 + 0.07556478810875998 ], "gap_layer_effective_conductivities_u": [ - 0.07521816396760195 + 0.07556478810876119 ], "layer_temperatures_shgc": [ - 257.88010268410926, - 257.90005214325896, - 276.832699806489, - 277.2146301016141 + 257.8559292635, + 257.87567057566235, + 276.78785167285, + 277.1708185618122 ], "layer_temperatures_u": [ - 257.88010268411034, - 257.90005214326004, - 276.8326998064904, - 277.2146301016154 + 257.85592926350205, + 257.87567057566446, + 276.7878516728526, + 277.1708185618147 ], - "relative_heat_gain": 24.99678310486845, + "relative_heat_gain": 25.06462666597348, "solid_layer_effective_conductivities_shgc": [ - 2.245109184316069, + 2.2652738114197586, 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.245109184314757, - 0.9999999999999999 + 2.2652738114197972, + 1.0 ], - "system_effective_conductivity_shgc": 0.10499740274490472, - "system_effective_conductivity_u": 0.10499740274488206 + "system_effective_conductivity_shgc": 0.10538941957214815, + "system_effective_conductivity_u": 0.10538941957214448 } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/tkr.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/tkr.json index b0c227b6..b2fe2f42 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/tkr.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/tkr.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.3713421810568209, - "heat_direct": 0.3102871837161106, - "total_diffuse": 0.3713421810568209, - "total_direct": 0.3102871837161106 + "heat_diffuse": 0.4430775618170457, + "heat_direct": 0.36533356265354955, + "total_diffuse": 0.4430775618170457, + "total_direct": 0.36533356265354955 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.6200614466618799, - "heat_direct": 0.7904171758527706, - "total_diffuse": 0.6200614466618799, - "total_direct": 0.7904171758527706 + "heat_diffuse": 0.7257341267562953, + "heat_direct": 0.9185833915416691, + "total_diffuse": 0.7257341267562953, + "total_direct": 0.9185833915416691 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.20341197256107765, - "heat_direct": 0.2007573313900834, - "total_diffuse": 0.20341197256107765, - "total_direct": 0.2007573313900834 + "heat_diffuse": 0.2009349145073319, + "heat_direct": 0.19887126849682432, + "total_diffuse": 0.2009349145073319, + "total_direct": 0.19887126849682432 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.049952785265346425, - "heat_direct": 0.0018090282266277026, - "total_diffuse": 0.049952785265346425, - "total_direct": 0.0018090282266277026 + "heat_diffuse": 0.04916105431869655, + "heat_direct": 0.001397857912108008, + "total_diffuse": 0.04916105431869655, + "total_direct": 0.001397857912108008 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.23046613628503754, - "direct_diffuse": 0.06031294539333551, - "direct_direct": 0.07914363643071026, - "direct_hemispherical": 0.13945658182404577 + "diffuse_diffuse": 0.1771847026177372, + "direct_diffuse": 0.02086022802131328, + "direct_direct": 0.07768602888117149, + "direct_hemispherical": 0.09854625690248477 }, "transmittance": { - "diffuse_diffuse": 0.19477971009706446, - "direct_diffuse": 0.027278499898317654, - "direct_direct": 0.3222204031714426, - "direct_hemispherical": 0.3494989030697603 + "diffuse_diffuse": 0.17880282105788542, + "direct_diffuse": 0.015174028724860233, + "direct_direct": 0.322074883222281, + "direct_hemispherical": 0.33724891194714124 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.13451193111881532, - "direct_diffuse": 0.1709326879362574, - "direct_direct": 0.0032490596170018852, - "direct_hemispherical": 0.1741817475532593 + "diffuse_diffuse": 0.04444838505317412, + "direct_diffuse": 0.058554765495091386, + "direct_direct": 0.0010601189826396724, + "direct_hemispherical": 0.059614884477731056 }, "transmittance": { - "diffuse_diffuse": 0.1954738369539584, - "direct_diffuse": 0.03273131096595745, - "direct_direct": 0.000860737401384777, - "direct_hemispherical": 0.03359204836734223 + "diffuse_diffuse": 0.18065643387183347, + "direct_diffuse": 0.020230458779082968, + "direct_direct": 0.00017340728940868283, + "direct_hemispherical": 0.02040386606849165 } } } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/tuv.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/tuv.json index f4a5d95e..f5c085e6 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/tuv.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/tuv.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.45184124053891334, - "heat_direct": 0.3774649765204389, - "total_diffuse": 0.45184124053891334, - "total_direct": 0.3774649765204389 + "heat_diffuse": 0.4656445161977826, + "heat_direct": 0.38807952359469516, + "total_diffuse": 0.4656445161977826, + "total_direct": 0.38807952359469516 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.7461503171310493, - "heat_direct": 0.947605960739715, - "total_diffuse": 0.7461503171310493, - "total_direct": 0.947605960739715 + "heat_diffuse": 0.773838662159067, + "heat_direct": 0.9799641890532012, + "total_diffuse": 0.773838662159067, + "total_direct": 0.9799641890532012 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.219797192602522, - "heat_direct": 0.2141149843636916, - "total_diffuse": 0.219797192602522, - "total_direct": 0.2141149843636916 + "heat_diffuse": 0.21804824086244143, + "heat_direct": 0.2127597092501803, + "total_diffuse": 0.21804824086244143, + "total_direct": 0.2127597092501803 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.05326713807510635, - "heat_direct": 0.0010251974049000038, - "total_diffuse": 0.05326713807510635, - "total_direct": 0.0010251974049000038 + "heat_diffuse": 0.05277267922577237, + "heat_direct": 0.0009750863672346029, + "total_diffuse": 0.05277267922577237, + "total_direct": 0.0009750863672346029 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.16568824450217864, - "direct_diffuse": 0.012178469957375329, - "direct_direct": 0.07675627380965841, - "direct_hemispherical": 0.08893474376703374 + "diffuse_diffuse": 0.1553828261200906, + "direct_diffuse": 0.00441621014577212, + "direct_direct": 0.07645445593552941, + "direct_hemispherical": 0.08087066608130153 }, "transmittance": { - "diffuse_diffuse": 0.16267332235638654, - "direct_diffuse": 0.0036359171646262456, - "direct_direct": 0.31584937818420955, - "direct_hemispherical": 0.3194852953488358 + "diffuse_diffuse": 0.16092441681968522, + "direct_diffuse": 0.0024570011981648876, + "direct_direct": 0.3158330998756581, + "direct_hemispherical": 0.318290101073823 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.037772759334551056, - "direct_diffuse": 0.04741261531376316, - "direct_direct": 0.0009109471345823759, - "direct_hemispherical": 0.048323562448345535 + "diffuse_diffuse": 0.012460141278615862, + "direct_diffuse": 0.015753762270188848, + "direct_direct": 0.00029010496711689006, + "direct_hemispherical": 0.016043867237305737 }, "transmittance": { - "diffuse_diffuse": 0.1628097854592928, - "direct_diffuse": 0.0030148146154232868, - "direct_direct": 3.0464791616054346e-05, - "direct_hemispherical": 0.003045279407039341 + "diffuse_diffuse": 0.16092851733654423, + "direct_diffuse": 0.0030106099874902636, + "direct_direct": 6.247354768143973e-06, + "direct_hemispherical": 0.0030168573422584078 } } } diff --git a/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index c38fcf1e..d1ea6c81 100644 --- a/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.5781035324469842, - "U": 3.219846683073217, + "SHGC": 0.5781035324470264, + "U": 3.2198466830641648, "gap_layer_effective_conductivities_shgc": [ - 0.09301356223728814 + 0.09301356223729021 ], "gap_layer_effective_conductivities_u": [ - 0.09474506377589206 + 0.09474506377590929 ], "layer_temperatures_shgc": [ - 316.9310144801464, - 317.5628610130204, - 341.60490522403825, - 340.84413139299323 + 316.9310144801476, + 317.5628610130216, + 341.60490522403916, + 340.844131392994 ], "layer_temperatures_u": [ - 303.886043570633, - 303.8075308266058, - 300.40432656257053, - 300.25882806808943 + 303.88604357063315, + 303.80753082660596, + 300.4043265625707, + 300.2588280680896 ], - "relative_heat_gain": 444.2751412415008, + "relative_heat_gain": 444.27514124149764, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.1665787492322602 + 0.1665787492322585 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.1719514434597886 + 0.1719514434598095 ], - "system_effective_conductivity_shgc": 0.30486932658571403, - "system_effective_conductivity_u": 0.11551913313443918 + "system_effective_conductivity_shgc": 0.30486932658569726, + "system_effective_conductivity_u": 0.11551913313392848 } diff --git a/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index c4319cca..d4beb33f 100644 --- a/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.1496317364511768, + "U": 3.1496317364504773, "gap_layer_effective_conductivities_shgc": [ - 0.07493395352096612 + 0.07493395352096634 ], "gap_layer_effective_conductivities_u": [ - 0.0749339535209668 + 0.07493395352096462 ], "layer_temperatures_shgc": [ - 259.35046203598824, - 259.7248650717139, - 279.76773353861904, - 280.4431867662429 + 259.35046203598785, + 259.72486507171357, + 279.7677335386185, + 280.44318676624226 ], "layer_temperatures_u": [ - 259.350462035988, - 259.72486507171374, - 279.76773353861927, - 280.4431867662431 + 259.3504620359875, + 259.7248650717132, + 279.7677335386186, + 280.4431867662424 ], - "relative_heat_gain": 24.50413490968316, + "relative_heat_gain": 24.504134909683398, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.1683057897463261 + 0.1683057897463263 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.1683057897463294 + 0.16830578974632954 ], - "system_effective_conductivity_shgc": 0.09026608507456885, - "system_effective_conductivity_u": 0.09026608507450762 + "system_effective_conductivity_shgc": 0.09026608507455851, + "system_effective_conductivity_u": 0.09026608507450437 } diff --git a/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 6bd4950e..ec17b91b 100644 --- a/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.5660669817495734, - "U": 3.219846683073217, + "SHGC": 0.5660669817494067, + "U": 3.2198466830641648, "gap_layer_effective_conductivities_shgc": [ - 0.0940556795996854 + 0.09405567959968446 ], "gap_layer_effective_conductivities_u": [ - 0.09474506377589206 + 0.09474506377590929 ], "layer_temperatures_shgc": [ - 317.46961599770157, - 318.1352617654695, - 343.4128801191241, - 342.62120301869425 + 317.4696159977019, + 318.13526176546986, + 343.4128801191258, + 342.62120301869584 ], "layer_temperatures_u": [ - 303.886043570633, - 303.8075308266058, - 300.40432656257053, - 300.25882806808943 + 303.88604357063315, + 303.80753082660596, + 300.4043265625707, + 300.2588280680896 ], - "relative_heat_gain": 435.546566718507, + "relative_heat_gain": 435.5465667185046, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.16648782984255062 + 0.16648782984255084 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.1719514434597886 + 0.1719514434598095 ], - "system_effective_conductivity_shgc": 0.3042234057178778, - "system_effective_conductivity_u": 0.11551913313443918 + "system_effective_conductivity_shgc": 0.30422340571790146, + "system_effective_conductivity_u": 0.11551913313392848 } diff --git a/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index c4319cca..d4beb33f 100644 --- a/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.1496317364511768, + "U": 3.1496317364504773, "gap_layer_effective_conductivities_shgc": [ - 0.07493395352096612 + 0.07493395352096634 ], "gap_layer_effective_conductivities_u": [ - 0.0749339535209668 + 0.07493395352096462 ], "layer_temperatures_shgc": [ - 259.35046203598824, - 259.7248650717139, - 279.76773353861904, - 280.4431867662429 + 259.35046203598785, + 259.72486507171357, + 279.7677335386185, + 280.44318676624226 ], "layer_temperatures_u": [ - 259.350462035988, - 259.72486507171374, - 279.76773353861927, - 280.4431867662431 + 259.3504620359875, + 259.7248650717132, + 279.7677335386186, + 280.4431867662424 ], - "relative_heat_gain": 24.50413490968316, + "relative_heat_gain": 24.504134909683398, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.1683057897463261 + 0.1683057897463263 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.1683057897463294 + 0.16830578974632954 ], - "system_effective_conductivity_shgc": 0.09026608507456885, - "system_effective_conductivity_u": 0.09026608507450762 + "system_effective_conductivity_shgc": 0.09026608507455851, + "system_effective_conductivity_u": 0.09026608507450437 } diff --git a/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 2658ae08..80bfc3b4 100644 --- a/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.579330130878445, - "U": 3.219846683134598, + "SHGC": 0.5793301308783201, + "U": 3.2198466831342603, "gap_layer_effective_conductivities_shgc": [ - 0.09308235825845243 + 0.09308235825845121 ], "gap_layer_effective_conductivities_u": [ - 0.09474506377589026 + 0.09474506377585316 ], "layer_temperatures_shgc": [ - 316.877686028577, - 317.5094470358073, - 341.6796867337319, - 340.9194807749549 + 316.87768602857733, + 317.5094470358076, + 341.67968673373275, + 340.9194807749558 ], "layer_temperatures_u": [ - 303.8860435706327, - 303.80753082660556, - 300.404326562571, - 300.25882806808977 + 303.88604357063247, + 303.80753082660533, + 300.404326562572, + 300.2588280680908 ], - "relative_heat_gain": 445.16463658693664, + "relative_heat_gain": 445.16463658694187, "solid_layer_effective_conductivities_shgc": [ - 0.9999999999999998, - 0.1665609796124807 + 1.0, + 0.16656097961248115 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17195144345979374 + 0.17195144345979502 ], - "system_effective_conductivity_shgc": 0.3038341038743993, - "system_effective_conductivity_u": 0.11551913313515187 + "system_effective_conductivity_shgc": 0.3038341038744186, + "system_effective_conductivity_u": 0.11551913313511888 } diff --git a/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index f7e840bd..2f584311 100644 --- a/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.1496317364633843, + "U": 3.149631736463348, "gap_layer_effective_conductivities_shgc": [ - 0.0749339535209644 + 0.07493395352096634 ], "gap_layer_effective_conductivities_u": [ - 0.07493395352096494 + 0.07493395352096503 ], "layer_temperatures_shgc": [ - 259.3504620359879, - 259.7248650717137, - 279.7677335386189, - 280.4431867662427 + 259.35046203598785, + 259.72486507171357, + 279.7677335386185, + 280.44318676624226 ], "layer_temperatures_u": [ - 259.35046203598824, - 259.7248650717139, - 279.76773353861904, - 280.4431867662429 + 259.35046203598785, + 259.72486507171357, + 279.7677335386185, + 280.44318676624226 ], - "relative_heat_gain": 24.504134909685092, + "relative_heat_gain": 24.504134909685664, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.1683057897463281 + 0.1683057897463263 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.1683057897463263 + 0.16830578974632845 ], - "system_effective_conductivity_shgc": 0.09026608507455705, - "system_effective_conductivity_u": 0.09026608507455919 + "system_effective_conductivity_shgc": 0.0902660850745658, + "system_effective_conductivity_u": 0.09026608507456019 } diff --git a/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index c93dc549..f90b00d7 100644 --- a/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.5672507196861636, - "U": 3.219846683134598, + "SHGC": 0.5672507196859795, + "U": 3.2198466831342603, "gap_layer_effective_conductivities_shgc": [ - 0.09412384698536115 + 0.09412384698536057 ], "gap_layer_effective_conductivities_u": [ - 0.09474506377589026 + 0.09474506377585316 ], "layer_temperatures_shgc": [ - 317.41819604093894, + 317.41819604093905, 318.08386394350606, - 343.4919605203815, - 342.7007609527639 + 343.491960520382, + 342.7007609527645 ], "layer_temperatures_u": [ - 303.8860435706327, - 303.80753082660556, - 300.404326562571, - 300.25882806808977 + 303.88604357063247, + 303.80753082660533, + 300.404326562572, + 300.2588280680908 ], - "relative_heat_gain": 436.40498081541915, + "relative_heat_gain": 436.4049808154105, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.1664705274706075 + 0.16647052747060598 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17195144345979374 + 0.17195144345979502 ], - "system_effective_conductivity_shgc": 0.3032566817605564, - "system_effective_conductivity_u": 0.11551913313515187 + "system_effective_conductivity_shgc": 0.3032566817605793, + "system_effective_conductivity_u": 0.11551913313511888 } diff --git a/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index f7e840bd..2f584311 100644 --- a/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_2011_SA1_XML_same_solar_and_visible/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.1496317364633843, + "U": 3.149631736463348, "gap_layer_effective_conductivities_shgc": [ - 0.0749339535209644 + 0.07493395352096634 ], "gap_layer_effective_conductivities_u": [ - 0.07493395352096494 + 0.07493395352096503 ], "layer_temperatures_shgc": [ - 259.3504620359879, - 259.7248650717137, - 279.7677335386189, - 280.4431867662427 + 259.35046203598785, + 259.72486507171357, + 279.7677335386185, + 280.44318676624226 ], "layer_temperatures_u": [ - 259.35046203598824, - 259.7248650717139, - 279.76773353861904, - 280.4431867662429 + 259.35046203598785, + 259.72486507171357, + 279.7677335386185, + 280.44318676624226 ], - "relative_heat_gain": 24.504134909685092, + "relative_heat_gain": 24.504134909685664, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.1683057897463281 + 0.1683057897463263 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.1683057897463263 + 0.16830578974632845 ], - "system_effective_conductivity_shgc": 0.09026608507455705, - "system_effective_conductivity_u": 0.09026608507455919 + "system_effective_conductivity_shgc": 0.0902660850745658, + "system_effective_conductivity_u": 0.09026608507456019 } diff --git a/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 19a0a67d..1412375b 100644 --- a/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7410172141178807, - "U": 0.6107751013146532, + "SHGC": 0.7410172141166356, + "U": 0.610775101185109, "gap_layer_effective_conductivities_shgc": [ - 0.10979417531524259 + 0.10979417531525629 ], "gap_layer_effective_conductivities_u": [ - 0.10756024817331455 + 0.10756024817349791 ], "layer_temperatures_shgc": [ - 305.3218755524832, - 305.21411649649804, - 302.09736933417275, - 302.0737571416284 + 305.32187555248464, + 305.21411649649957, + 302.09736933417423, + 302.0737571416298 ], "layer_temperatures_u": [ - 302.0869177758, - 301.89709208765925, - 297.9318953409161, - 297.91700220037956 + 302.0869177758101, + 301.89709208766976, + 297.9318953409419, + 297.9170022004053 ], - "relative_heat_gain": 542.1170721086999, + "relative_heat_gain": 542.1170721086849, "solid_layer_effective_conductivities_shgc": [ - 1.0, + 0.9999999999999999, 1.0 ], "solid_layer_effective_conductivities_u": [ 1.0, - 1.0 + 0.9999999999999999 ], - "system_effective_conductivity_shgc": 0.20728673194308578, - "system_effective_conductivity_u": 0.02202467403480197 + "system_effective_conductivity_shgc": 0.20728673194328967, + "system_effective_conductivity_u": 0.0220246740352887 } diff --git a/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index af9aed93..9bfaaa94 100644 --- a/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 1.5418823772391732, + "U": 1.5418823771931291, "gap_layer_effective_conductivities_shgc": [ - 0.09538467202435004 + 0.09538467202434614 ], "gap_layer_effective_conductivities_u": [ - 0.09538467202436164 + 0.09538467202435161 ], "layer_temperatures_shgc": [ - 263.8182912505491, - 264.5931993034384, - 285.5214978829499, - 285.7047845307373 + 263.81829125054895, + 264.59319930343815, + 285.52149788295156, + 285.704784530739 ], "layer_temperatures_u": [ - 263.8182912505478, - 264.59319930343696, - 285.5214978829511, - 285.7047845307386 + 263.8182912505491, + 264.5931993034384, + 285.5214978829513, + 285.7047845307387 ], - "relative_heat_gain": 11.995844894357878, + "relative_heat_gain": 11.995844894333237, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.05164224448905993, - "system_effective_conductivity_u": 0.051642244488307905 + "system_effective_conductivity_shgc": 0.051642244489047036, + "system_effective_conductivity_u": 0.05164224448882387 } diff --git a/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 4b2860bf..0bebf951 100644 --- a/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7394575520766886, - "U": 0.6107751013146532, + "SHGC": 0.7394575520754509, + "U": 0.610775101185109, "gap_layer_effective_conductivities_shgc": [ - 0.10982157131410207 + 0.10982157131410895 ], "gap_layer_effective_conductivities_u": [ - 0.10756024817331455 + 0.10756024817349791 ], "layer_temperatures_shgc": [ - 305.36289488854703, - 305.25614466119896, - 302.1457897289532, - 302.1220094027863 + 305.36289488854857, + 305.2561446612006, + 302.1457897289557, + 302.1220094027888 ], "layer_temperatures_u": [ - 302.0869177758, - 301.89709208765925, - 297.9318953409161, - 297.91700220037956 + 302.0869177758101, + 301.89709208766976, + 297.9318953409419, + 297.9170022004053 ], - "relative_heat_gain": 540.9860482215978, + "relative_heat_gain": 540.9860482215795, "solid_layer_effective_conductivities_shgc": [ - 1.0, + 1.0000000000000002, 1.0 ], "solid_layer_effective_conductivities_u": [ 1.0, - 1.0 + 0.9999999999999999 ], - "system_effective_conductivity_shgc": 0.20997187225196995, - "system_effective_conductivity_u": 0.02202467403480197 + "system_effective_conductivity_shgc": 0.20997187225224762, + "system_effective_conductivity_u": 0.0220246740352887 } diff --git a/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index af9aed93..9bfaaa94 100644 --- a/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 1.5418823772391732, + "U": 1.5418823771931291, "gap_layer_effective_conductivities_shgc": [ - 0.09538467202435004 + 0.09538467202434614 ], "gap_layer_effective_conductivities_u": [ - 0.09538467202436164 + 0.09538467202435161 ], "layer_temperatures_shgc": [ - 263.8182912505491, - 264.5931993034384, - 285.5214978829499, - 285.7047845307373 + 263.81829125054895, + 264.59319930343815, + 285.52149788295156, + 285.704784530739 ], "layer_temperatures_u": [ - 263.8182912505478, - 264.59319930343696, - 285.5214978829511, - 285.7047845307386 + 263.8182912505491, + 264.5931993034384, + 285.5214978829513, + 285.7047845307387 ], - "relative_heat_gain": 11.995844894357878, + "relative_heat_gain": 11.995844894333237, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.05164224448905993, - "system_effective_conductivity_u": 0.051642244488307905 + "system_effective_conductivity_shgc": 0.051642244489047036, + "system_effective_conductivity_u": 0.05164224448882387 } diff --git a/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 49262950..9e46ce36 100644 --- a/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7427994925799078, - "U": 0.6107751009183919, + "SHGC": 0.7427994925799821, + "U": 0.6107751009251471, "gap_layer_effective_conductivities_shgc": [ - 0.1097724743644836 + 0.10977247436448809 ], "gap_layer_effective_conductivities_u": [ - 0.10756024817297695 + 0.10756024817296161 ], "layer_temperatures_shgc": [ - 305.25362801039125, - 305.1449257871493, - 302.0972782416043, - 302.07431524880644 + 305.25362801039165, + 305.14492578714965, + 302.09727824160495, + 302.07431524880707 ], "layer_temperatures_u": [ - 302.0869177757968, - 301.8970920876558, - 297.9318953409247, - 297.9170022003884 + 302.08691777579526, + 301.8970920876542, + 297.9318953409222, + 297.9170022003859 ], - "relative_heat_gain": 543.4095312845427, + "relative_heat_gain": 543.4095312845394, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.9999999999999999, + 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.21179895357506828, - "system_effective_conductivity_u": 0.02202467404111827 + "system_effective_conductivity_shgc": 0.21179895357551495, + "system_effective_conductivity_u": 0.02202467404100833 } diff --git a/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index 2ff4b643..4d088cee 100644 --- a/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 1.5418823771617576, + "U": 1.5418823771617582, "gap_layer_effective_conductivities_shgc": [ - 0.09538467202434874 + 0.09538467202434517 ], "gap_layer_effective_conductivities_u": [ - 0.09538467202434477 + 0.09538467202434718 ], "layer_temperatures_shgc": [ - 263.8182912505485, - 264.5931993034377, - 285.5214978829496, - 285.704784530737 + 263.8182912505493, + 264.5931993034386, + 285.5214978829524, + 285.70478453073986 ], "layer_temperatures_u": [ - 263.8182912505491, - 264.5931993034384, - 285.5214978829499, - 285.7047845307373 + 263.81829125054895, + 264.59319930343815, + 285.52149788295156, + 285.704784530739 ], - "relative_heat_gain": 11.995844894319522, + "relative_heat_gain": 11.9958448943187, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.05164224448904434, - "system_effective_conductivity_u": 0.051642244489034005 + "system_effective_conductivity_shgc": 0.05164224448903499, + "system_effective_conductivity_u": 0.05164224448903258 } diff --git a/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index c9c794a3..ed0fc0a1 100644 --- a/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7412321071352949, - "U": 0.6107751009183919, + "SHGC": 0.7412321071353575, + "U": 0.6107751009251471, "gap_layer_effective_conductivities_shgc": [ - 0.10979988617606437 + 0.10979988617607404 ], "gap_layer_effective_conductivities_u": [ - 0.10756024817297695 + 0.10756024817296161 ], "layer_temperatures_shgc": [ - 305.29493737616, - 305.1872457414422, - 302.14545524115874, - 302.1223204443847 + 305.29493737615985, + 305.1872457414421, + 302.14545524115886, + 302.12232044438474 ], "layer_temperatures_u": [ - 302.0869177757968, - 301.8970920876558, - 297.9318953409247, - 297.9170022003884 + 302.08691777579526, + 301.8970920876542, + 297.9318953409222, + 297.9170022003859 ], - "relative_heat_gain": 542.2729065983197, + "relative_heat_gain": 542.2729065983136, "solid_layer_effective_conductivities_shgc": [ 0.9999999999999999, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.9999999999999999, + 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.21450470246773337, - "system_effective_conductivity_u": 0.02202467404111827 + "system_effective_conductivity_shgc": 0.21450470246802647, + "system_effective_conductivity_u": 0.02202467404100833 } diff --git a/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index 2ff4b643..4d088cee 100644 --- a/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_forced_ventilation/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 1.5418823771617576, + "U": 1.5418823771617582, "gap_layer_effective_conductivities_shgc": [ - 0.09538467202434874 + 0.09538467202434517 ], "gap_layer_effective_conductivities_u": [ - 0.09538467202434477 + 0.09538467202434718 ], "layer_temperatures_shgc": [ - 263.8182912505485, - 264.5931993034377, - 285.5214978829496, - 285.704784530737 + 263.8182912505493, + 264.5931993034386, + 285.5214978829524, + 285.70478453073986 ], "layer_temperatures_u": [ - 263.8182912505491, - 264.5931993034384, - 285.5214978829499, - 285.7047845307373 + 263.81829125054895, + 264.59319930343815, + 285.52149788295156, + 285.704784530739 ], - "relative_heat_gain": 11.995844894319522, + "relative_heat_gain": 11.9958448943187, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.05164224448904434, - "system_effective_conductivity_u": 0.051642244489034005 + "system_effective_conductivity_shgc": 0.05164224448903499, + "system_effective_conductivity_u": 0.05164224448903258 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index c10914bf..80b8bcef 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7632050870386385, - "U": 2.4746241082539666, + "SHGC": 0.7632570691469664, + "U": 2.4622708110918703, "gap_layer_effective_conductivities_shgc": [ - 0.0005113440627055437 + 0.0005066982465579012 ], "gap_layer_effective_conductivities_u": [ - 0.0004877420993390928 + 0.0004830869124149841 ], "layer_temperatures_shgc": [ - 308.3584589437384, - 308.4404710605994, - 306.1022326452288, - 305.980219132833 + 308.36128248448483, + 308.44347176449867, + 306.095265707428, + 305.97342935818517 ], "layer_temperatures_u": [ - 304.1789515419006, - 304.1186103057137, - 300.0597044010949, - 299.999363164908 + 304.1838051002338, + 304.12376508686714, + 300.04620347674944, + 299.98616346338275 ], - "relative_heat_gain": 572.707850751651, + "relative_heat_gain": 572.6494380851526, "solid_layer_effective_conductivities_shgc": [ 0.9999999999999998, - 1.0 + 0.9999999999999999 ], "solid_layer_effective_conductivities_u": [ 1.0, - 1.0 + 0.9999999999999999 ], - "system_effective_conductivity_shgc": 0.17743293099515955, - "system_effective_conductivity_u": 0.02934790715522307 + "system_effective_conductivity_shgc": 0.1765677783239868, + "system_effective_conductivity_u": 0.029075813033599397 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index 770e0e7f..c919eba8 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.194516721557326, + "U": 2.177402624629615, "gap_layer_effective_conductivities_shgc": [ - 0.00036022659021035596 + 0.00035571103863338836 ], "gap_layer_effective_conductivities_u": [ - 0.00036022659021029763 + 0.0003557110386335049 ], "layer_temperatures_shgc": [ - 258.0790996638008, - 258.33996626384754, - 282.0989431038386, - 282.3598097038854 + 258.05629970269644, + 258.3151319157556, + 282.1880774076958, + 282.44690962075487 ], "layer_temperatures_u": [ - 258.079099663801, - 258.33996626384777, - 282.09894310383464, - 282.3598097038814 + 258.05629970269626, + 258.31513191575544, + 282.18807740769756, + 282.4469096207566 ], - "relative_heat_gain": 17.07334009349969, + "relative_heat_gain": 16.94019241984329, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.02184004563424798, - "system_effective_conductivity_u": 0.021840045634474198 + "system_effective_conductivity_shgc": 0.021572084426023208, + "system_effective_conductivity_u": 0.02157208442578532 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 82171092..4b42ea9d 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7619051413696218, - "U": 2.4746241082539666, + "SHGC": 0.7619575895471986, + "U": 2.4622708110918703, "gap_layer_effective_conductivities_shgc": [ - 0.000511630568933962 + 0.0005069848226069674 ], "gap_layer_effective_conductivities_u": [ - 0.0004877420993390928 + 0.0004830869124149841 ], "layer_temperatures_shgc": [ - 308.4110684391119, - 308.49483712796723, - 306.17149895069355, - 306.0486974697171 + 308.413873862733, + 308.49781860242797, + 306.1645832969082, + 306.04195786677127 ], "layer_temperatures_u": [ - 304.1789515419006, - 304.1186103057137, - 300.0597044010949, - 299.999363164908 + 304.1838051002338, + 304.12376508686714, + 300.04620347674944, + 299.98616346338275 ], - "relative_heat_gain": 571.7651660130583, + "relative_heat_gain": 571.7070913271142, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 ], "solid_layer_effective_conductivities_u": [ 1.0, - 1.0 + 0.9999999999999999 ], - "system_effective_conductivity_shgc": 0.18016326935205212, - "system_effective_conductivity_u": 0.02934790715522307 + "system_effective_conductivity_shgc": 0.17928737793834462, + "system_effective_conductivity_u": 0.029075813033599397 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index 770e0e7f..c919eba8 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.194516721557326, + "U": 2.177402624629615, "gap_layer_effective_conductivities_shgc": [ - 0.00036022659021035596 + 0.00035571103863338836 ], "gap_layer_effective_conductivities_u": [ - 0.00036022659021029763 + 0.0003557110386335049 ], "layer_temperatures_shgc": [ - 258.0790996638008, - 258.33996626384754, - 282.0989431038386, - 282.3598097038854 + 258.05629970269644, + 258.3151319157556, + 282.1880774076958, + 282.44690962075487 ], "layer_temperatures_u": [ - 258.079099663801, - 258.33996626384777, - 282.09894310383464, - 282.3598097038814 + 258.05629970269626, + 258.31513191575544, + 282.18807740769756, + 282.4469096207566 ], - "relative_heat_gain": 17.07334009349969, + "relative_heat_gain": 16.94019241984329, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.02184004563424798, - "system_effective_conductivity_u": 0.021840045634474198 + "system_effective_conductivity_shgc": 0.021572084426023208, + "system_effective_conductivity_u": 0.02157208442578532 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 2a8b61a7..da9bedc3 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,25 +1,25 @@ { - "SHGC": 0.7649768693020919, - "U": 2.4746241085018372, + "SHGC": 0.7650315404623101, + "U": 2.4622708107673543, "gap_layer_effective_conductivities_shgc": [ - 0.0005111416819248765 + 0.0005064961984100286 ], "gap_layer_effective_conductivities_u": [ - 0.0004877420993156667 + 0.000483086912449141 ], "layer_temperatures_shgc": [ - 308.27442136684266, - 308.35446579176374, - 306.10111585944287, - 305.9797765968638 + 308.2771432301536, + 308.357358400574, + 306.094401261531, + 305.9732327444512 ], "layer_temperatures_u": [ - 304.17895154189586, - 304.11861030570867, - 300.05970440121405, - 299.9993631650269 + 304.1838051002411, + 304.1237650868747, + 300.046203476568, + 299.9861634632016 ], - "relative_heat_gain": 573.9926983708552, + "relative_heat_gain": 573.9362357322658, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.18388667033061493, - "system_effective_conductivity_u": 0.029347907162660947 + "system_effective_conductivity_shgc": 0.18299647320144577, + "system_effective_conductivity_u": 0.029075813023703077 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index 935f6c0f..de2d211d 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.1945167215277075, + "U": 2.177402624660582, "gap_layer_effective_conductivities_shgc": [ - 0.0003602265902104016 + 0.00035571103863340977 ], "gap_layer_effective_conductivities_u": [ - 0.00036022659021043684 + 0.00035571103863338554 ], "layer_temperatures_shgc": [ - 258.07909966380157, - 258.3399662638484, - 282.0989431038375, - 282.3598097038843 + 258.0562997026966, + 258.3151319157558, + 282.18807740769444, + 282.4469096207535 ], "layer_temperatures_u": [ - 258.0790996638008, - 258.33996626384754, - 282.0989431038386, - 282.3598097038854 + 258.05629970269644, + 258.3151319157556, + 282.1880774076958, + 282.44690962075487 ], - "relative_heat_gain": 17.073340093484774, + "relative_heat_gain": 16.94019241985802, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.021840045634255664, - "system_effective_conductivity_u": 0.021840045634254127 + "system_effective_conductivity_shgc": 0.0215720844260206, + "system_effective_conductivity_u": 0.021572084426016658 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 6a5e7e10..c647caf3 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,25 +1,25 @@ { - "SHGC": 0.7636679317707167, - "U": 2.4746241085018372, + "SHGC": 0.7637230470962132, + "U": 2.4622708107673543, "gap_layer_effective_conductivities_shgc": [ - 0.0005114281481743171 + 0.0005067827312481764 ], "gap_layer_effective_conductivities_u": [ - 0.0004877420993156667 + 0.000483086912449141 ], "layer_temperatures_shgc": [ - 308.32738351565877, - 308.40919006800493, - 306.170038926967, - 306.0479110527372 + 308.3300881028418, + 308.41206434064964, + 306.16337324852407, + 306.04141505975593 ], "layer_temperatures_u": [ - 304.17895154189586, - 304.11861030570867, - 300.05970440121405, - 299.9993631650269 + 304.1838051002411, + 304.1237650868747, + 300.046203476568, + 299.9861634632016 ], - "relative_heat_gain": 573.0434929817714, + "relative_heat_gain": 572.9873524395691, "solid_layer_effective_conductivities_shgc": [ 1.0, 0.9999999999999999 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.18669701998112703, - "system_effective_conductivity_u": 0.029347907162660947 + "system_effective_conductivity_shgc": 0.18579577332284086, + "system_effective_conductivity_u": 0.029075813023703077 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index 935f6c0f..de2d211d 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.1945167215277075, + "U": 2.177402624660582, "gap_layer_effective_conductivities_shgc": [ - 0.0003602265902104016 + 0.00035571103863340977 ], "gap_layer_effective_conductivities_u": [ - 0.00036022659021043684 + 0.00035571103863338554 ], "layer_temperatures_shgc": [ - 258.07909966380157, - 258.3399662638484, - 282.0989431038375, - 282.3598097038843 + 258.0562997026966, + 258.3151319157558, + 282.18807740769444, + 282.4469096207535 ], "layer_temperatures_u": [ - 258.0790996638008, - 258.33996626384754, - 282.0989431038386, - 282.3598097038854 + 258.05629970269644, + 258.3151319157556, + 282.1880774076958, + 282.44690962075487 ], - "relative_heat_gain": 17.073340093484774, + "relative_heat_gain": 16.94019241985802, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.021840045634255664, - "system_effective_conductivity_u": 0.021840045634254127 + "system_effective_conductivity_shgc": 0.0215720844260206, + "system_effective_conductivity_u": 0.021572084426016658 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 18955f02..98517cb3 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7632292923876183, - "U": 2.468870577423126, + "SHGC": 0.7632769441879876, + "U": 2.4575502521786343, "gap_layer_effective_conductivities_shgc": [ - 0.0005091750534185067 + 0.0005049339926601853 ], "gap_layer_effective_conductivities_u": [ - 0.00048556872757020165 + 0.0004813190735033689 ], "layer_temperatures_shgc": [ - 308.3597742061607, - 308.4418688490394, - 306.0989874049258, - 305.9770564185479 + 308.3623610131056, + 308.44461796578014, + 306.0926042820926, + 305.9708356055105 ], "layer_temperatures_u": [ - 304.1812120876036, - 304.12101114552934, - 300.05341710711946, - 299.9932161650452 + 304.1856597716695, + 304.1257348644143, + 300.0410427972229, + 299.9811178899676 ], - "relative_heat_gain": 572.6806413274209, + "relative_heat_gain": 572.6271249669786, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.9999999999999999 + 1.0 ], "solid_layer_effective_conductivities_u": [ 0.9999999999999999, - 0.9999999999999999 + 1.0 ], - "system_effective_conductivity_shgc": 0.17702906439029428, - "system_effective_conductivity_u": 0.029220892977236308 + "system_effective_conductivity_shgc": 0.17623912948108444, + "system_effective_conductivity_u": 0.02897244412559167 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index d0fb14fe..fc649a0a 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.186546169987418, + "U": 2.1708621623367246, "gap_layer_effective_conductivities_shgc": [ - 0.0003581182363661052 + 0.00035399659473049784 ], "gap_layer_effective_conductivities_u": [ - 0.0003581182363659921 + 0.0003539965947306659 ], "layer_temperatures_shgc": [ - 258.06848111767806, - 258.32840024228705, - 282.1404522319329, - 282.4003713565418 + 258.04758610584406, + 258.3056408410459, + 282.22214896372265, + 282.48020369892436 ], "layer_temperatures_u": [ - 258.0684811176779, - 258.3284002422869, - 282.140452231929, - 282.40037135653796 + 258.0475861058444, + 258.3056408410462, + 282.22214896372697, + 282.4802036989288 ], - "relative_heat_gain": 17.011329202203406, + "relative_heat_gain": 16.889307623271367, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.021714949972796275, - "system_effective_conductivity_u": 0.02171494997310776 + "system_effective_conductivity_shgc": 0.02147030832200375, + "system_effective_conductivity_u": 0.02147030832168897 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index aeb481e1..3e985d56 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7619295637725125, - "U": 2.468870577423126, + "SHGC": 0.761977642728196, + "U": 2.4575502521786343, "gap_layer_effective_conductivities_shgc": [ - 0.0005094615921615754 + 0.0005052205954009114 ], "gap_layer_effective_conductivities_u": [ - 0.00048556872757020165 + 0.0004813190735033689 ], "layer_temperatures_shgc": [ - 308.41237526418695, - 308.4962259610481, - 306.16827759275736, - 306.0455581197866 + 308.4149454668262, + 308.4989574540358, + 306.1619414752725, + 306.0393832926502 ], "layer_temperatures_u": [ - 304.1812120876036, - 304.12101114552934, - 300.05341710711946, - 299.9932161650452 + 304.1856597716695, + 304.1257348644143, + 300.0410427972229, + 299.9811178899676 ], - "relative_heat_gain": 571.7381139888331, + "relative_heat_gain": 571.6849073911388, "solid_layer_effective_conductivities_shgc": [ - 0.9999999999999999, + 1.0, 1.0 ], "solid_layer_effective_conductivities_u": [ 0.9999999999999999, - 0.9999999999999999 + 1.0 ], - "system_effective_conductivity_shgc": 0.17975438944207037, - "system_effective_conductivity_u": 0.029220892977236308 + "system_effective_conductivity_shgc": 0.1789546503805072, + "system_effective_conductivity_u": 0.02897244412559167 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index d0fb14fe..fc649a0a 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.186546169987418, + "U": 2.1708621623367246, "gap_layer_effective_conductivities_shgc": [ - 0.0003581182363661052 + 0.00035399659473049784 ], "gap_layer_effective_conductivities_u": [ - 0.0003581182363659921 + 0.0003539965947306659 ], "layer_temperatures_shgc": [ - 258.06848111767806, - 258.32840024228705, - 282.1404522319329, - 282.4003713565418 + 258.04758610584406, + 258.3056408410459, + 282.22214896372265, + 282.48020369892436 ], "layer_temperatures_u": [ - 258.0684811176779, - 258.3284002422869, - 282.140452231929, - 282.40037135653796 + 258.0475861058444, + 258.3056408410462, + 282.22214896372697, + 282.4802036989288 ], - "relative_heat_gain": 17.011329202203406, + "relative_heat_gain": 16.889307623271367, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.021714949972796275, - "system_effective_conductivity_u": 0.02171494997310776 + "system_effective_conductivity_shgc": 0.02147030832200375, + "system_effective_conductivity_u": 0.02147030832168897 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index e847abb9..ee532bc9 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7650023272765848, - "U": 2.4688705771091266, + "SHGC": 0.7650524426286605, + "U": 2.4575502518879158, "gap_layer_effective_conductivities_shgc": [ - 0.0005089728275727879 + 0.00050473207159428 ], "gap_layer_effective_conductivities_u": [ - 0.000485568727601141 + 0.00048131907353433906 ], "layer_temperatures_shgc": [ - 308.2756892651255, - 308.35581322655713, - 306.0979881588337, - 305.9767284327652 + 308.27818292184486, + 308.3584633136, + 306.0918362356424, + 305.9707329398973 ], "layer_temperatures_u": [ - 304.18121208761113, - 304.1210111455372, - 300.0534171069549, - 299.993216164881 + 304.1856597716774, + 304.1257348644224, + 300.0410427970529, + 299.9811178897979 ], - "relative_heat_gain": 573.9663973193623, + "relative_heat_gain": 573.9146674584141, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.9999999999999999 + 1.0 ], "solid_layer_effective_conductivities_u": [ - 1.0, + 0.9999999999999999, 1.0 ], - "system_effective_conductivity_shgc": 0.1834711135060517, - "system_effective_conductivity_u": 0.029220892967722678 + "system_effective_conductivity_shgc": 0.18265830864366622, + "system_effective_conductivity_u": 0.028972444116719488 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index 3caa1575..8de1ae4a 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.186546169946092, + "U": 2.1708621623773268, "gap_layer_effective_conductivities_shgc": [ - 0.00035811823636611363 + 0.0003539965947304735 ], "gap_layer_effective_conductivities_u": [ - 0.0003581182363661431 + 0.0003539965947304969 ], "layer_temperatures_shgc": [ - 258.0684811176783, - 258.3284002422874, - 282.14045223193267, - 282.40037135654165 + 258.04758610584406, + 258.30564084104583, + 282.22214896372407, + 282.4802036989258 ], "layer_temperatures_u": [ - 258.06848111767806, - 258.32840024228705, - 282.1404522319329, - 282.4003713565418 + 258.04758610584406, + 258.3056408410459, + 282.22214896372265, + 282.48020369892436 ], - "relative_heat_gain": 17.011329202179805, + "relative_heat_gain": 16.889307623294812, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.02171494997280429, - "system_effective_conductivity_u": 0.02171494997280556 + "system_effective_conductivity_shgc": 0.021470308321994112, + "system_effective_conductivity_u": 0.02147030832199076 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 013bf8a2..c530d5be 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7636935965955536, - "U": 2.4688705771091266, + "SHGC": 0.7637441190317291, + "U": 2.4575502518879158, "gap_layer_effective_conductivities_shgc": [ - 0.0005092593248322226 + 0.000505018629887159 ], "gap_layer_effective_conductivities_u": [ - 0.000485568727601141 + 0.00048131907353433906 ], "layer_temperatures_shgc": [ - 308.3286433682815, - 308.410528963473, - 306.1669340075957, - 306.04488517621115 + 308.33112119139514, + 308.4131622453692, + 306.16082692245, + 306.03893354984814 ], "layer_temperatures_u": [ - 304.18121208761113, - 304.1210111455372, - 300.0534171069549, - 299.993216164881 + 304.1856597716774, + 304.1257348644224, + 300.0410427970529, + 299.9811178897979 ], - "relative_heat_gain": 573.0173419323747, + "relative_heat_gain": 572.965907277654, "solid_layer_effective_conductivities_shgc": [ - 1.0, - 1.0 + 0.9999999999999998, + 0.9999999999999999 ], "solid_layer_effective_conductivities_u": [ - 1.0, + 0.9999999999999999, 1.0 ], - "system_effective_conductivity_shgc": 0.186276304749997, - "system_effective_conductivity_u": 0.029220892967722678 + "system_effective_conductivity_shgc": 0.18545341200515897, + "system_effective_conductivity_u": 0.028972444116719488 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index 3caa1575..8de1ae4a 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.186546169946092, + "U": 2.1708621623773268, "gap_layer_effective_conductivities_shgc": [ - 0.00035811823636611363 + 0.0003539965947304735 ], "gap_layer_effective_conductivities_u": [ - 0.0003581182363661431 + 0.0003539965947304969 ], "layer_temperatures_shgc": [ - 258.0684811176783, - 258.3284002422874, - 282.14045223193267, - 282.40037135654165 + 258.04758610584406, + 258.30564084104583, + 282.22214896372407, + 282.4802036989258 ], "layer_temperatures_u": [ - 258.06848111767806, - 258.32840024228705, - 282.1404522319329, - 282.4003713565418 + 258.04758610584406, + 258.3056408410459, + 282.22214896372265, + 282.48020369892436 ], - "relative_heat_gain": 17.011329202179805, + "relative_heat_gain": 16.889307623294812, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.02171494997280429, - "system_effective_conductivity_u": 0.02171494997280556 + "system_effective_conductivity_shgc": 0.021470308321994112, + "system_effective_conductivity_u": 0.02147030832199076 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index c1ebc794..8f757528 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7631521058569354, - "U": 2.487225148749598, + "SHGC": 0.7631519515868148, + "U": 2.4872618555500385, "gap_layer_effective_conductivities_shgc": [ - 0.0005161266216151927 + 0.0005161406180590323 ], "gap_layer_effective_conductivities_u": [ - 0.000492534200617148 + 0.0004925482248335116 ], "layer_temperatures_shgc": [ - 308.3555771044055, - 308.4374084015286, - 306.10934260047003, - 305.9871482683364 + 308.3555687071471, + 308.43739947739004, + 306.10936331660594, + 305.9871684575922 ], "layer_temperatures_u": [ - 304.1740005834148, - 304.11335208344576, - 300.07346994556116, - 300.0128214455922 + 304.17398616119175, + 304.1133367661641, + 300.07351003552867, + 300.01286064050106 ], - "relative_heat_gain": 572.7674663556621, + "relative_heat_gain": 572.7676400621426, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 ], "solid_layer_effective_conductivities_u": [ - 1.0, + 0.9999999999999999, 1.0 ], - "system_effective_conductivity_shgc": 0.1783231253174488, - "system_effective_conductivity_u": 0.029627847286696627 + "system_effective_conductivity_shgc": 0.17832572989534914, + "system_effective_conductivity_u": 0.029628666306163943 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index 856144e0..9e837f48 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.2119713774383163, + "U": 2.212022218785785, "gap_layer_effective_conductivities_shgc": [ - 0.0003648763971055322 + 0.00036489000702712366 ], "gap_layer_effective_conductivities_u": [ - 0.00036487639710561037 + 0.0003648900070271895 ], "layer_temperatures_shgc": [ - 258.10235263265093, - 258.36529410262494, - 282.00806310757713, - 282.2710045775511 + 258.102420362107, + 258.3653678756939, + 282.00779843625315, + 282.27074594984 ], "layer_temperatures_u": [ - 258.10235263265093, - 258.3652941026249, - 282.00806310757866, - 282.2710045775526 + 258.1024203621072, + 258.3653678756941, + 282.00779843625634, + 282.27074594984316 ], - "relative_heat_gain": 17.20913731668722, + "relative_heat_gain": 17.20953286237146, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.022115822989994427, - "system_effective_conductivity_u": 0.0221158229897791 + "system_effective_conductivity_shgc": 0.022116629962086926, + "system_effective_conductivity_u": 0.022116629961871893 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index b6d2272f..72193024 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7618516849331433, - "U": 2.487225148749598, + "SHGC": 0.7618515292788591, + "U": 2.4872618555500385, "gap_layer_effective_conductivities_shgc": [ - 0.0005164130566640634 + 0.0005164270528994415 ], "gap_layer_effective_conductivities_u": [ - 0.000492534200617148 + 0.0004925482248335116 ], "layer_temperatures_shgc": [ - 308.4082050746051, - 308.4917940779581, - 306.17855661908783, - 306.0555754526089 + 308.4081967311582, + 308.4917852109345, + 306.17857718294704, + 306.05559549289154 ], "layer_temperatures_u": [ - 304.1740005834148, - 304.11335208344576, - 300.07346994556116, - 300.0128214455922 + 304.17398616119175, + 304.1133367661641, + 300.07351003552867, + 300.01286064050106 ], - "relative_heat_gain": 571.8244369754154, + "relative_heat_gain": 571.8246096781463, "solid_layer_effective_conductivities_shgc": [ - 0.9999999999999999, - 1.0 + 1.0, + 0.9999999999999999 ], "solid_layer_effective_conductivities_u": [ - 1.0, + 0.9999999999999999, 1.0 ], - "system_effective_conductivity_shgc": 0.18106451584333821, - "system_effective_conductivity_u": 0.029627847286696627 + "system_effective_conductivity_shgc": 0.18106715276209115, + "system_effective_conductivity_u": 0.029628666306163943 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index 856144e0..9e837f48 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.2119713774383163, + "U": 2.212022218785785, "gap_layer_effective_conductivities_shgc": [ - 0.0003648763971055322 + 0.00036489000702712366 ], "gap_layer_effective_conductivities_u": [ - 0.00036487639710561037 + 0.0003648900070271895 ], "layer_temperatures_shgc": [ - 258.10235263265093, - 258.36529410262494, - 282.00806310757713, - 282.2710045775511 + 258.102420362107, + 258.3653678756939, + 282.00779843625315, + 282.27074594984 ], "layer_temperatures_u": [ - 258.10235263265093, - 258.3652941026249, - 282.00806310757866, - 282.2710045775526 + 258.1024203621072, + 258.3653678756941, + 282.00779843625634, + 282.27074594984316 ], - "relative_heat_gain": 17.20913731668722, + "relative_heat_gain": 17.20953286237146, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.022115822989994427, - "system_effective_conductivity_u": 0.0221158229897791 + "system_effective_conductivity_shgc": 0.022116629962086926, + "system_effective_conductivity_u": 0.022116629961871893 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 7d18df25..7cc5c3db 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7649211434226483, - "U": 2.4872251490309703, + "SHGC": 0.7649209811547549, + "U": 2.4872618558313673, "gap_layer_effective_conductivities_shgc": [ - 0.0005159239014217832 + 0.0005159378968770335 ], "gap_layer_effective_conductivities_u": [ - 0.000492534200592794 + 0.0004925482248093489 ], "layer_temperatures_shgc": [ - 308.2716433104199, - 308.3515134660503, - 306.1079683086827, - 305.98645477681293 + 308.27163521558253, + 308.35150486342025, + 306.1079882745545, + 305.986474234892 ], "layer_temperatures_u": [ - 304.1740005834107, - 304.11335208344155, - 300.0734699456869, - 300.0128214457177 + 304.1739861611881, + 304.1133367661602, + 300.0735100356544, + 300.0128606406265 ], - "relative_heat_gain": 574.0503235971122, + "relative_heat_gain": 574.0504915038266, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 ], "solid_layer_effective_conductivities_u": [ 0.9999999999999999, - 1.0 + 0.9999999999999999 ], - "system_effective_conductivity_shgc": 0.1848026262058974, - "system_effective_conductivity_u": 0.029627847295110407 + "system_effective_conductivity_shgc": 0.18480530614683183, + "system_effective_conductivity_u": 0.02962866631458635 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index 7d362e71..d0c5a7cf 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.2119713774679868, + "U": 2.212022218815426, "gap_layer_effective_conductivities_shgc": [ - 0.0003648763971055468 + 0.00036489000702709466 ], "gap_layer_effective_conductivities_u": [ - 0.00036487639710550043 + 0.0003648900070271327 ], "layer_temperatures_shgc": [ - 258.102352632651, - 258.36529410262494, - 282.00806310757673, - 282.2710045775507 + 258.1024203621066, + 258.36536787569344, + 282.00779843625514, + 282.27074594984197 ], "layer_temperatures_u": [ - 258.10235263265093, - 258.36529410262494, - 282.00806310757713, - 282.2710045775511 + 258.102420362107, + 258.3653678756939, + 282.00779843625315, + 282.27074594984 ], - "relative_heat_gain": 17.209137316701153, + "relative_heat_gain": 17.209532862383938, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.022115822989985694, - "system_effective_conductivity_u": 0.02211582298998362 + "system_effective_conductivity_shgc": 0.02211662996208157, + "system_effective_conductivity_u": 0.022116629962087825 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 83c2a090..262b3ec3 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7636117529772868, - "U": 2.4872251490309703, + "SHGC": 0.7636115893902787, + "U": 2.4872618558313673, "gap_layer_effective_conductivities_shgc": [ - 0.0005162102997875292 + 0.0005162242950449037 ], "gap_layer_effective_conductivities_u": [ - 0.000492534200592794 + 0.0004925482248093489 ], "layer_temperatures_shgc": [ - 308.3246230762662, - 308.40625644023925, - 306.17684150009825, - 306.05454043749523 + 308.32461503273674, + 308.4062478920653, + 306.17686132071265, + 306.05455975346524 ], "layer_temperatures_u": [ - 304.1740005834107, - 304.11335208344155, - 300.0734699456869, - 300.0128214457177 + 304.1739861611881, + 304.1133367661602, + 300.0735100356544, + 300.0128606406265 ], - "relative_heat_gain": 573.1007897672373, + "relative_heat_gain": 573.1009567173443, "solid_layer_effective_conductivities_shgc": [ 0.9999999999999998, - 1.0 + 0.9999999999999999 ], "solid_layer_effective_conductivities_u": [ 0.9999999999999999, - 1.0 + 0.9999999999999999 ], - "system_effective_conductivity_shgc": 0.18762434786685206, - "system_effective_conductivity_u": 0.029627847295110407 + "system_effective_conductivity_shgc": 0.18762706108415206, + "system_effective_conductivity_u": 0.02962866631458635 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index 7d362e71..d0c5a7cf 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.2119713774679868, + "U": 2.212022218815426, "gap_layer_effective_conductivities_shgc": [ - 0.0003648763971055468 + 0.00036489000702709466 ], "gap_layer_effective_conductivities_u": [ - 0.00036487639710550043 + 0.0003648900070271327 ], "layer_temperatures_shgc": [ - 258.102352632651, - 258.36529410262494, - 282.00806310757673, - 282.2710045775507 + 258.1024203621066, + 258.36536787569344, + 282.00779843625514, + 282.27074594984197 ], "layer_temperatures_u": [ - 258.10235263265093, - 258.36529410262494, - 282.00806310757713, - 282.2710045775511 + 258.102420362107, + 258.3653678756939, + 282.00779843625315, + 282.27074594984 ], - "relative_heat_gain": 17.209137316701153, + "relative_heat_gain": 17.209532862383938, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.022115822989985694, - "system_effective_conductivity_u": 0.02211582298998362 + "system_effective_conductivity_shgc": 0.02211662996208157, + "system_effective_conductivity_u": 0.022116629962087825 } diff --git a/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=0_phi=0/photopic.json b/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=0_phi=0/photopic.json index e21d6c0f..e3f1b018 100644 --- a/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=0_phi=0/photopic.json +++ b/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=0_phi=0/photopic.json @@ -5,9 +5,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.8563572220147646, + "heat_diffuse": 0.8563572220147645, "heat_direct": 0.8585870957773529, - "total_diffuse": 0.8563572220147646, + "total_diffuse": 0.8563572220147645, "total_direct": 0.8585870957773529 } }, @@ -15,9 +15,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.8563572220147646, + "heat_diffuse": 0.8563572220147645, "heat_direct": 0.8585870957773529, - "total_diffuse": 0.8563572220147646, + "total_diffuse": 0.8563572220147645, "total_direct": 0.8585870957773529 } } diff --git a/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=0_phi=0/solar.json b/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=0_phi=0/solar.json index 6f5e1f5a..05969b69 100644 --- a/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=0_phi=0/solar.json +++ b/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=0_phi=0/solar.json @@ -5,9 +5,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.4350484161702875, + "heat_diffuse": 0.4350484161702877, "heat_direct": 0.4267984617674093, - "total_diffuse": 0.4350484161702875, + "total_diffuse": 0.4350484161702877, "total_direct": 0.4267984617674093 } }, @@ -15,9 +15,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.4350484161702875, + "heat_diffuse": 0.4350484161702877, "heat_direct": 0.4267984617674093, - "total_diffuse": 0.4350484161702875, + "total_diffuse": 0.4350484161702877, "total_direct": 0.4267984617674093 } } diff --git a/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=0_phi=0/tdw.json b/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=0_phi=0/tdw.json index c546b8ba..1cae67e9 100644 --- a/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=0_phi=0/tdw.json +++ b/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=0_phi=0/tdw.json @@ -5,9 +5,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.7876284815193931, + "heat_diffuse": 0.7876284815193929, "heat_direct": 0.7881487651181193, - "total_diffuse": 0.7876284815193931, + "total_diffuse": 0.7876284815193929, "total_direct": 0.7881487651181193 } }, @@ -15,9 +15,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.7876284815193931, + "heat_diffuse": 0.7876284815193929, "heat_direct": 0.7881487651181193, - "total_diffuse": 0.7876284815193931, + "total_diffuse": 0.7876284815193929, "total_direct": 0.7881487651181193 } } diff --git a/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=0_phi=0/tkr.json b/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=0_phi=0/tkr.json index 3e375bb3..ab57cd9c 100644 --- a/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=0_phi=0/tkr.json +++ b/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=0_phi=0/tkr.json @@ -5,9 +5,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.6606629048606122, + "heat_diffuse": 0.660662904860612, "heat_direct": 0.6580249885644955, - "total_diffuse": 0.6606629048606122, + "total_diffuse": 0.660662904860612, "total_direct": 0.6580249885644955 } }, @@ -15,9 +15,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.6606629048606122, + "heat_diffuse": 0.660662904860612, "heat_direct": 0.6580249885644955, - "total_diffuse": 0.6606629048606122, + "total_diffuse": 0.660662904860612, "total_direct": 0.6580249885644955 } } diff --git a/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=15_phi=270/photopic.json b/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=15_phi=270/photopic.json index e33a3792..278572ce 100644 --- a/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=15_phi=270/photopic.json +++ b/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=15_phi=270/photopic.json @@ -5,9 +5,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.8563572220147646, + "heat_diffuse": 0.8563572220147645, "heat_direct": 0.8588017020106985, - "total_diffuse": 0.8563572220147646, + "total_diffuse": 0.8563572220147645, "total_direct": 0.8588017020106985 } }, @@ -15,9 +15,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.8563572220147646, + "heat_diffuse": 0.8563572220147645, "heat_direct": 0.8588017020106985, - "total_diffuse": 0.8563572220147646, + "total_diffuse": 0.8563572220147645, "total_direct": 0.8588017020106985 } } diff --git a/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=15_phi=270/solar.json b/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=15_phi=270/solar.json index 8cc94a9c..590f5d18 100644 --- a/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=15_phi=270/solar.json +++ b/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=15_phi=270/solar.json @@ -5,9 +5,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.4350484161702875, + "heat_diffuse": 0.4350484161702877, "heat_direct": 0.4272712555572524, - "total_diffuse": 0.4350484161702875, + "total_diffuse": 0.4350484161702877, "total_direct": 0.4272712555572524 } }, @@ -15,9 +15,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.4350484161702875, + "heat_diffuse": 0.4350484161702877, "heat_direct": 0.4272712555572524, - "total_diffuse": 0.4350484161702875, + "total_diffuse": 0.4350484161702877, "total_direct": 0.4272712555572524 } } diff --git a/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=15_phi=270/tdw.json b/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=15_phi=270/tdw.json index 09c4e95c..0ae0361e 100644 --- a/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=15_phi=270/tdw.json +++ b/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=15_phi=270/tdw.json @@ -5,9 +5,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.7876284815193931, + "heat_diffuse": 0.7876284815193929, "heat_direct": 0.788405489876698, - "total_diffuse": 0.7876284815193931, + "total_diffuse": 0.7876284815193929, "total_direct": 0.788405489876698 } }, @@ -15,9 +15,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.7876284815193931, + "heat_diffuse": 0.7876284815193929, "heat_direct": 0.788405489876698, - "total_diffuse": 0.7876284815193931, + "total_diffuse": 0.7876284815193929, "total_direct": 0.788405489876698 } } diff --git a/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=15_phi=270/tkr.json b/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=15_phi=270/tkr.json index e01991fb..1a38ac6d 100644 --- a/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=15_phi=270/tkr.json +++ b/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=15_phi=270/tkr.json @@ -5,9 +5,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.6606629048606122, + "heat_diffuse": 0.660662904860612, "heat_direct": 0.6583595206974808, - "total_diffuse": 0.6606629048606122, + "total_diffuse": 0.660662904860612, "total_direct": 0.6583595206974808 } }, @@ -15,9 +15,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.6606629048606122, + "heat_diffuse": 0.660662904860612, "heat_direct": 0.6583595206974808, - "total_diffuse": 0.6606629048606122, + "total_diffuse": 0.660662904860612, "total_direct": 0.6583595206974808 } } diff --git a/test/expected_results/SEATEX_Midnight/full_spectrum/theta=0_phi=0/photopic.json b/test/expected_results/SEATEX_Midnight/full_spectrum/theta=0_phi=0/photopic.json index e21d6c0f..e3f1b018 100644 --- a/test/expected_results/SEATEX_Midnight/full_spectrum/theta=0_phi=0/photopic.json +++ b/test/expected_results/SEATEX_Midnight/full_spectrum/theta=0_phi=0/photopic.json @@ -5,9 +5,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.8563572220147646, + "heat_diffuse": 0.8563572220147645, "heat_direct": 0.8585870957773529, - "total_diffuse": 0.8563572220147646, + "total_diffuse": 0.8563572220147645, "total_direct": 0.8585870957773529 } }, @@ -15,9 +15,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.8563572220147646, + "heat_diffuse": 0.8563572220147645, "heat_direct": 0.8585870957773529, - "total_diffuse": 0.8563572220147646, + "total_diffuse": 0.8563572220147645, "total_direct": 0.8585870957773529 } } diff --git a/test/expected_results/SEATEX_Midnight/full_spectrum/theta=0_phi=0/solar.json b/test/expected_results/SEATEX_Midnight/full_spectrum/theta=0_phi=0/solar.json index 6f5e1f5a..05969b69 100644 --- a/test/expected_results/SEATEX_Midnight/full_spectrum/theta=0_phi=0/solar.json +++ b/test/expected_results/SEATEX_Midnight/full_spectrum/theta=0_phi=0/solar.json @@ -5,9 +5,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.4350484161702875, + "heat_diffuse": 0.4350484161702877, "heat_direct": 0.4267984617674093, - "total_diffuse": 0.4350484161702875, + "total_diffuse": 0.4350484161702877, "total_direct": 0.4267984617674093 } }, @@ -15,9 +15,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.4350484161702875, + "heat_diffuse": 0.4350484161702877, "heat_direct": 0.4267984617674093, - "total_diffuse": 0.4350484161702875, + "total_diffuse": 0.4350484161702877, "total_direct": 0.4267984617674093 } } diff --git a/test/expected_results/SEATEX_Midnight/full_spectrum/theta=0_phi=0/tkr.json b/test/expected_results/SEATEX_Midnight/full_spectrum/theta=0_phi=0/tkr.json index 1dbdd418..8d7cd996 100644 --- a/test/expected_results/SEATEX_Midnight/full_spectrum/theta=0_phi=0/tkr.json +++ b/test/expected_results/SEATEX_Midnight/full_spectrum/theta=0_phi=0/tkr.json @@ -5,9 +5,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.5985935478356254, + "heat_diffuse": 0.5985935478356255, "heat_direct": 0.594411689929604, - "total_diffuse": 0.5985935478356254, + "total_diffuse": 0.5985935478356255, "total_direct": 0.594411689929604 } }, @@ -15,9 +15,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.5985935478356254, + "heat_diffuse": 0.5985935478356255, "heat_direct": 0.594411689929604, - "total_diffuse": 0.5985935478356254, + "total_diffuse": 0.5985935478356255, "total_direct": 0.594411689929604 } } diff --git a/test/expected_results/SEATEX_Midnight/full_spectrum/theta=0_phi=0/tuv.json b/test/expected_results/SEATEX_Midnight/full_spectrum/theta=0_phi=0/tuv.json index 0bbd8d6d..cfc8de1d 100644 --- a/test/expected_results/SEATEX_Midnight/full_spectrum/theta=0_phi=0/tuv.json +++ b/test/expected_results/SEATEX_Midnight/full_spectrum/theta=0_phi=0/tuv.json @@ -5,9 +5,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.5167616587701366, + "heat_diffuse": 0.5167616587701367, "heat_direct": 0.5105442769824279, - "total_diffuse": 0.5167616587701366, + "total_diffuse": 0.5167616587701367, "total_direct": 0.5105442769824279 } }, @@ -15,9 +15,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.5167616587701366, + "heat_diffuse": 0.5167616587701367, "heat_direct": 0.5105442769824279, - "total_diffuse": 0.5167616587701366, + "total_diffuse": 0.5167616587701367, "total_direct": 0.5105442769824279 } } diff --git a/test/expected_results/SEATEX_Midnight/full_spectrum/theta=15_phi=270/photopic.json b/test/expected_results/SEATEX_Midnight/full_spectrum/theta=15_phi=270/photopic.json index e33a3792..278572ce 100644 --- a/test/expected_results/SEATEX_Midnight/full_spectrum/theta=15_phi=270/photopic.json +++ b/test/expected_results/SEATEX_Midnight/full_spectrum/theta=15_phi=270/photopic.json @@ -5,9 +5,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.8563572220147646, + "heat_diffuse": 0.8563572220147645, "heat_direct": 0.8588017020106985, - "total_diffuse": 0.8563572220147646, + "total_diffuse": 0.8563572220147645, "total_direct": 0.8588017020106985 } }, @@ -15,9 +15,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.8563572220147646, + "heat_diffuse": 0.8563572220147645, "heat_direct": 0.8588017020106985, - "total_diffuse": 0.8563572220147646, + "total_diffuse": 0.8563572220147645, "total_direct": 0.8588017020106985 } } diff --git a/test/expected_results/SEATEX_Midnight/full_spectrum/theta=15_phi=270/solar.json b/test/expected_results/SEATEX_Midnight/full_spectrum/theta=15_phi=270/solar.json index 8cc94a9c..590f5d18 100644 --- a/test/expected_results/SEATEX_Midnight/full_spectrum/theta=15_phi=270/solar.json +++ b/test/expected_results/SEATEX_Midnight/full_spectrum/theta=15_phi=270/solar.json @@ -5,9 +5,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.4350484161702875, + "heat_diffuse": 0.4350484161702877, "heat_direct": 0.4272712555572524, - "total_diffuse": 0.4350484161702875, + "total_diffuse": 0.4350484161702877, "total_direct": 0.4272712555572524 } }, @@ -15,9 +15,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.4350484161702875, + "heat_diffuse": 0.4350484161702877, "heat_direct": 0.4272712555572524, - "total_diffuse": 0.4350484161702875, + "total_diffuse": 0.4350484161702877, "total_direct": 0.4272712555572524 } } diff --git a/test/expected_results/SEATEX_Midnight/full_spectrum/theta=15_phi=270/tkr.json b/test/expected_results/SEATEX_Midnight/full_spectrum/theta=15_phi=270/tkr.json index 6c63466c..5c659b77 100644 --- a/test/expected_results/SEATEX_Midnight/full_spectrum/theta=15_phi=270/tkr.json +++ b/test/expected_results/SEATEX_Midnight/full_spectrum/theta=15_phi=270/tkr.json @@ -5,9 +5,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.5985935478356254, + "heat_diffuse": 0.5985935478356255, "heat_direct": 0.5947842595671499, - "total_diffuse": 0.5985935478356254, + "total_diffuse": 0.5985935478356255, "total_direct": 0.5947842595671499 } }, @@ -15,9 +15,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.5985935478356254, + "heat_diffuse": 0.5985935478356255, "heat_direct": 0.5947842595671499, - "total_diffuse": 0.5985935478356254, + "total_diffuse": 0.5985935478356255, "total_direct": 0.5947842595671499 } } diff --git a/test/expected_results/SEATEX_Midnight/full_spectrum/theta=15_phi=270/tuv.json b/test/expected_results/SEATEX_Midnight/full_spectrum/theta=15_phi=270/tuv.json index 5735a0ec..25a727f0 100644 --- a/test/expected_results/SEATEX_Midnight/full_spectrum/theta=15_phi=270/tuv.json +++ b/test/expected_results/SEATEX_Midnight/full_spectrum/theta=15_phi=270/tuv.json @@ -5,9 +5,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.5167616587701366, + "heat_diffuse": 0.5167616587701367, "heat_direct": 0.5109669950507408, - "total_diffuse": 0.5167616587701366, + "total_diffuse": 0.5167616587701367, "total_direct": 0.5109669950507408 } }, @@ -15,9 +15,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.5167616587701366, + "heat_diffuse": 0.5167616587701367, "heat_direct": 0.5109669950507408, - "total_diffuse": 0.5167616587701366, + "total_diffuse": 0.5167616587701367, "total_direct": 0.5109669950507408 } } diff --git a/test/expected_results/User_Perforated_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/User_Perforated_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 5c65ae74..6a05db50 100644 --- a/test/expected_results/User_Perforated_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/User_Perforated_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.05878371281379244, - "U": 2.9645842424410227, + "SHGC": 0.05878371281177602, + "U": 2.9645842417376107, "gap_layer_effective_conductivities_shgc": [ - 0.09222278400583296 + 0.0922227840063063 ], "gap_layer_effective_conductivities_u": [ - 0.08777468755009296 + 0.08777468757686711 ], "layer_temperatures_shgc": [ - 314.1226228601016, - 314.1226626769958, - 305.5603446086418, - 305.36979470498017 + 314.12262285926283, + 314.122662676157, + 305.56034460822923, + 305.36979470457607 ], "layer_temperatures_u": [ - 304.0187246842144, - 304.01870989026435, - 300.59061244954927, - 300.51832402507785 + 304.01872468477285, + 304.0187098908228, + 300.5906124500185, + 300.51832402555726 ], - "relative_heat_gain": 65.6927923246938, + "relative_heat_gain": 65.69279231856943, "solid_layer_effective_conductivities_shgc": [ - 158.65520228288347, - 1.0 + 158.65520228325997, + 0.9999999999999999 ], "solid_layer_effective_conductivities_u": [ - 159.99230379378764, + 159.99230379344638, 1.0 ], - "system_effective_conductivity_shgc": 0.11389747602428114, - "system_effective_conductivity_u": 0.10737680839633015 + "system_effective_conductivity_shgc": 0.11389747602588499, + "system_effective_conductivity_u": 0.10737680839284336 } diff --git a/test/expected_results/User_Perforated_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/User_Perforated_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index 7fc598c4..01320b3b 100644 --- a/test/expected_results/User_Perforated_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/User_Perforated_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 2.8153008466158904, + "U": 2.815300846616102, "gap_layer_effective_conductivities_shgc": [ 0.06935073635082951 ], "gap_layer_effective_conductivities_u": [ - 0.06935073635083314 + 0.06935073635082742 ], "layer_temperatures_shgc": [ - 258.8313465676974, - 258.83141497129964, - 278.88146865514483, - 279.21612910806493 + 258.8313465676967, + 258.83141497129895, + 278.88146865514375, + 279.2161291080638 ], "layer_temperatures_u": [ 258.8313465676968, 258.83141497129907, - 278.88146865514227, - 279.2161291080623 + 278.881468655143, + 279.21612910806306 ], - "relative_heat_gain": 21.903040586714063, + "relative_heat_gain": 21.90304058671527, "solid_layer_effective_conductivities_shgc": [ - 159.607732106794, + 159.60773210579057, 1.0 ], "solid_layer_effective_conductivities_u": [ - 159.607732106794, - 1.0 + 159.60773210679397, + 0.9999999999999999 ], - "system_effective_conductivity_shgc": 0.08536066706170461, - "system_effective_conductivity_u": 0.08536066706168582 + "system_effective_conductivity_shgc": 0.08536066706170861, + "system_effective_conductivity_u": 0.08536066706168655 } diff --git a/test/expected_results/User_Perforated_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/User_Perforated_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index a79d8ce5..e415d2f6 100644 --- a/test/expected_results/User_Perforated_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/User_Perforated_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.05868050588070761, - "U": 2.9645842424410227, + "SHGC": 0.05868050588882704, + "U": 2.9645842417376107, "gap_layer_effective_conductivities_shgc": [ - 0.0922234290593038 + 0.09222342905488173 ], "gap_layer_effective_conductivities_u": [ - 0.08777468755009296 + 0.08777468757686711 ], "layer_temperatures_shgc": [ - 314.12372573595115, - 314.1237655595893, - 305.56122912181576, - 305.3706649236885 + 314.12372573815975, + 314.1237655617978, + 305.561229122891, + 305.37066492474804 ], "layer_temperatures_u": [ - 304.0187246842144, - 304.01870989026435, - 300.59061244954927, - 300.51832402507785 + 304.01872468477285, + 304.0187098908228, + 300.5906124500185, + 300.51832402555726 ], - "relative_heat_gain": 65.61794950340443, + "relative_heat_gain": 65.61794950523233, "solid_layer_effective_conductivities_shgc": [ - 158.65529807722962, + 158.65529807800345, 1.0 ], "solid_layer_effective_conductivities_u": [ - 159.99230379378764, + 159.99230379344638, 1.0 ], - "system_effective_conductivity_shgc": 0.11390780050576012, - "system_effective_conductivity_u": 0.10737680839633015 + "system_effective_conductivity_shgc": 0.11390780050011752, + "system_effective_conductivity_u": 0.10737680839284336 } diff --git a/test/expected_results/User_Perforated_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/User_Perforated_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index 7fc598c4..01320b3b 100644 --- a/test/expected_results/User_Perforated_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/User_Perforated_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 2.8153008466158904, + "U": 2.815300846616102, "gap_layer_effective_conductivities_shgc": [ 0.06935073635082951 ], "gap_layer_effective_conductivities_u": [ - 0.06935073635083314 + 0.06935073635082742 ], "layer_temperatures_shgc": [ - 258.8313465676974, - 258.83141497129964, - 278.88146865514483, - 279.21612910806493 + 258.8313465676967, + 258.83141497129895, + 278.88146865514375, + 279.2161291080638 ], "layer_temperatures_u": [ 258.8313465676968, 258.83141497129907, - 278.88146865514227, - 279.2161291080623 + 278.881468655143, + 279.21612910806306 ], - "relative_heat_gain": 21.903040586714063, + "relative_heat_gain": 21.90304058671527, "solid_layer_effective_conductivities_shgc": [ - 159.607732106794, + 159.60773210579057, 1.0 ], "solid_layer_effective_conductivities_u": [ - 159.607732106794, - 1.0 + 159.60773210679397, + 0.9999999999999999 ], - "system_effective_conductivity_shgc": 0.08536066706170461, - "system_effective_conductivity_u": 0.08536066706168582 + "system_effective_conductivity_shgc": 0.08536066706170861, + "system_effective_conductivity_u": 0.08536066706168655 } diff --git a/test/expected_results/User_Perforated_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/User_Perforated_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index a68b9fad..f0a6603e 100644 --- a/test/expected_results/User_Perforated_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/User_Perforated_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.057801088053722145, - "U": 2.964584242105106, + "SHGC": 0.057801088055073044, + "U": 2.9645842413860044, "gap_layer_effective_conductivities_shgc": [ - 0.0921244092895645 + 0.09212440928358841 ], "gap_layer_effective_conductivities_u": [ - 0.08777468757654734 + 0.08777468755576874 ], "layer_temperatures_shgc": [ - 313.92880753751973, - 313.9288463009259, - 305.4641652422447, - 305.27600268680936 + 313.9288075404715, + 313.92884630387766, + 305.4641652436831, + 305.2760026882268 ], "layer_temperatures_u": [ - 304.0187246848203, - 304.01870989087024, - 300.5906124500081, - 300.51832402555794 + 304.0187246831789, + 304.0187098892289, + 300.59061244909594, + 300.51832402463765 ], - "relative_heat_gain": 64.98021994561437, + "relative_heat_gain": 64.980219940045, "solid_layer_effective_conductivities_shgc": [ - 158.64482780029198, + 158.64482779991627, 1.0 ], "solid_layer_effective_conductivities_u": [ - 159.99230379989825, + 159.99230379398773, 1.0 ], - "system_effective_conductivity_shgc": 0.11375953170737498, - "system_effective_conductivity_u": 0.10737680836381044 + "system_effective_conductivity_shgc": 0.1137595317085968, + "system_effective_conductivity_u": 0.1073768083696384 } diff --git a/test/expected_results/User_Perforated_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/User_Perforated_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index d57f36e8..2d530f13 100644 --- a/test/expected_results/User_Perforated_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/User_Perforated_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 2.815300846621573, + "U": 2.815300846621398, "gap_layer_effective_conductivities_shgc": [ - 0.06935073635082967 + 0.06935073635083192 ], "gap_layer_effective_conductivities_u": [ - 0.06935073635082999 + 0.06935073635082983 ], "layer_temperatures_shgc": [ - 258.8313465676964, - 258.8314149712987, - 278.88146865514227, - 279.2161291080623 + 258.83134656769744, + 258.83141497129964, + 278.8814686551432, + 279.2161291080632 ], "layer_temperatures_u": [ - 258.8313465676974, - 258.83141497129964, - 278.88146865514483, - 279.21612910806493 + 258.8313465676967, + 258.83141497129895, + 278.88146865514375, + 279.2161291080638 ], - "relative_heat_gain": 21.90304058671554, + "relative_heat_gain": 21.903040586715363, "solid_layer_effective_conductivities_shgc": [ 159.60773210779746, 1.0 ], "solid_layer_effective_conductivities_u": [ - 159.60773210779746, + 159.60773210679403, 1.0 ], - "system_effective_conductivity_shgc": 0.08536066706169229, - "system_effective_conductivity_u": 0.08536066706171185 + "system_effective_conductivity_shgc": 0.085360667061706, + "system_effective_conductivity_u": 0.08536066706171098 } diff --git a/test/expected_results/User_Perforated_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/User_Perforated_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index d70b0c28..bcb0ed87 100644 --- a/test/expected_results/User_Perforated_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/User_Perforated_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.057697552124542376, - "U": 2.964584242105106, + "SHGC": 0.05769755211800518, + "U": 2.9645842413860044, "gap_layer_effective_conductivities_shgc": [ - 0.09212505302554658 + 0.09212505302069529 ], "gap_layer_effective_conductivities_u": [ - 0.08777468757654734 + 0.08777468755576874 ], "layer_temperatures_shgc": [ - 313.92989790831365, - 313.9299366784511, - 305.4650691932931, - 305.27689247347735 + 313.9298979089081, + 313.92993667904557, + 305.4650691935829, + 305.2768924737705 ], "layer_temperatures_u": [ - 304.0187246848203, - 304.01870989087024, - 300.5906124500081, - 300.51832402555794 + 304.0187246831789, + 304.0187098892289, + 300.59061244909594, + 300.51832402463765 ], - "relative_heat_gain": 64.90513854493284, + "relative_heat_gain": 64.90513853961579, "solid_layer_effective_conductivities_shgc": [ - 158.6449301683991, - 1.0 + 158.64493016866226, + 0.9999999999999999 ], "solid_layer_effective_conductivities_u": [ - 159.99230379989825, + 159.99230379398773, 1.0 ], - "system_effective_conductivity_shgc": 0.11377068245854315, - "system_effective_conductivity_u": 0.10737680836381044 + "system_effective_conductivity_shgc": 0.11377068246170295, + "system_effective_conductivity_u": 0.1073768083696384 } diff --git a/test/expected_results/User_Perforated_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/User_Perforated_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index d57f36e8..2d530f13 100644 --- a/test/expected_results/User_Perforated_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/User_Perforated_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 2.815300846621573, + "U": 2.815300846621398, "gap_layer_effective_conductivities_shgc": [ - 0.06935073635082967 + 0.06935073635083192 ], "gap_layer_effective_conductivities_u": [ - 0.06935073635082999 + 0.06935073635082983 ], "layer_temperatures_shgc": [ - 258.8313465676964, - 258.8314149712987, - 278.88146865514227, - 279.2161291080623 + 258.83134656769744, + 258.83141497129964, + 278.8814686551432, + 279.2161291080632 ], "layer_temperatures_u": [ - 258.8313465676974, - 258.83141497129964, - 278.88146865514483, - 279.21612910806493 + 258.8313465676967, + 258.83141497129895, + 278.88146865514375, + 279.2161291080638 ], - "relative_heat_gain": 21.90304058671554, + "relative_heat_gain": 21.903040586715363, "solid_layer_effective_conductivities_shgc": [ 159.60773210779746, 1.0 ], "solid_layer_effective_conductivities_u": [ - 159.60773210779746, + 159.60773210679403, 1.0 ], - "system_effective_conductivity_shgc": 0.08536066706169229, - "system_effective_conductivity_u": 0.08536066706171185 + "system_effective_conductivity_shgc": 0.085360667061706, + "system_effective_conductivity_u": 0.08536066706171098 } diff --git a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/photopic.json b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/photopic.json index 65c2c350..8d1d6335 100644 --- a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/photopic.json +++ b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/photopic.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.09698245782361781, - "heat_direct": 0.06439798071189272, - "total_diffuse": 0.09698245782361781, - "total_direct": 0.06439798071189272 + "heat_diffuse": 0.3858943214936574, + "heat_direct": 0.33153926998792443, + "total_diffuse": 0.3858943214936574, + "total_direct": 0.33153926998792443 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.0731636269072198, - "heat_direct": 0.025535596832838587, - "total_diffuse": 0.0731636269072198, - "total_direct": 0.025535596832838587 + "heat_diffuse": 0.48555509185815826, + "heat_direct": 0.3551825712621573, + "total_diffuse": 0.48555509185815826, + "total_direct": 0.3551825712621573 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.02944052350752053, - "heat_direct": 0.026396031285054022, - "total_diffuse": 0.02944052350752053, - "total_direct": 0.026396031285054022 + "heat_diffuse": 0.02477607924688506, + "heat_direct": 0.02204045495778573, + "total_diffuse": 0.02477607924688506, + "total_direct": 0.02204045495778573 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.013371418719654271, - "heat_direct": 0.013810882039339337, - "total_diffuse": 0.013371418719654271, - "total_direct": 0.013810882039339337 + "heat_diffuse": 0.010030431818761084, + "heat_direct": 0.011616097941365278, + "total_diffuse": 0.010030431818761084, + "total_direct": 0.011616097941365278 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.38773279818086703, - "direct_diffuse": 0.2168786981021956, - "direct_direct": 0.08918446096149493, - "direct_hemispherical": 0.3060631590636905 + "diffuse_diffuse": 0.22272785126682848, + "direct_diffuse": 0.061529722423576655, + "direct_direct": 0.08428645922225808, + "direct_hemispherical": 0.14581618164583474 }, "transmittance": { - "diffuse_diffuse": 0.485844220487995, - "direct_diffuse": 0.15559772137680233, - "direct_direct": 0.4475451075625602, - "direct_hemispherical": 0.6031428289393626 + "diffuse_diffuse": 0.36660174799262857, + "direct_diffuse": 0.05559333006794531, + "direct_direct": 0.44501076334051004, + "direct_hemispherical": 0.5006040934084554 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.4192428150804686, - "direct_diffuse": 0.352256906890276, - "direct_direct": 0.028416137170766645, - "direct_hemispherical": 0.38067304406104263 + "diffuse_diffuse": 0.13118579589396184, + "direct_diffuse": 0.11202378420412634, + "direct_direct": 0.022729443746878634, + "direct_hemispherical": 0.13475322795100497 }, "transmittance": { - "diffuse_diffuse": 0.4942221392926584, - "direct_diffuse": 0.1324306155582191, - "direct_direct": 0.44754986150856046, - "direct_hemispherical": 0.5799804770667796 + "diffuse_diffuse": 0.3732286804291184, + "direct_diffuse": 0.05343552032499893, + "direct_direct": 0.44501258252047327, + "direct_hemispherical": 0.4984481028454722 } } } diff --git a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/solar.json b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/solar.json index 9443a280..85eb9750 100644 --- a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/solar.json +++ b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/solar.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.1253044474174949, - "heat_direct": 0.09529990663777668, - "total_diffuse": 0.1253044474174949, - "total_direct": 0.09529990663777668 + "heat_diffuse": 0.36164894081926463, + "heat_direct": 0.31734208447275, + "total_diffuse": 0.36164894081926463, + "total_direct": 0.31734208447275 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.13123127168044604, - "heat_direct": 0.07414125014625222, - "total_diffuse": 0.13123127168044604, - "total_direct": 0.07414125014625222 + "heat_diffuse": 0.5008270298386313, + "heat_direct": 0.3706479546154124, + "total_diffuse": 0.5008270298386313, + "total_direct": 0.3706479546154124 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12516665795970264, - "heat_direct": 0.11489528261193709, - "total_diffuse": 0.12516665795970264, - "total_direct": 0.11489528261193709 + "heat_diffuse": 0.10967935056203527, + "heat_direct": 0.10000285288611772, + "total_diffuse": 0.10967935056203527, + "total_direct": 0.10000285288611772 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.056819212950958306, - "heat_direct": 0.06070153936404093, - "total_diffuse": 0.056819212950958306, - "total_direct": 0.06070153936404093 + "heat_diffuse": 0.04433281912648777, + "heat_direct": 0.05248364803863358, + "total_diffuse": 0.04433281912648777, + "total_direct": 0.05248364803863358 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.3219515988202735, - "direct_diffuse": 0.16772420486799383, - "direct_direct": 0.0801441472315357, - "direct_hemispherical": 0.24786835209952954 + "diffuse_diffuse": 0.1970562217000556, + "direct_diffuse": 0.04808855113809621, + "direct_direct": 0.07630599332844212, + "direct_hemispherical": 0.12439454446653833 }, "transmittance": { - "diffuse_diffuse": 0.427577295802529, - "direct_diffuse": 0.12776311507530597, - "direct_direct": 0.4141733435754506, - "direct_hemispherical": 0.5419364586507566 + "diffuse_diffuse": 0.3316154869186446, + "direct_diffuse": 0.04618295068059208, + "direct_direct": 0.41207756749400254, + "direct_hemispherical": 0.4582605181745946 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.37681003603560925, - "direct_diffuse": 0.3172456558770987, - "direct_direct": 0.025726786860290025, - "direct_hemispherical": 0.3429724427373887 + "diffuse_diffuse": 0.11783627132238737, + "direct_diffuse": 0.10032913921702678, + "direct_direct": 0.020580812303889005, + "direct_hemispherical": 0.12090995152091578 }, "transmittance": { - "diffuse_diffuse": 0.43513947933298747, - "direct_diffuse": 0.10800789581807196, - "direct_direct": 0.4141768719342462, - "direct_hemispherical": 0.5221847677523181 + "diffuse_diffuse": 0.33700387971249374, + "direct_diffuse": 0.04387979464362973, + "direct_direct": 0.4120786511814084, + "direct_hemispherical": 0.45595844582503814 } } } diff --git a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/tdw.json b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/tdw.json index 5404a41f..ec81fb01 100644 --- a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/tdw.json +++ b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/tdw.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.20640299033738782, - "heat_direct": 0.17391539310990795, - "total_diffuse": 0.20640299033738782, - "total_direct": 0.17391539310990795 + "heat_diffuse": 0.37947520712838406, + "heat_direct": 0.33471241037267835, + "total_diffuse": 0.37947520712838406, + "total_direct": 0.33471241037267835 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.2969777081820147, - "heat_direct": 0.21511118263783946, - "total_diffuse": 0.2969777081820147, - "total_direct": 0.21511118263783946 + "heat_diffuse": 0.5521061083521779, + "heat_direct": 0.4203013699965569, + "total_diffuse": 0.5521061083521779, + "total_direct": 0.4203013699965569 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.11239588489926405, - "heat_direct": 0.11332715716887011, - "total_diffuse": 0.11239588489926405, - "total_direct": 0.11332715716887011 + "heat_diffuse": 0.10953019253758549, + "heat_direct": 0.11061751991208678, + "total_diffuse": 0.10953019253758549, + "total_direct": 0.11061751991208678 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.04484990594070471, - "heat_direct": 0.05739215971084261, - "total_diffuse": 0.04484990594070471, - "total_direct": 0.05739215971084261 + "heat_diffuse": 0.04208279221041527, + "heat_direct": 0.055549624917290576, + "total_diffuse": 0.04208279221041527, + "total_direct": 0.055549624917290576 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.2949594975652961, - "direct_diffuse": 0.13136260718140935, - "direct_direct": 0.08505351767316208, - "direct_hemispherical": 0.21641612485457143 + "diffuse_diffuse": 0.19599707278627485, + "direct_diffuse": 0.03768474341413411, + "direct_direct": 0.08207179310555135, + "direct_hemispherical": 0.11975653651968546 }, "transmittance": { - "diffuse_diffuse": 0.38624162719805283, - "direct_diffuse": 0.09367519489923559, - "direct_direct": 0.40266612996741485, - "direct_hemispherical": 0.49634132486665045 + "diffuse_diffuse": 0.31499752754775523, + "direct_diffuse": 0.033790365187046256, + "direct_direct": 0.40112316800850323, + "direct_hemispherical": 0.4349135331955495 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.266448213154552, - "direct_diffuse": 0.2198710419714939, - "direct_direct": 0.02493696206253081, - "direct_hemispherical": 0.24480800403402472 + "diffuse_diffuse": 0.08678259823241587, + "direct_diffuse": 0.0692530586675695, + "direct_direct": 0.021359722106757097, + "direct_hemispherical": 0.0906127807743266 }, "transmittance": { - "diffuse_diffuse": 0.39172417272272786, - "direct_diffuse": 0.08001969868141062, - "direct_direct": 0.4026689549358828, - "direct_hemispherical": 0.4826886536172934 + "diffuse_diffuse": 0.3190285012049904, + "direct_diffuse": 0.03241189259824939, + "direct_direct": 0.4011243317135764, + "direct_hemispherical": 0.4335362243118258 } } } diff --git a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 0dc14ca2..99ab4cbf 100644 --- a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.5651995152361929, - "U": 3.3386079626205576, + "SHGC": 0.5297190707628274, + "U": 3.4119858135834864, "gap_layer_effective_conductivities_shgc": [ - 0.06869745910146217 + 0.06513588201688801 ], "gap_layer_effective_conductivities_u": [ - 0.10153130272882284 + 0.10573601232800196 ], "layer_temperatures_shgc": [ - 307.5350911608022, - 307.6025410136197, - 305.18376249567706, - 305.0721302287548 + 317.2731884616027, + 317.63675453381654, + 308.12606039663365, + 307.92945491830784 ], "layer_temperatures_u": [ - 304.30050670933645, - 304.23151230415027, - 300.99038664124055, - 300.9089780220814 + 304.3216690864252, + 304.2542967224531, + 301.0683027154551, + 300.98510485072075 ], - "relative_heat_gain": 435.8414666879679, + "relative_heat_gain": 410.6829068074956, "solid_layer_effective_conductivities_shgc": [ - 0.3642460740451484, - 0.9999999999999999 + 0.390632514352764, + 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.5459009041826528, + 0.5468818226315201, 1.0 ], - "system_effective_conductivity_shgc": 0.4234760049771673, - "system_effective_conductivity_u": 0.136014576508691 + "system_effective_conductivity_shgc": 0.15721056814642706, + "system_effective_conductivity_u": 0.14129384711529624 } diff --git a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index 940c643c..95c1f16e 100644 --- a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.2335150024391996, + "U": 3.2275086104959607, "gap_layer_effective_conductivities_shgc": [ - 0.07622812610654751 + 0.07594394698258718 ], "gap_layer_effective_conductivities_u": [ - 0.07622812610655025 + 0.07594394698259048 ], "layer_temperatures_shgc": [ - 257.6019487316148, - 257.9065192372277, - 276.7269603760701, - 277.1113347837103 + 257.60570684547054, + 257.91091512981427, + 276.75784800024655, + 277.14150841604 ], "layer_temperatures_u": [ - 257.60194873161475, - 257.90651923722766, - 276.72696037606806, - 277.1113347837082 + 257.60570684547076, + 257.91091512981444, + 276.75784800024974, + 277.14150841604317 ], - "relative_heat_gain": 25.15674671917917, + "relative_heat_gain": 25.110016989804702, "solid_layer_effective_conductivities_shgc": [ - 0.500585561123155, + 0.5020877735343855, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.5005855611231392, + 0.5020877735343872, 1.0 ], - "system_effective_conductivity_shgc": 0.11164040964214754, - "system_effective_conductivity_u": 0.11164040964203817 + "system_effective_conductivity_shgc": 0.11128235759534554, + "system_effective_conductivity_u": 0.11128235759501741 } diff --git a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/tkr.json b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/tkr.json index f0e1ad6c..0f3d3ae4 100644 --- a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/tkr.json +++ b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/tkr.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.25627137223138863, - "heat_direct": 0.22774151722063074, - "total_diffuse": 0.25627137223138863, - "total_direct": 0.22774151722063074 + "heat_diffuse": 0.33390993794420276, + "heat_direct": 0.30060330948204733, + "total_diffuse": 0.33390993794420276, + "total_direct": 0.30060330948204733 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.4793098177117747, - "heat_direct": 0.36991857732151767, - "total_diffuse": 0.4793098177117747, - "total_direct": 0.36991857732151767 + "heat_diffuse": 0.6054449419744243, + "heat_direct": 0.47261120159005016, + "total_diffuse": 0.6054449419744243, + "total_direct": 0.47261120159005016 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.25335573352761465, - "heat_direct": 0.263055410579547, - "total_diffuse": 0.25335573352761465, - "total_direct": 0.263055410579547 + "heat_diffuse": 0.25179592794047473, + "heat_direct": 0.2615463850070678, + "total_diffuse": 0.25179592794047473, + "total_direct": 0.2615463850070678 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.0997719072620875, - "heat_direct": 0.1328545802051631, - "total_diffuse": 0.0997719072620875, - "total_direct": 0.1328545802051631 + "heat_diffuse": 0.09662763372764178, + "heat_direct": 0.13072579292270892, + "total_diffuse": 0.09662763372764178, + "total_direct": 0.13072579292270892 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.21229022402920183, - "direct_diffuse": 0.06008706479418008, - "direct_direct": 0.0776330221922081, - "direct_hemispherical": 0.13772008698638818 + "diffuse_diffuse": 0.1679293254328356, + "direct_diffuse": 0.01761248916673165, + "direct_direct": 0.07625528426566174, + "direct_hemispherical": 0.09386777343239339 }, "transmittance": { - "diffuse_diffuse": 0.2780826702117942, - "direct_diffuse": 0.042364924612266985, - "direct_direct": 0.329118060601167, - "direct_hemispherical": 0.371482985213434 + "diffuse_diffuse": 0.24636480868248753, + "direct_diffuse": 0.015577570846301236, + "direct_direct": 0.3284049612321904, + "direct_hemispherical": 0.3439825320784916 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.13995559665906407, - "direct_diffuse": 0.11060591106041825, - "direct_direct": 0.02107238918828492, - "direct_hemispherical": 0.13167830024870317 + "diffuse_diffuse": 0.04970313534416821, + "direct_diffuse": 0.03414065713341078, + "direct_direct": 0.019244842724947808, + "direct_hemispherical": 0.05338549985835859 }, "transmittance": { - "diffuse_diffuse": 0.2809626783670738, - "direct_diffuse": 0.03642932212282707, - "direct_direct": 0.32911922010178857, - "direct_hemispherical": 0.36554854222461564 + "diffuse_diffuse": 0.24822428895376475, + "direct_diffuse": 0.01487197207134966, + "direct_direct": 0.3284055335575327, + "direct_hemispherical": 0.3432775056288824 } } } diff --git a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/tuv.json b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/tuv.json index 08d45d55..80baf325 100644 --- a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/tuv.json +++ b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/tuv.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.29315569562728694, - "heat_direct": 0.26645709164629233, - "total_diffuse": 0.29315569562728694, - "total_direct": 0.26645709164629233 + "heat_diffuse": 0.31475814317334966, + "heat_direct": 0.28769644916118964, + "total_diffuse": 0.31475814317334966, + "total_direct": 0.28769644916118964 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.58707035166128, - "heat_direct": 0.4614947071911348, - "total_diffuse": 0.58707035166128, - "total_direct": 0.4614947071911348 + "heat_diffuse": 0.63700847102192, + "heat_direct": 0.5035479938243445, + "total_diffuse": 0.63700847102192, + "total_direct": 0.5035479938243445 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.32365301470455554, - "heat_direct": 0.33711134103528595, - "total_diffuse": 0.32365301470455554, - "total_direct": 0.33711134103528595 + "heat_diffuse": 0.3225979300435157, + "heat_direct": 0.33605861648301694, + "total_diffuse": 0.3225979300435157, + "total_direct": 0.33605861648301694 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12713427730701987, - "heat_direct": 0.17017443098636573, - "total_diffuse": 0.12713427730701987, - "total_direct": 0.17017443098636573 + "heat_diffuse": 0.12372353277899922, + "heat_direct": 0.16785211788671617, + "total_diffuse": 0.12372353277899922, + "total_direct": 0.16785211788671617 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.16387911407786812, - "direct_diffuse": 0.01793838228761703, - "direct_direct": 0.07347961630503402, - "direct_hemispherical": 0.09141799859265105 + "diffuse_diffuse": 0.15179082124453938, + "direct_diffuse": 0.005721966865454758, + "direct_direct": 0.07305055223107886, + "direct_hemispherical": 0.07877251909653361 }, "transmittance": { - "diffuse_diffuse": 0.21931217559028912, - "direct_diffuse": 0.012163996207569527, - "direct_direct": 0.2928495725182012, - "direct_hemispherical": 0.30501356872577073 + "diffuse_diffuse": 0.21085310553859507, + "direct_diffuse": 0.00484638321434383, + "direct_direct": 0.292626032044916, + "direct_hemispherical": 0.2974724152592598 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.06515306354212025, - "direct_diffuse": 0.0459064259189374, - "direct_direct": 0.01884357987095032, - "direct_hemispherical": 0.06475000578988772 + "diffuse_diffuse": 0.02783733617036147, + "direct_diffuse": 0.013389752533092762, + "direct_direct": 0.01805396689529573, + "direct_hemispherical": 0.03144371942838849 }, "transmittance": { - "diffuse_diffuse": 0.2206423074895794, - "direct_diffuse": 0.010731155876285758, - "direct_direct": 0.2928497001563255, - "direct_hemispherical": 0.30358085603261126 + "diffuse_diffuse": 0.21143066002871844, + "direct_diffuse": 0.0045299318697824, + "direct_direct": 0.2926262369907687, + "direct_hemispherical": 0.2971561688605511 } } } diff --git a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/photopic.json b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/photopic.json index cf87912c..1ce64602 100644 --- a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/photopic.json +++ b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/photopic.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.09698245782361781, - "heat_direct": 0.03378265279645303, - "total_diffuse": 0.09698245782361781, - "total_direct": 0.03378265279645303 + "heat_diffuse": 0.3858943214936574, + "heat_direct": 0.2812745962159353, + "total_diffuse": 0.3858943214936574, + "total_direct": 0.2812745962159353 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.0731636269072198, - "heat_direct": 0.08592047742624599, - "total_diffuse": 0.0731636269072198, - "total_direct": 0.08592047742624599 + "heat_diffuse": 0.48555509185815826, + "heat_direct": 0.5182612334731277, + "total_diffuse": 0.48555509185815826, + "total_direct": 0.5182612334731277 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.02944052350752053, - "heat_direct": 0.02561299973934723, - "total_diffuse": 0.02944052350752053, - "total_direct": 0.02561299973934723 + "heat_diffuse": 0.02477607924688506, + "heat_direct": 0.021986015287054, + "total_diffuse": 0.02477607924688506, + "total_direct": 0.021986015287054 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.013371418719654271, - "heat_direct": 0.0115206570350003, - "total_diffuse": 0.013371418719654271, - "total_direct": 0.0115206570350003 + "heat_diffuse": 0.010030431818761084, + "heat_direct": 0.008529112232106851, + "total_diffuse": 0.010030431818761084, + "total_direct": 0.008529112232106851 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.38773279818086703, - "direct_diffuse": 0.17233797830987038, - "direct_direct": 0.08810901601888274, - "direct_hemispherical": 0.2604469943287531 + "diffuse_diffuse": 0.22272785126682848, + "direct_diffuse": 0.036727833222366016, + "direct_direct": 0.08333879986897687, + "direct_hemispherical": 0.12006663309134288 }, "transmittance": { - "diffuse_diffuse": 0.485844220487995, - "direct_diffuse": 0.13494789120970296, - "direct_direct": 0.5452094619257439, - "direct_hemispherical": 0.6801573531354469 + "diffuse_diffuse": 0.36660174799262857, + "direct_diffuse": 0.03463825027188017, + "direct_direct": 0.542034505133788, + "direct_hemispherical": 0.5766727554056682 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.4192428150804686, - "direct_diffuse": 0.42017586075463903, - "direct_direct": 0.02383497984038372, - "direct_hemispherical": 0.44401084059502277 + "diffuse_diffuse": 0.13118579589396184, + "direct_diffuse": 0.10800879014356704, + "direct_direct": 0.017900419602387474, + "direct_hemispherical": 0.12590920974595451 }, "transmittance": { - "diffuse_diffuse": 0.4942221392926584, - "direct_diffuse": 0.1576403236575606, - "direct_direct": 0.30090770128617067, - "direct_hemispherical": 0.45854802494373126 + "diffuse_diffuse": 0.3732286804291184, + "direct_diffuse": 0.05019224739978162, + "direct_direct": 0.29710819714902953, + "direct_hemispherical": 0.34730044454881115 } } } diff --git a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/solar.json b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/solar.json index eda74cca..2cd61ad2 100644 --- a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/solar.json +++ b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/solar.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.1253044474174949, - "heat_direct": 0.060456142394910053, - "total_diffuse": 0.1253044474174949, - "total_direct": 0.060456142394910053 + "heat_diffuse": 0.36164894081926463, + "heat_direct": 0.26641413606102465, + "total_diffuse": 0.36164894081926463, + "total_direct": 0.26641413606102465 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.13123127168044604, - "heat_direct": 0.14493411177587648, - "total_diffuse": 0.13123127168044604, - "total_direct": 0.14493411177587648 + "heat_diffuse": 0.5008270298386313, + "heat_direct": 0.533326946985376, + "total_diffuse": 0.5008270298386313, + "total_direct": 0.533326946985376 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12516665795970264, - "heat_direct": 0.11243987089482327, - "total_diffuse": 0.12516665795970264, - "total_direct": 0.11243987089482327 + "heat_diffuse": 0.10967935056203527, + "heat_direct": 0.0999946209649171, + "total_diffuse": 0.10967935056203527, + "total_direct": 0.0999946209649171 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.056819212950958306, - "heat_direct": 0.04918645798025759, - "total_diffuse": 0.056819212950958306, - "total_direct": 0.04918645798025759 + "heat_diffuse": 0.04433281912648777, + "heat_direct": 0.037971425554948875, + "total_diffuse": 0.04433281912648777, + "total_direct": 0.037971425554948875 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.3219515988202735, - "direct_diffuse": 0.1329337504694868, - "direct_direct": 0.07921662453205787, - "direct_hemispherical": 0.21215037500154466 + "diffuse_diffuse": 0.1970562217000556, + "direct_diffuse": 0.028302628121740697, + "direct_direct": 0.07549960645610793, + "direct_hemispherical": 0.10380223457784862 }, "transmittance": { - "diffuse_diffuse": 0.427577295802529, - "direct_diffuse": 0.11106123103442012, - "direct_direct": 0.503892380674302, - "direct_hemispherical": 0.6149536117087221 + "diffuse_diffuse": 0.3316154869186446, + "direct_diffuse": 0.028544043525856044, + "direct_direct": 0.5012449648703541, + "direct_hemispherical": 0.5297890083962101 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.37681003603560925, - "direct_diffuse": 0.37828713425116056, - "direct_direct": 0.021547737017535346, - "direct_hemispherical": 0.3998348712686959 + "diffuse_diffuse": 0.11783627132238737, + "direct_diffuse": 0.09682452569529065, + "direct_direct": 0.016201783604609603, + "direct_hemispherical": 0.11302630929990025 }, "transmittance": { - "diffuse_diffuse": 0.43513947933298747, - "direct_diffuse": 0.12820867391805502, - "direct_direct": 0.27783588505711554, - "direct_hemispherical": 0.40604455897517056 + "diffuse_diffuse": 0.33700387971249374, + "direct_diffuse": 0.04094994225056503, + "direct_direct": 0.27472537590921003, + "direct_hemispherical": 0.31567531815977506 } } } diff --git a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/tdw.json b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/tdw.json index 1ed85867..73d08648 100644 --- a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/tdw.json +++ b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/tdw.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.20640299033738782, - "heat_direct": 0.12582907416141317, - "total_diffuse": 0.20640299033738782, - "total_direct": 0.12582907416141317 + "heat_diffuse": 0.37947520712838406, + "heat_direct": 0.2755758634236271, + "total_diffuse": 0.37947520712838406, + "total_direct": 0.2755758634236271 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.2969777081820147, - "heat_direct": 0.31238825860515057, - "total_diffuse": 0.2969777081820147, - "total_direct": 0.31238825860515057 + "heat_diffuse": 0.5521061083521779, + "heat_direct": 0.580233893474219, + "total_diffuse": 0.5521061083521779, + "total_direct": 0.580233893474219 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.11239588489926405, - "heat_direct": 0.11318085109845566, - "total_diffuse": 0.11239588489926405, - "total_direct": 0.11318085109845566 + "heat_diffuse": 0.10953019253758549, + "heat_direct": 0.11091775177290039, + "total_diffuse": 0.10953019253758549, + "total_direct": 0.11091775177290039 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.04484990594070471, - "heat_direct": 0.04029856429370857, - "total_diffuse": 0.04484990594070471, - "total_direct": 0.04029856429370857 + "heat_diffuse": 0.04208279221041527, + "heat_direct": 0.03784656158465463, + "total_diffuse": 0.04208279221041527, + "total_direct": 0.03784656158465463 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.2949594975652961, - "direct_diffuse": 0.10427083036073154, - "direct_direct": 0.08444535246987106, - "direct_hemispherical": 0.1887161828306026 + "diffuse_diffuse": 0.19599707278627485, + "direct_diffuse": 0.02235202041361556, + "direct_direct": 0.08155165035607095, + "direct_hemispherical": 0.10390367076968651 }, "transmittance": { - "diffuse_diffuse": 0.38624162719805283, - "direct_diffuse": 0.08153428385925804, - "direct_direct": 0.4907396080502709, - "direct_hemispherical": 0.5722738919095289 + "diffuse_diffuse": 0.31499752754775523, + "direct_diffuse": 0.0208175756328568, + "direct_direct": 0.48878513840092963, + "direct_hemispherical": 0.5096027140337864 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.266448213154552, - "direct_diffuse": 0.26179687748014346, - "direct_direct": 0.0207671087712545, - "direct_hemispherical": 0.28256398625139795 + "diffuse_diffuse": 0.08678259823241587, + "direct_diffuse": 0.06670292117359028, + "direct_direct": 0.017052586595020396, + "direct_hemispherical": 0.08375550776861067 }, "transmittance": { - "diffuse_diffuse": 0.39172417272272786, - "direct_diffuse": 0.09463619147217306, - "direct_direct": 0.27011299937756983, - "direct_hemispherical": 0.3647491908497429 + "diffuse_diffuse": 0.3190285012049904, + "direct_diffuse": 0.030321225787541317, + "direct_direct": 0.26784281138497423, + "direct_hemispherical": 0.29816403717251555 } } } diff --git a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 789c4b3a..73eb3d9c 100644 --- a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.451153369718406, - "U": 3.3386079626205576, + "SHGC": 0.4006485987092683, + "U": 3.4119858135834864, "gap_layer_effective_conductivities_shgc": [ - 0.06779545295209313 + 0.06715461753533031 ], "gap_layer_effective_conductivities_u": [ - 0.10153130272882284 + 0.10573601232800196 ], "layer_temperatures_shgc": [ - 309.8128682783836, - 309.94552092486987, - 305.39665895098017, - 305.2662881710955 + 322.32086551856037, + 322.82816503881884, + 309.15829747739167, + 308.9176147341875 ], "layer_temperatures_u": [ - 304.30050670933645, - 304.23151230415027, - 300.99038664124055, - 300.9089780220814 + 304.3216690864252, + 304.2542967224531, + 301.0683027154551, + 300.98510485072075 ], - "relative_heat_gain": 353.1383480590165, + "relative_heat_gain": 317.08456103879314, "solid_layer_effective_conductivities_shgc": [ - 0.3686617576311697, - 0.9999999999999998 + 0.39061866543992857, + 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.5459009041826528, + 0.5468818226315201, 1.0 ], - "system_effective_conductivity_shgc": 0.23563288830772056, - "system_effective_conductivity_u": 0.136014576508691 + "system_effective_conductivity_shgc": 0.12090853199817693, + "system_effective_conductivity_u": 0.14129384711529624 } diff --git a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index 940c643c..95c1f16e 100644 --- a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.2335150024391996, + "U": 3.2275086104959607, "gap_layer_effective_conductivities_shgc": [ - 0.07622812610654751 + 0.07594394698258718 ], "gap_layer_effective_conductivities_u": [ - 0.07622812610655025 + 0.07594394698259048 ], "layer_temperatures_shgc": [ - 257.6019487316148, - 257.9065192372277, - 276.7269603760701, - 277.1113347837103 + 257.60570684547054, + 257.91091512981427, + 276.75784800024655, + 277.14150841604 ], "layer_temperatures_u": [ - 257.60194873161475, - 257.90651923722766, - 276.72696037606806, - 277.1113347837082 + 257.60570684547076, + 257.91091512981444, + 276.75784800024974, + 277.14150841604317 ], - "relative_heat_gain": 25.15674671917917, + "relative_heat_gain": 25.110016989804702, "solid_layer_effective_conductivities_shgc": [ - 0.500585561123155, + 0.5020877735343855, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.5005855611231392, + 0.5020877735343872, 1.0 ], - "system_effective_conductivity_shgc": 0.11164040964214754, - "system_effective_conductivity_u": 0.11164040964203817 + "system_effective_conductivity_shgc": 0.11128235759534554, + "system_effective_conductivity_u": 0.11128235759501741 } diff --git a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/tkr.json b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/tkr.json index 393778fe..80f0a6b2 100644 --- a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/tkr.json +++ b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/tkr.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.25627137223138863, - "heat_direct": 0.1732857261341952, - "total_diffuse": 0.25627137223138863, - "total_direct": 0.1732857261341952 + "heat_diffuse": 0.33390993794420276, + "heat_direct": 0.24184026439269152, + "total_diffuse": 0.33390993794420276, + "total_direct": 0.24184026439269152 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.4793098177117747, - "heat_direct": 0.4974780293632951, - "total_diffuse": 0.4793098177117747, - "total_direct": 0.4974780293632951 + "heat_diffuse": 0.6054449419744243, + "heat_direct": 0.6303284573483179, + "total_diffuse": 0.6054449419744243, + "total_direct": 0.6303284573483179 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.25335573352761465, - "heat_direct": 0.26333273769490245, - "total_diffuse": 0.25335573352761465, - "total_direct": 0.26333273769490245 + "heat_diffuse": 0.25179592794047473, + "heat_direct": 0.26206637826922435, + "total_diffuse": 0.25179592794047473, + "total_direct": 0.26206637826922435 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.0997719072620875, - "heat_direct": 0.0909447002450229, - "total_diffuse": 0.0997719072620875, - "total_direct": 0.0909447002450229 + "heat_diffuse": 0.09662763372764178, + "heat_direct": 0.08818059333839241, + "total_diffuse": 0.09662763372764178, + "total_direct": 0.08818059333839241 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.21229022402920183, - "direct_diffuse": 0.04758408665017608, - "direct_direct": 0.07742416454225334, - "direct_hemispherical": 0.12500825119242942 + "diffuse_diffuse": 0.1679293254328356, + "direct_diffuse": 0.010314477008425721, + "direct_direct": 0.07609653287385221, + "direct_hemispherical": 0.08641100988227793 }, "transmittance": { - "diffuse_diffuse": 0.2780826702117942, - "direct_diffuse": 0.0371534818542667, - "direct_direct": 0.4012198031242063, - "direct_hemispherical": 0.438373284978473 + "diffuse_diffuse": 0.24636480868248753, + "direct_diffuse": 0.009385438451899819, + "direct_direct": 0.4002969090039066, + "direct_hemispherical": 0.4096823474558064 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.13995559665906407, - "direct_diffuse": 0.13128606057030437, - "direct_direct": 0.017425205938325337, - "direct_hemispherical": 0.1487112665086297 + "diffuse_diffuse": 0.04970313534416821, + "direct_diffuse": 0.032842436962606275, + "direct_direct": 0.015547063593485535, + "direct_hemispherical": 0.048389500556091807 }, "transmittance": { - "diffuse_diffuse": 0.2809626783670738, - "direct_diffuse": 0.042558818328811476, - "direct_direct": 0.22030718555424106, - "direct_hemispherical": 0.26286600388305253 + "diffuse_diffuse": 0.24822428895376475, + "direct_diffuse": 0.013805470573430012, + "direct_direct": 0.21929597818376786, + "direct_hemispherical": 0.23310144875719788 } } } diff --git a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/tuv.json b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/tuv.json index 4a718d31..d8afad1b 100644 --- a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/tuv.json +++ b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/tuv.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.29315569562728694, - "heat_direct": 0.20671415964292733, - "total_diffuse": 0.29315569562728694, - "total_direct": 0.20671415964292733 + "heat_diffuse": 0.31475814317334966, + "heat_direct": 0.22755641152823664, + "total_diffuse": 0.31475814317334966, + "total_direct": 0.22755641152823664 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.58707035166128, - "heat_direct": 0.6067938656201981, - "total_diffuse": 0.58707035166128, - "total_direct": 0.6067938656201981 + "heat_diffuse": 0.63700847102192, + "heat_direct": 0.6598960660585739, + "total_diffuse": 0.63700847102192, + "total_direct": 0.6598960660585739 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.32365301470455554, - "heat_direct": 0.33761885349351695, - "total_diffuse": 0.32365301470455554, - "total_direct": 0.33761885349351695 + "heat_diffuse": 0.3225979300435157, + "heat_direct": 0.33673021879708975, + "total_diffuse": 0.3225979300435157, + "total_direct": 0.33673021879708975 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12713427730701987, - "heat_direct": 0.1160641506470972, - "total_diffuse": 0.12713427730701987, - "total_direct": 0.1160641506470972 + "heat_diffuse": 0.12372353277899922, + "heat_direct": 0.1130748722650759, + "total_diffuse": 0.12372353277899922, + "total_direct": 0.1130748722650759 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.16387911407786812, - "direct_diffuse": 0.0140606136075649, - "direct_direct": 0.07350460497180156, - "direct_hemispherical": 0.08756521857936646 + "diffuse_diffuse": 0.15179082124453938, + "direct_diffuse": 0.003184821103775201, + "direct_direct": 0.07310296846724491, + "direct_hemispherical": 0.07628778957102011 }, "transmittance": { - "diffuse_diffuse": 0.21931217559028912, - "direct_diffuse": 0.011024964598089104, - "direct_direct": 0.3570768036861002, - "direct_hemispherical": 0.3681017682841893 + "diffuse_diffuse": 0.21085310553859507, + "direct_diffuse": 0.002662201400378539, + "direct_direct": 0.35676337870327507, + "direct_hemispherical": 0.3594255801036536 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.06515306354212025, - "direct_diffuse": 0.05406013124001398, - "direct_direct": 0.015494749231711723, - "direct_hemispherical": 0.0695548804717257 + "diffuse_diffuse": 0.02783733617036147, + "direct_diffuse": 0.01284554823888734, + "direct_direct": 0.014705035347161914, + "direct_hemispherical": 0.027550583586049254 }, "transmittance": { - "diffuse_diffuse": 0.2206423074895794, - "direct_diffuse": 0.011911800586474924, - "direct_direct": 0.19567530267450423, - "direct_hemispherical": 0.20758710326097915 + "diffuse_diffuse": 0.21143066002871844, + "direct_diffuse": 0.00407445020638858, + "direct_direct": 0.19540402788391253, + "direct_hemispherical": 0.19947847809030111 } } } diff --git a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/photopic.json b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/photopic.json index 987d2fa9..254f2b7d 100644 --- a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/photopic.json +++ b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/photopic.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.09566516675042082, - "heat_direct": 0.0630306000165235, - "total_diffuse": 0.09566516675042082, - "total_direct": 0.0630306000165235 + "heat_diffuse": 0.38647660375769716, + "heat_direct": 0.3317949214191571, + "total_diffuse": 0.38647660375769716, + "total_direct": 0.3317949214191571 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.0709404985296151, - "heat_direct": 0.0236775168944968, - "total_diffuse": 0.0709404985296151, - "total_direct": 0.0236775168944968 + "heat_diffuse": 0.4849765310934897, + "heat_direct": 0.3545985885089521, + "total_diffuse": 0.4849765310934897, + "total_direct": 0.3545985885089521 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.0264232953009272, - "heat_direct": 0.02367538647946191, - "total_diffuse": 0.0264232953009272, - "total_direct": 0.02367538647946191 + "heat_diffuse": 0.022178418976075386, + "heat_direct": 0.019717408534813914, + "total_diffuse": 0.022178418976075386, + "total_direct": 0.019717408534813914 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.012007443361910295, - "heat_direct": 0.012378918898455857, - "total_diffuse": 0.012007443361910295, - "total_direct": 0.012378918898455857 + "heat_diffuse": 0.00898032654192517, + "heat_direct": 0.010390448823853001, + "total_diffuse": 0.00898032654192517, + "total_direct": 0.010390448823853001 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.39013860938807104, - "direct_diffuse": 0.21864052733655437, - "direct_direct": 0.08955029015164118, - "direct_hemispherical": 0.30819081748819555 + "diffuse_diffuse": 0.223674366252908, + "direct_diffuse": 0.06200528445217947, + "direct_direct": 0.08461456934387417, + "direct_hemispherical": 0.14661985379605363 }, "transmittance": { - "diffuse_diffuse": 0.48777292856058146, - "direct_diffuse": 0.15661835254827716, - "direct_direct": 0.448484843467542, - "direct_hemispherical": 0.6051031960158192 + "diffuse_diffuse": 0.3676706110133199, + "direct_diffuse": 0.05593336709851143, + "direct_direct": 0.44593444915146413, + "direct_hemispherical": 0.5018678162499756 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.42087585697457697, - "direct_diffuse": 0.35360114228688383, - "direct_direct": 0.028527518105060923, - "direct_hemispherical": 0.38212866039194476 + "diffuse_diffuse": 0.1317008356035518, + "direct_diffuse": 0.11247327180420855, + "direct_direct": 0.022820077964207507, + "direct_hemispherical": 0.13529334976841606 }, "transmittance": { - "diffuse_diffuse": 0.4961762011338977, - "direct_diffuse": 0.1333252541716085, - "direct_direct": 0.4484896496434941, - "direct_hemispherical": 0.5818149038151026 + "diffuse_diffuse": 0.3743423067610318, + "direct_diffuse": 0.05378131176833728, + "direct_direct": 0.4459363011304415, + "direct_hemispherical": 0.4997176128987788 } } } diff --git a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/solar.json b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/solar.json index 29d7a280..4b716d67 100644 --- a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/solar.json +++ b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/solar.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12387771061462785, - "heat_direct": 0.09379557319686352, - "total_diffuse": 0.12387771061462785, - "total_direct": 0.09379557319686352 + "heat_diffuse": 0.362170068040763, + "heat_direct": 0.3177046586086388, + "total_diffuse": 0.362170068040763, + "total_direct": 0.3177046586086388 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12679444310835997, - "heat_direct": 0.07027166819079267, - "total_diffuse": 0.12679444310835997, - "total_direct": 0.07027166819079267 + "heat_diffuse": 0.49955195134367625, + "heat_direct": 0.3694066467875349, + "total_diffuse": 0.49955195134367625, + "total_direct": 0.3694066467875349 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12272203639873391, - "heat_direct": 0.1121674746653137, - "total_diffuse": 0.12272203639873391, - "total_direct": 0.1121674746653137 + "heat_diffuse": 0.10722512158808573, + "heat_direct": 0.09726003180853539, + "total_diffuse": 0.10722512158808573, + "total_direct": 0.09726003180853539 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.05583241831004, - "heat_direct": 0.059301042498922055, - "total_diffuse": 0.05583241831004, - "total_direct": 0.059301042498922055 + "heat_diffuse": 0.04336221478753589, + "heat_direct": 0.051093370728646816, + "total_diffuse": 0.04336221478753589, + "total_direct": 0.051093370728646816 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.32374730346913805, - "direct_diffuse": 0.16932478007523166, - "direct_direct": 0.08035382201844553, - "direct_hemispherical": 0.2496786020936772 + "diffuse_diffuse": 0.19771368977915008, + "direct_diffuse": 0.048578229072080634, + "direct_direct": 0.07647826475463555, + "direct_hemispherical": 0.1250564938267162 }, "transmittance": { - "diffuse_diffuse": 0.4296529495175003, - "direct_diffuse": 0.1288713914379087, - "direct_direct": 0.4154869586062371, - "direct_hemispherical": 0.5443583500441458 + "diffuse_diffuse": 0.33289112059199966, + "direct_diffuse": 0.04660725918208225, + "direct_direct": 0.41337155657402763, + "direct_hemispherical": 0.4599788157561099 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.3800591837274709, - "direct_diffuse": 0.32011109849714386, - "direct_direct": 0.025844884271370373, - "direct_hemispherical": 0.34595598276851425 + "diffuse_diffuse": 0.11875522629570286, + "direct_diffuse": 0.10119344053947044, + "direct_direct": 0.020650539808924707, + "direct_hemispherical": 0.12184398034839514 }, "transmittance": { - "diffuse_diffuse": 0.43731395485412916, - "direct_diffuse": 0.10898076420650177, - "direct_direct": 0.41549054233526944, - "direct_hemispherical": 0.5244713065417712 + "diffuse_diffuse": 0.33833060757308536, + "direct_diffuse": 0.04428334151228763, + "direct_direct": 0.4133726606231356, + "direct_hemispherical": 0.45765600213542323 } } } diff --git a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/tdw.json b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/tdw.json index 587f5ed0..600bfdfd 100644 --- a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/tdw.json +++ b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/tdw.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.2001791128670308, - "heat_direct": 0.1677658396321151, - "total_diffuse": 0.2001791128670308, - "total_direct": 0.1677658396321151 + "heat_diffuse": 0.38927851367794436, + "heat_direct": 0.34366948272506315, + "total_diffuse": 0.38927851367794436, + "total_direct": 0.34366948272506315 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.26424768894671746, - "heat_direct": 0.18700182077828906, - "total_diffuse": 0.26424768894671746, - "total_direct": 0.18700182077828906 + "heat_diffuse": 0.5425232681365975, + "heat_direct": 0.41096111308030725, + "total_diffuse": 0.5425232681365975, + "total_direct": 0.41096111308030725 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.08467359254921167, - "heat_direct": 0.08087837718958221, - "total_diffuse": 0.08467359254921167, - "total_direct": 0.08087837718958221 + "heat_diffuse": 0.08140867302203365, + "heat_direct": 0.07776567249525586, + "total_diffuse": 0.08140867302203365, + "total_direct": 0.07776567249525586 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.033644260763606146, - "heat_direct": 0.04092334041970274, - "total_diffuse": 0.033644260763606146, - "total_direct": 0.04092334041970274 + "heat_diffuse": 0.03100303359050051, + "heat_direct": 0.03917328856405248, + "total_diffuse": 0.03100303359050051, + "total_direct": 0.03917328856405248 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.3087145625198262, - "direct_diffuse": 0.1436922901051306, - "direct_direct": 0.08643108041788553, - "direct_hemispherical": 0.23012337052301612 + "diffuse_diffuse": 0.2006826994976488, + "direct_diffuse": 0.04130935800732517, + "direct_direct": 0.08316595365751787, + "direct_hemispherical": 0.12447531166484305 }, "transmittance": { - "diffuse_diffuse": 0.40643273206393205, - "direct_diffuse": 0.1024974853509043, - "direct_direct": 0.41873492730438255, - "direct_hemispherical": 0.5212324126552869 + "diffuse_diffuse": 0.3286301138023734, + "direct_diffuse": 0.03704631488345761, + "direct_direct": 0.4170432182313804, + "direct_hemispherical": 0.454089533114838 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.28958044931963106, - "direct_diffuse": 0.24009407059334162, - "direct_direct": 0.025642442778194524, - "direct_hemispherical": 0.26573651337153614 + "diffuse_diffuse": 0.0934253255056768, + "direct_diffuse": 0.07557067884313101, + "direct_direct": 0.021733286608226356, + "direct_hemispherical": 0.09730396545135736 }, "transmittance": { - "diffuse_diffuse": 0.4125276009700449, - "direct_diffuse": 0.08760023908747111, - "direct_direct": 0.41873808634300075, - "direct_hemispherical": 0.5063383254304719 + "diffuse_diffuse": 0.3330483727672252, + "direct_diffuse": 0.035517143362875314, + "direct_direct": 0.4170444895414081, + "direct_hemispherical": 0.4525616329042834 } } } diff --git a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 746f9aa1..99b9e0c5 100644 --- a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.5662138548991023, - "U": 3.3386079626417646, + "SHGC": 0.5304977778762587, + "U": 3.4119858136166505, "gap_layer_effective_conductivities_shgc": [ - 0.06996303682610387 + 0.06535359237072948 ], "gap_layer_effective_conductivities_u": [ - 0.10153130272878834 + 0.1057360123278273 ], "layer_temperatures_shgc": [ - 307.3877262839781, - 307.44976925623183, - 305.0641196194239, - 304.9538523609204 + 317.22025661052754, + 317.58154431844986, + 308.04392545676126, + 307.8478538824532 ], "layer_temperatures_u": [ - 304.3005067093359, - 304.2315123041496, - 300.9903866412388, - 300.9089780220796 + 304.3216690864255, + 304.25429672245355, + 301.06830271545897, + 300.9851048507245 ], - "relative_heat_gain": 436.57703782967667, + "relative_heat_gain": 411.24760372441636, "solid_layer_effective_conductivities_shgc": [ - 0.3583704216706803, + 0.39005304765188337, 0.9999999999999999 ], "solid_layer_effective_conductivities_u": [ - 0.5459009041829214, + 0.5468818226313974, 1.0 ], - "system_effective_conductivity_shgc": 0.4214681511957328, - "system_effective_conductivity_u": 0.13601457651089496 + "system_effective_conductivity_shgc": 0.15540386982720306, + "system_effective_conductivity_u": 0.14129384711859103 } diff --git a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index 817149b4..ca0375ad 100644 --- a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.2335150024657255, + "U": 3.2275086105150854, "gap_layer_effective_conductivities_shgc": [ - 0.07622812610655375 + 0.07594394698258289 ], "gap_layer_effective_conductivities_u": [ - 0.07622812610655225 + 0.07594394698258779 ], "layer_temperatures_shgc": [ - 257.6019487316146, - 257.9065192372275, - 276.7269603760672, - 277.11133478370743 + 257.6057068454707, + 257.9109151298144, + 276.7578480002488, + 277.14150841604226 ], "layer_temperatures_u": [ - 257.6019487316147, - 257.9065192372276, - 276.7269603760682, - 277.11133478370834 + 257.6057068454706, + 257.9109151298143, + 276.7578480002478, + 277.14150841604123 ], - "relative_heat_gain": 25.156746719183804, + "relative_heat_gain": 25.110016989808987, "solid_layer_effective_conductivities_shgc": [ - 0.5005855611231438, + 0.5020877735343798, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.50058556112315, + 0.5020877735343522, 1.0 ], - "system_effective_conductivity_shgc": 0.11164040964214919, - "system_effective_conductivity_u": 0.11164040964214526 + "system_effective_conductivity_shgc": 0.1112823575953517, + "system_effective_conductivity_u": 0.11128235759536129 } diff --git a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/tkr.json b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/tkr.json index 94f7a974..5b1ce023 100644 --- a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/tkr.json +++ b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/tkr.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.2684554304932179, - "heat_direct": 0.24197159011570857, - "total_diffuse": 0.2684554304932179, - "total_direct": 0.24197159011570857 + "heat_diffuse": 0.3589610947223079, + "heat_direct": 0.32710736828927467, + "total_diffuse": 0.3589610947223079, + "total_direct": 0.32710736828927467 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.4550069230155148, - "heat_direct": 0.3491512990800437, - "total_diffuse": 0.4550069230155148, - "total_direct": 0.3491512990800437 + "heat_diffuse": 0.5983124228469624, + "heat_direct": 0.4657273779096991, + "total_diffuse": 0.5983124228469624, + "total_direct": 0.4657273779096991 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.2030137181606991, - "heat_direct": 0.1990034573353776, - "total_diffuse": 0.2030137181606991, - "total_direct": 0.1990034573353776 + "heat_diffuse": 0.20068032884655063, + "heat_direct": 0.1966647448034953, + "total_diffuse": 0.20068032884655063, + "total_direct": 0.1966647448034953 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.07857766168051127, - "heat_direct": 0.10011911538405023, - "total_diffuse": 0.07857766168051127, - "total_direct": 0.10011911538405023 + "heat_diffuse": 0.07587751461946428, + "heat_direct": 0.09830501309945257, + "total_diffuse": 0.07587751461946428, + "total_direct": 0.09830501309945257 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.2225803842262164, - "direct_diffuse": 0.06946029981924724, - "direct_direct": 0.07906885585224964, - "direct_hemispherical": 0.14852915567149688 + "diffuse_diffuse": 0.17135530566583138, + "direct_diffuse": 0.020363578303945667, + "direct_direct": 0.07747470143970321, + "direct_hemispherical": 0.09783827974364888 }, "transmittance": { - "diffuse_diffuse": 0.30595046711986584, - "direct_diffuse": 0.04949045550193326, - "direct_direct": 0.3610053413754838, - "direct_hemispherical": 0.41049579687741705 + "diffuse_diffuse": 0.26900327076531017, + "direct_diffuse": 0.01821785167119222, + "direct_direct": 0.3601717554923889, + "direct_hemispherical": 0.3783896071635811 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.15707499290560073, - "direct_diffuse": 0.12555193817534177, - "direct_direct": 0.02166327814708494, - "direct_hemispherical": 0.1472152163224267 + "diffuse_diffuse": 0.054638525399025514, + "direct_diffuse": 0.03883901606365309, + "direct_direct": 0.019591408587585447, + "direct_hemispherical": 0.05843042465123854 }, "transmittance": { - "diffuse_diffuse": 0.3093404223983736, - "direct_diffuse": 0.04250759469242765, - "direct_direct": 0.36100677452105145, - "direct_hemispherical": 0.4035143692134791 + "diffuse_diffuse": 0.27117153713454695, + "direct_diffuse": 0.017364774344186595, + "direct_direct": 0.3601724099954234, + "direct_hemispherical": 0.37753718433961 } } } diff --git a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/tuv.json b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/tuv.json index fd463d15..ca811a5c 100644 --- a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/tuv.json +++ b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/tuv.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.35980674315082123, - "heat_direct": 0.3338637414873534, - "total_diffuse": 0.35980674315082123, - "total_direct": 0.3338637414873534 + "heat_diffuse": 0.37763984569219655, + "heat_direct": 0.3516375748055806, + "total_diffuse": 0.37763984569219655, + "total_direct": 0.3516375748055806 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.604080964628297, - "heat_direct": 0.47650443406333426, - "total_diffuse": 0.604080964628297, - "total_direct": 0.47650443406333426 + "heat_diffuse": 0.6425377037652926, + "heat_direct": 0.5089513540702121, + "total_diffuse": 0.6425377037652926, + "total_direct": 0.5089513540702121 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.21945100816342508, - "heat_direct": 0.21172675299203197, - "total_diffuse": 0.21945100816342508, - "total_direct": 0.21172675299203197 + "heat_diffuse": 0.21786631161222253, + "heat_direct": 0.21005634135050136, + "total_diffuse": 0.21786631161222253, + "total_direct": 0.21005634135050136 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.08376304951254122, - "heat_direct": 0.10627080568471431, - "total_diffuse": 0.08376304951254122, - "total_direct": 0.10627080568471431 + "heat_diffuse": 0.08169266897435148, + "heat_direct": 0.10487066663377231, + "total_diffuse": 0.08169266897435148, + "total_direct": 0.10487066663377231 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.16357499086858926, - "direct_diffuse": 0.014021715578867389, - "direct_direct": 0.07669296481673098, - "direct_hemispherical": 0.09071468039559837 + "diffuse_diffuse": 0.15424210679414374, + "direct_diffuse": 0.004494960530272679, + "direct_direct": 0.07635501003335025, + "direct_hemispherical": 0.08084997056362293 }, "transmittance": { - "diffuse_diffuse": 0.25716725781716465, - "direct_diffuse": 0.010101711744674835, - "direct_direct": 0.3535931133803417, - "direct_hemispherical": 0.36369482512501655 + "diffuse_diffuse": 0.25025173590143723, + "direct_diffuse": 0.004049886391023549, + "direct_direct": 0.35340622688927176, + "direct_hemispherical": 0.3574561132802953 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.05384599756642166, - "direct_diffuse": 0.03543963573808321, - "direct_direct": 0.019333688410509406, - "direct_hemispherical": 0.054773324148592616 + "diffuse_diffuse": 0.025042833854199083, + "direct_diffuse": 0.010304773372469312, + "direct_direct": 0.01872279262568629, + "direct_hemispherical": 0.0290275659981556 }, "transmittance": { - "diffuse_diffuse": 0.2583099882927402, - "direct_diffuse": 0.00885824536113311, - "direct_direct": 0.3535931907422254, - "direct_hemispherical": 0.3624514361033585 + "diffuse_diffuse": 0.250726793406156, + "direct_diffuse": 0.003744010088866989, + "direct_direct": 0.353406403208993, + "direct_hemispherical": 0.35715041329786 } } } diff --git a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/photopic.json b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/photopic.json index 576b0a42..c7d193ae 100644 --- a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/photopic.json +++ b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/photopic.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.09566516675042082, - "heat_direct": 0.03262335188768294, - "total_diffuse": 0.09566516675042082, - "total_direct": 0.03262335188768294 + "heat_diffuse": 0.38647660375769716, + "heat_direct": 0.28160475575021177, + "total_diffuse": 0.38647660375769716, + "total_direct": 0.28160475575021177 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.0709404985296151, - "heat_direct": 0.08366438816163241, - "total_diffuse": 0.0709404985296151, - "total_direct": 0.08366438816163241 + "heat_diffuse": 0.4849765310934897, + "heat_direct": 0.5176901431642007, + "total_diffuse": 0.4849765310934897, + "total_direct": 0.5176901431642007 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.0264232953009272, - "heat_direct": 0.022959260240346738, - "total_diffuse": 0.0264232953009272, - "total_direct": 0.022959260240346738 + "heat_diffuse": 0.022178418976075386, + "heat_direct": 0.019664041375981774, + "total_diffuse": 0.022178418976075386, + "total_direct": 0.019664041375981774 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.012007443361910295, - "heat_direct": 0.010346799352129288, - "total_diffuse": 0.012007443361910295, - "total_direct": 0.010346799352129288 + "heat_diffuse": 0.00898032654192517, + "heat_direct": 0.007636390456072848, + "total_diffuse": 0.00898032654192517, + "total_direct": 0.007636390456072848 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.39013860938807104, - "direct_diffuse": 0.17375270940395438, - "direct_direct": 0.08847000820553198, - "direct_hemispherical": 0.26222271760948634 + "diffuse_diffuse": 0.223674366252908, + "direct_diffuse": 0.03702899737438292, + "direct_direct": 0.08366217563356292, + "direct_hemispherical": 0.12069117300794584 }, "transmittance": { - "diffuse_diffuse": 0.48777292856058146, - "direct_diffuse": 0.13581999693043212, - "direct_direct": 0.5463746733320517, - "direct_hemispherical": 0.6821946702624838 + "diffuse_diffuse": 0.3676706110133199, + "direct_diffuse": 0.03485940689823319, + "direct_direct": 0.5431806229676273, + "direct_hemispherical": 0.5780400298658604 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.42087585697457697, - "direct_diffuse": 0.4217816354269035, - "direct_direct": 0.023929480264446724, - "direct_hemispherical": 0.44571111569135025 + "diffuse_diffuse": 0.1317008356035518, + "direct_diffuse": 0.10843746334046633, + "direct_direct": 0.01797224373586046, + "direct_hemispherical": 0.1264097070763268 }, "transmittance": { - "diffuse_diffuse": 0.4961762011338977, - "direct_diffuse": 0.15871547433989108, - "direct_direct": 0.3015622224549971, - "direct_hemispherical": 0.46027769679488817 + "diffuse_diffuse": 0.3743423067610318, + "direct_diffuse": 0.05052629045752016, + "direct_direct": 0.29773746884587954, + "direct_hemispherical": 0.3482637593033997 } } } diff --git a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/solar.json b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/solar.json index 510f291d..c308abd2 100644 --- a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/solar.json +++ b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/solar.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12387771061462785, - "heat_direct": 0.059140239447444974, - "total_diffuse": 0.12387771061462785, - "total_direct": 0.059140239447444974 + "heat_diffuse": 0.362170068040763, + "heat_direct": 0.2668955541734268, + "total_diffuse": 0.362170068040763, + "total_direct": 0.2668955541734268 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12679444310835997, - "heat_direct": 0.14042446192014735, - "total_diffuse": 0.12679444310835997, - "total_direct": 0.14042446192014735 + "heat_diffuse": 0.49955195134367625, + "heat_direct": 0.5321547609176612, + "total_diffuse": 0.49955195134367625, + "total_direct": 0.5321547609176612 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12272203639873391, - "heat_direct": 0.10972603653149883, - "total_diffuse": 0.12272203639873391, - "total_direct": 0.10972603653149883 + "heat_diffuse": 0.10722512158808573, + "heat_direct": 0.09726690865815575, + "total_diffuse": 0.10722512158808573, + "total_direct": 0.09726690865815575 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.05583241831004, - "heat_direct": 0.04824504890479196, - "total_diffuse": 0.05583241831004, - "total_direct": 0.04824504890479196 + "heat_diffuse": 0.04336221478753589, + "heat_direct": 0.037045824105498136, + "total_diffuse": 0.04336221478753589, + "total_direct": 0.037045824105498136 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.32374730346913805, - "direct_diffuse": 0.13419835178287254, - "direct_direct": 0.07941431032480825, - "direct_hemispherical": 0.2136126621076808 + "diffuse_diffuse": 0.19771368977915008, + "direct_diffuse": 0.028583838190681596, + "direct_direct": 0.07566166793996039, + "direct_hemispherical": 0.10424550613064199 }, "transmittance": { - "diffuse_diffuse": 0.4296529495175003, - "direct_diffuse": 0.11204316810175408, - "direct_direct": 0.5054778938116212, - "direct_hemispherical": 0.6175210619133753 + "diffuse_diffuse": 0.33289112059199966, + "direct_diffuse": 0.02878792809696107, + "direct_direct": 0.5028041029408145, + "direct_hemispherical": 0.5315920310377755 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.3800591837274709, - "direct_diffuse": 0.3816577714900337, - "direct_direct": 0.02164822822938745, - "direct_hemispherical": 0.40330599971942116 + "diffuse_diffuse": 0.11875522629570286, + "direct_diffuse": 0.09764775335794312, + "direct_direct": 0.01625310091242822, + "direct_hemispherical": 0.11390085427037135 }, "transmittance": { - "diffuse_diffuse": 0.43731395485412916, - "direct_diffuse": 0.129307128561864, - "direct_direct": 0.27871736089377547, - "direct_hemispherical": 0.40802448945563946 + "diffuse_diffuse": 0.33833060757308536, + "direct_diffuse": 0.04131730943842321, + "direct_direct": 0.2755812512680461, + "direct_hemispherical": 0.3168985607064693 } } } diff --git a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/tdw.json b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/tdw.json index 82dc0c03..85bd2700 100644 --- a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/tdw.json +++ b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/tdw.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.2001791128670308, - "heat_direct": 0.11988920207239803, - "total_diffuse": 0.2001791128670308, - "total_direct": 0.11988920207239803 + "heat_diffuse": 0.38927851367794436, + "heat_direct": 0.2838447930193891, + "total_diffuse": 0.38927851367794436, + "total_direct": 0.2838447930193891 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.26424768894671746, - "heat_direct": 0.2791798020712003, - "total_diffuse": 0.26424768894671746, - "total_direct": 0.2791798020712003 + "heat_diffuse": 0.5425232681365975, + "heat_direct": 0.5713610961943505, + "total_diffuse": 0.5425232681365975, + "total_direct": 0.5713610961943505 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.08467359254921167, - "heat_direct": 0.08101987312905763, - "total_diffuse": 0.08467359254921167, - "total_direct": 0.08101987312905763 + "heat_diffuse": 0.08140867302203365, + "heat_direct": 0.07841777071888768, + "total_diffuse": 0.08140867302203365, + "total_direct": 0.07841777071888768 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.033644260763606146, - "heat_direct": 0.029364230806087056, - "total_diffuse": 0.033644260763606146, - "total_direct": 0.029364230806087056 + "heat_diffuse": 0.03100303359050051, + "heat_direct": 0.027022689454890583, + "total_diffuse": 0.03100303359050051, + "total_direct": 0.027022689454890583 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.3087145625198262, - "direct_diffuse": 0.1140397820446203, - "direct_direct": 0.08572952453069697, - "direct_hemispherical": 0.19976930657531727 + "diffuse_diffuse": 0.2006826994976488, + "direct_diffuse": 0.02447363978993855, + "direct_direct": 0.08256270572617125, + "direct_hemispherical": 0.1070363455161098 }, "transmittance": { - "diffuse_diffuse": 0.40643273206393205, - "direct_diffuse": 0.08925264614488237, - "direct_direct": 0.5100689720783451, - "direct_hemispherical": 0.5993216182232275 + "diffuse_diffuse": 0.3286301138023734, + "direct_diffuse": 0.022778927318534925, + "direct_direct": 0.5079221634270787, + "direct_hemispherical": 0.5307010907456137 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.28958044931963106, - "direct_diffuse": 0.2857896802349192, - "direct_direct": 0.021372020595513033, - "direct_hemispherical": 0.3071617008304322 + "diffuse_diffuse": 0.0934253255056768, + "direct_diffuse": 0.07276529545123699, + "direct_direct": 0.017314619210022964, + "direct_hemispherical": 0.09007991466125995 }, "transmittance": { - "diffuse_diffuse": 0.4125276009700449, - "direct_diffuse": 0.10347459486141697, - "direct_direct": 0.2808196714308636, - "direct_hemispherical": 0.3842942662922806 + "diffuse_diffuse": 0.3330483727672252, + "direct_diffuse": 0.03319767629314396, + "direct_direct": 0.27833862339635507, + "direct_hemispherical": 0.31153629968949903 } } } diff --git a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index d91db20e..b5209ae1 100644 --- a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.452057180061311, - "U": 3.3386079626417646, + "SHGC": 0.4012215390177919, + "U": 3.4119858136166505, "gap_layer_effective_conductivities_shgc": [ - 0.0682995902435933 + 0.0672471713918365 ], "gap_layer_effective_conductivities_u": [ - 0.10153130272878834 + 0.1057360123278273 ], "layer_temperatures_shgc": [ - 309.651369020118, - 309.7785029874405, - 305.2955197215343, - 305.1665938168798 + 322.27569453250555, + 322.7812067669305, + 309.1009137710485, + 308.86067851597045 ], "layer_temperatures_u": [ - 304.3005067093359, - 304.2315123041496, - 300.9903866412388, - 300.9089780220796 + 304.3216690864255, + 304.25429672245355, + 301.06830271545897, + 300.9851048507245 ], - "relative_heat_gain": 353.7937663869339, + "relative_heat_gain": 317.5000415453465, "solid_layer_effective_conductivities_shgc": [ - 0.36640285316282906, - 1.0 + 0.39032970884800383, + 0.9999999999999999 ], "solid_layer_effective_conductivities_u": [ - 0.5459009041829214, + 0.5468818226313974, 1.0 ], - "system_effective_conductivity_shgc": 0.23563521125782627, - "system_effective_conductivity_u": 0.13601457651089496 + "system_effective_conductivity_shgc": 0.12014693449641556, + "system_effective_conductivity_u": 0.14129384711859103 } diff --git a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index 817149b4..ca0375ad 100644 --- a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.2335150024657255, + "U": 3.2275086105150854, "gap_layer_effective_conductivities_shgc": [ - 0.07622812610655375 + 0.07594394698258289 ], "gap_layer_effective_conductivities_u": [ - 0.07622812610655225 + 0.07594394698258779 ], "layer_temperatures_shgc": [ - 257.6019487316146, - 257.9065192372275, - 276.7269603760672, - 277.11133478370743 + 257.6057068454707, + 257.9109151298144, + 276.7578480002488, + 277.14150841604226 ], "layer_temperatures_u": [ - 257.6019487316147, - 257.9065192372276, - 276.7269603760682, - 277.11133478370834 + 257.6057068454706, + 257.9109151298143, + 276.7578480002478, + 277.14150841604123 ], - "relative_heat_gain": 25.156746719183804, + "relative_heat_gain": 25.110016989808987, "solid_layer_effective_conductivities_shgc": [ - 0.5005855611231438, + 0.5020877735343798, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.50058556112315, + 0.5020877735343522, 1.0 ], - "system_effective_conductivity_shgc": 0.11164040964214919, - "system_effective_conductivity_u": 0.11164040964214526 + "system_effective_conductivity_shgc": 0.1112823575953517, + "system_effective_conductivity_u": 0.11128235759536129 } diff --git a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/tkr.json b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/tkr.json index 0377ff35..9b44c90b 100644 --- a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/tkr.json +++ b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/tkr.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.2684554304932179, - "heat_direct": 0.18312028107451778, - "total_diffuse": 0.2684554304932179, - "total_direct": 0.18312028107451778 + "heat_diffuse": 0.3589610947223079, + "heat_direct": 0.2632066676053505, + "total_diffuse": 0.3589610947223079, + "total_direct": 0.2632066676053505 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.4550069230155148, - "heat_direct": 0.47286174571938605, - "total_diffuse": 0.4550069230155148, - "total_direct": 0.47286174571938605 + "heat_diffuse": 0.5983124228469624, + "heat_direct": 0.6237510590257971, + "total_diffuse": 0.5983124228469624, + "total_direct": 0.6237510590257971 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.2030137181606991, - "heat_direct": 0.20045047111093714, - "total_diffuse": 0.2030137181606991, - "total_direct": 0.20045047111093714 + "heat_diffuse": 0.20068032884655063, + "heat_direct": 0.19848196275170024, + "total_diffuse": 0.20068032884655063, + "total_direct": 0.19848196275170024 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.07857766168051127, - "heat_direct": 0.06929971901321288, - "total_diffuse": 0.07857766168051127, - "total_direct": 0.06929971901321288 + "heat_diffuse": 0.07587751461946428, + "heat_direct": 0.06693301034616639, + "total_diffuse": 0.07587751461946428, + "total_direct": 0.06693301034616639 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.2225803842262164, - "direct_diffuse": 0.055006939385173384, - "direct_direct": 0.07874514756498267, - "direct_hemispherical": 0.13375208695015606 + "diffuse_diffuse": 0.17135530566583138, + "direct_diffuse": 0.011919494966000019, + "direct_direct": 0.07720917146486324, + "direct_hemispherical": 0.08912866643086326 }, "transmittance": { - "diffuse_diffuse": 0.30595046711986584, - "direct_diffuse": 0.043386329619371444, - "direct_direct": 0.43929083124501794, - "direct_hemispherical": 0.4826771608643894 + "diffuse_diffuse": 0.26900327076531017, + "direct_diffuse": 0.01097076802822039, + "direct_direct": 0.43821193518386575, + "direct_hemispherical": 0.44918270321208614 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.15707499290560073, - "direct_diffuse": 0.14902552933343544, - "direct_direct": 0.017920595772513984, - "direct_hemispherical": 0.16694612510594942 + "diffuse_diffuse": 0.054638525399025514, + "direct_diffuse": 0.03734965587966659, + "direct_direct": 0.015789363166159087, + "direct_hemispherical": 0.05313901904582568 }, "transmittance": { - "diffuse_diffuse": 0.3093404223983736, - "direct_diffuse": 0.04963845336424677, - "direct_direct": 0.24125395679720485, - "direct_hemispherical": 0.2908924101614516 + "diffuse_diffuse": 0.27117153713454695, + "direct_diffuse": 0.016104315370126215, + "direct_direct": 0.24007259621208468, + "direct_hemispherical": 0.2561769115822109 } } } diff --git a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/tuv.json b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/tuv.json index b36ef1c8..4dcf2803 100644 --- a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/tuv.json +++ b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/tuv.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.35980674315082123, - "heat_direct": 0.2590846777012789, - "total_diffuse": 0.35980674315082123, - "total_direct": 0.2590846777012789 + "heat_diffuse": 0.37763984569219655, + "heat_direct": 0.2765377795545478, + "total_diffuse": 0.37763984569219655, + "total_direct": 0.2765377795545478 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.604080964628297, - "heat_direct": 0.6237256505467536, - "total_diffuse": 0.604080964628297, - "total_direct": 0.6237256505467536 + "heat_diffuse": 0.6425377037652926, + "heat_direct": 0.6646368245309122, + "total_diffuse": 0.6425377037652926, + "total_direct": 0.6646368245309122 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.21945100816342508, - "heat_direct": 0.21387565529137115, - "total_diffuse": 0.21945100816342508, - "total_direct": 0.21387565529137115 + "heat_diffuse": 0.21786631161222253, + "heat_direct": 0.21245836903157803, + "total_diffuse": 0.21786631161222253, + "total_direct": 0.21245836903157803 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.08376304951254122, - "heat_direct": 0.0731841445438866, - "total_diffuse": 0.08376304951254122, - "total_direct": 0.0731841445438866 + "heat_diffuse": 0.08169266897435148, + "heat_direct": 0.07138959123242873, + "total_diffuse": 0.08169266897435148, + "total_direct": 0.07138959123242873 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.16357499086858926, - "direct_diffuse": 0.010971831633414683, - "direct_direct": 0.07666698452131691, - "direct_hemispherical": 0.0876388161547316 + "diffuse_diffuse": 0.15424210679414374, + "direct_diffuse": 0.002482085570927106, + "direct_direct": 0.07635183915323222, + "direct_hemispherical": 0.07883392472415933 }, "transmittance": { - "diffuse_diffuse": 0.25716725781716465, - "direct_diffuse": 0.009175483427466213, - "direct_direct": 0.43022536742515244, - "direct_hemispherical": 0.43940085085261865 + "diffuse_diffuse": 0.25025173590143723, + "direct_diffuse": 0.0022077778143526072, + "direct_direct": 0.4299621488753619, + "direct_hemispherical": 0.4321699266897145 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.05384599756642166, - "direct_diffuse": 0.041716060144747165, - "direct_direct": 0.015865430484068646, - "direct_hemispherical": 0.05758149062881581 + "diffuse_diffuse": 0.025042833854199083, + "direct_diffuse": 0.00988334989839249, + "direct_direct": 0.01525522332162703, + "direct_hemispherical": 0.02513857322001952 }, "transmittance": { - "diffuse_diffuse": 0.2583099882927402, - "direct_diffuse": 0.009797243154592322, - "direct_direct": 0.23571147112595184, - "direct_hemispherical": 0.24550871428054416 + "diffuse_diffuse": 0.250726793406156, + "direct_diffuse": 0.003347670400152436, + "direct_direct": 0.23548734061648696, + "direct_hemispherical": 0.2388350110166394 } } } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/photopic.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/photopic.json index d7d229db..fb925c42 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/photopic.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/photopic.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.07300370269921579, - "heat_direct": 0.06421246470212473, - "total_diffuse": 0.07300370269921579, - "total_direct": 0.06421246470212473 + "heat_diffuse": 0.20957538534420225, + "heat_direct": 0.17882987284000923, + "total_diffuse": 0.20957538534420225, + "total_direct": 0.17882987284000923 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.10036129181806745, - "heat_direct": 0.06948738318897987, - "total_diffuse": 0.10036129181806745, - "total_direct": 0.06948738318897987 + "heat_diffuse": 0.29910648860984895, + "heat_direct": 0.20743130858228956, + "total_diffuse": 0.29910648860984895, + "total_direct": 0.20743130858228956 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.026810614970886545, - "heat_direct": 0.02382926628011424, - "total_diffuse": 0.026810614970886545, - "total_direct": 0.02382926628011424 + "heat_diffuse": 0.024211198985291154, + "heat_direct": 0.021410079223342454, + "total_diffuse": 0.024211198985291154, + "total_direct": 0.021410079223342454 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.016900982126852707, - "heat_direct": 0.016179425641427506, - "total_diffuse": 0.016900982126852707, - "total_direct": 0.016179425641427506 + "heat_diffuse": 0.015462631543995345, + "heat_direct": 0.01568359879360485, + "total_diffuse": 0.015462631543995345, + "total_direct": 0.01568359879360485 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.2901175843532996, - "direct_diffuse": 0.11656876120153248, - "direct_direct": 0.08527682332220374, - "direct_hemispherical": 0.20184558452373622 + "diffuse_diffuse": 0.20233087313701964, + "direct_diffuse": 0.03564517847193567, + "direct_direct": 0.08317494516998669, + "direct_hemispherical": 0.11882012364192236 }, "transmittance": { - "diffuse_diffuse": 0.610068097976597, - "direct_diffuse": 0.05019406070321075, - "direct_direct": 0.6599186237908142, - "direct_hemispherical": 0.710112684494025 + "diffuse_diffuse": 0.5638825425334865, + "direct_diffuse": 0.02134152408761303, + "direct_direct": 0.6595984002071141, + "direct_hemispherical": 0.6809399242947272 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.27200178808097086, - "direct_diffuse": 0.1716096479526497, - "direct_direct": 0.048052057304617195, - "direct_hemispherical": 0.21966170525726691 + "diffuse_diffuse": 0.11936242138175784, + "direct_diffuse": 0.051664427783642226, + "direct_direct": 0.04541336669495991, + "direct_hemispherical": 0.09707779447860214 }, "transmittance": { - "diffuse_diffuse": 0.610735937974109, - "direct_diffuse": 0.034747010456720795, - "direct_direct": 0.6599244754556051, - "direct_hemispherical": 0.6946714859123259 + "diffuse_diffuse": 0.5660684584643964, + "direct_diffuse": 0.020198923948551273, + "direct_direct": 0.6596083741969524, + "direct_hemispherical": 0.6798072981455037 } } } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/solar.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/solar.json index fc5d5ea3..d7a353aa 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/solar.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/solar.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.08345343867582533, - "heat_direct": 0.07415123109780314, - "total_diffuse": 0.08345343867582533, - "total_direct": 0.07415123109780314 + "heat_diffuse": 0.19627044489098813, + "heat_direct": 0.17032484044180218, + "total_diffuse": 0.19627044489098813, + "total_direct": 0.17032484044180218 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12803816530047565, - "heat_direct": 0.08897701182818006, - "total_diffuse": 0.12803816530047565, - "total_direct": 0.08897701182818006 + "heat_diffuse": 0.30627516222935525, + "heat_direct": 0.21299942308037867, + "total_diffuse": 0.30627516222935525, + "total_direct": 0.21299942308037867 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.11654441316775645, - "heat_direct": 0.10616737887167212, - "total_diffuse": 0.11654441316775645, - "total_direct": 0.10616737887167212 + "heat_diffuse": 0.10776977890098953, + "heat_direct": 0.0977909640516949, + "total_diffuse": 0.10776977890098953, + "total_direct": 0.0977909640516949 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.07458918688738413, - "heat_direct": 0.07363056609963811, - "total_diffuse": 0.07458918688738413, - "total_direct": 0.07363056609963811 + "heat_diffuse": 0.06935589034788404, + "heat_direct": 0.07192109398513592, + "total_diffuse": 0.06935589034788404, + "total_direct": 0.07192109398513592 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.2487393384177805, - "direct_diffuse": 0.09086862748236442, - "direct_direct": 0.0770885278267691, - "direct_hemispherical": 0.16795715530913352 + "diffuse_diffuse": 0.1814385154337255, + "direct_diffuse": 0.027901497526149177, + "direct_direct": 0.07542921860228019, + "direct_hemispherical": 0.10333071612842937 }, "transmittance": { - "diffuse_diffuse": 0.5512628097386376, - "direct_diffuse": 0.040529596558952274, - "direct_direct": 0.6111946381624392, - "direct_hemispherical": 0.6517242347213915 + "diffuse_diffuse": 0.5145212607742976, + "direct_diffuse": 0.017606455916870822, + "direct_direct": 0.6109470234612026, + "direct_hemispherical": 0.6285534793780734 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.24556247305481058, - "direct_diffuse": 0.1551190233827526, - "direct_direct": 0.04356809892889724, - "direct_hemispherical": 0.19868712231164984 + "diffuse_diffuse": 0.10816262137739739, + "direct_diffuse": 0.04658201380948238, + "direct_direct": 0.04117248990116854, + "direct_hemispherical": 0.08775450371065092 }, "transmittance": { - "diffuse_diffuse": 0.551810174757332, - "direct_diffuse": 0.027506269469730782, - "direct_direct": 0.6111990302908019, - "direct_hemispherical": 0.6387052997605327 + "diffuse_diffuse": 0.5162063260453634, + "direct_diffuse": 0.016370588178805323, + "direct_direct": 0.6109543910450291, + "direct_hemispherical": 0.6273249792238345 } } } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/tdw.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/tdw.json index 7c0f088a..3c61a8e1 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/tdw.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/tdw.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12436511397849306, - "heat_direct": 0.10856442150065188, - "total_diffuse": 0.12436511397849306, - "total_direct": 0.10856442150065188 + "heat_diffuse": 0.20748696020169238, + "heat_direct": 0.17833624328615316, + "total_diffuse": 0.20748696020169238, + "total_direct": 0.17833624328615316 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.21284966211052367, - "heat_direct": 0.1489229995506936, - "total_diffuse": 0.21284966211052367, - "total_direct": 0.1489229995506936 + "heat_diffuse": 0.3363866907986186, + "heat_direct": 0.23494686152274996, + "total_diffuse": 0.3363866907986186, + "total_direct": 0.23494686152274996 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.11084466450410389, - "heat_direct": 0.11177948547486144, - "total_diffuse": 0.11084466450410389, - "total_direct": 0.11177948547486144 + "heat_diffuse": 0.10917701235531586, + "heat_direct": 0.1102179662263474, + "total_diffuse": 0.10917701235531586, + "total_direct": 0.1102179662263474 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.07181653185121355, - "heat_direct": 0.08150215492734977, - "total_diffuse": 0.07181653185121355, - "total_direct": 0.08150215492734977 + "heat_diffuse": 0.07066807973766698, + "heat_direct": 0.08116314573569795, + "total_diffuse": 0.07066807973766698, + "total_direct": 0.08116314573569795 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.23728160979331808, - "direct_diffuse": 0.07147348417814776, - "direct_direct": 0.08268013712928589, - "direct_hemispherical": 0.15415362130743365 + "diffuse_diffuse": 0.18366951162949868, + "direct_diffuse": 0.021952411495173227, + "direct_direct": 0.08139049864709583, + "direct_hemispherical": 0.10334291014226905 }, "transmittance": { - "diffuse_diffuse": 0.5275086117240847, - "direct_diffuse": 0.030255340774755446, - "direct_direct": 0.5952471309422981, - "direct_hemispherical": 0.6255024717170535 + "diffuse_diffuse": 0.4996665158134925, + "direct_diffuse": 0.013044991720045362, + "direct_direct": 0.5950578886251853, + "direct_hemispherical": 0.6081028803452306 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.18741638769656016, - "direct_diffuse": 0.1075302888809182, - "direct_direct": 0.045877825455796856, - "direct_hemispherical": 0.15340811433671506 + "diffuse_diffuse": 0.09194926249586079, + "direct_diffuse": 0.03228336623054607, + "direct_direct": 0.044218071676189, + "direct_hemispherical": 0.07650143790673507 }, "transmittance": { - "diffuse_diffuse": 0.5279174183417046, - "direct_diffuse": 0.020916291689147104, - "direct_direct": 0.5952504394960944, - "direct_hemispherical": 0.6161667311852415 + "diffuse_diffuse": 0.5009959669678531, + "direct_diffuse": 0.01232502140037961, + "direct_direct": 0.5950635334344375, + "direct_hemispherical": 0.6073885548348171 } } } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 2f6899c8..3a413291 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.6873499007228372, - "U": 3.450451939652313, + "SHGC": 0.6868042697778004, + "U": 3.512139090921914, "gap_layer_effective_conductivities_shgc": [ - 0.03932663419832542 + 0.041034646774867366 ], "gap_layer_effective_conductivities_u": [ - 0.10320991624355391 + 0.10679983500182168 ], "layer_temperatures_shgc": [ - 308.51223395214095, - 308.5793403774534, - 305.81012240445125, - 305.6977549199086 + 313.1341295412933, + 313.2919105636493, + 306.8840815131101, + 306.7423120519067 ], "layer_temperatures_u": [ - 304.45282219515195, - 304.4175180710384, - 301.10908324737363, - 301.0249474245925 + 304.4672993159638, + 304.4327718522484, + 301.174390431332, + 301.0887504290042 ], - "relative_heat_gain": 525.29170271786, + "relative_heat_gain": 525.3759522462203, "solid_layer_effective_conductivities_shgc": [ - 0.3509054915148741, + 0.3564972160130334, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.6782801347465842, + 0.6800728735557491, 1.0 ], - "system_effective_conductivity_shgc": 0.38893347837655556, - "system_effective_conductivity_u": 0.13418366447500946 + "system_effective_conductivity_shgc": 0.1946600837013564, + "system_effective_conductivity_u": 0.13857666725702927 } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index ce5e5db7..6d8c1322 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.2976233116976785, + "U": 3.2922451109172726, "gap_layer_effective_conductivities_shgc": [ - 0.077171035815109 + 0.07690532720090969 ], "gap_layer_effective_conductivities_u": [ - 0.0771710358151065 + 0.07690532720092123 ], "layer_temperatures_shgc": [ - 257.1125687127709, - 257.273151214505, - 276.3973735482583, - 276.78936863907995 + 257.1124918928292, + 257.27299263438965, + 276.42501734628155, + 276.8163731195991 ], "layer_temperatures_u": [ - 257.1125687127705, - 257.27315121450454, - 276.3973735482559, - 276.78936863907757 + 257.11249189282984, + 257.2729926343903, + 276.4250173462848, + 276.8163731196023 ], - "relative_heat_gain": 25.655509365217636, + "relative_heat_gain": 25.613666963107544, "solid_layer_effective_conductivities_shgc": [ - 0.5916533392872505, + 0.5945199037093993, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.5916533392871324, - 1.0000000000000002 + 0.5945199037094047, + 1.0 ], - "system_effective_conductivity_shgc": 0.10891051404761487, - "system_effective_conductivity_u": 0.10891051404751086 + "system_effective_conductivity_shgc": 0.10858344429827718, + "system_effective_conductivity_u": 0.10858344429788512 } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/tkr.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/tkr.json index f02af1f8..9e7d0341 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/tkr.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/tkr.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.1451748618807049, - "heat_direct": 0.126485033627296, - "total_diffuse": 0.1451748618807049, - "total_direct": 0.126485033627296 + "heat_diffuse": 0.1835855814996957, + "heat_direct": 0.15876534669571915, + "total_diffuse": 0.1835855814996957, + "total_direct": 0.15876534669571915 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.30436023970893894, - "heat_direct": 0.2137059621741017, - "total_diffuse": 0.30436023970893894, - "total_direct": 0.2137059621741017 + "heat_diffuse": 0.3659116139295274, + "heat_direct": 0.25684604031100167, + "total_diffuse": 0.3659116139295274, + "total_direct": 0.25684604031100167 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.2525733950631748, - "heat_direct": 0.26224021944299797, - "total_diffuse": 0.2525733950631748, - "total_direct": 0.26224021944299797 + "heat_diffuse": 0.25159757130966337, + "heat_direct": 0.26131654997016956, + "total_diffuse": 0.25159757130966337, + "total_direct": 0.26131654997016956 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.16490615648646237, - "heat_direct": 0.1928554673136709, - "total_diffuse": 0.16490615648646237, - "total_direct": 0.1928554673136709 + "heat_diffuse": 0.16368850850561276, + "heat_direct": 0.19257862418102753, + "total_diffuse": 0.16368850850561276, + "total_direct": 0.19257862418102753 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.1871827817321729, - "direct_diffuse": 0.03344066481900308, - "direct_direct": 0.07654067882355699, - "direct_hemispherical": 0.10998134364256007 + "diffuse_diffuse": 0.16231263743812682, + "direct_diffuse": 0.01035898759807917, + "direct_direct": 0.07593606507750561, + "direct_hemispherical": 0.08629505267558478 }, "transmittance": { - "diffuse_diffuse": 0.4150689613239463, - "direct_diffuse": 0.01365300287292276, - "direct_direct": 0.48764040041422335, - "direct_hemispherical": 0.5012934032871461 + "diffuse_diffuse": 0.4025042097525132, + "direct_diffuse": 0.006063933362491503, + "direct_direct": 0.48755911729603496, + "direct_hemispherical": 0.49362305065852646 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.11547381363713526, - "direct_diffuse": 0.05450884997901925, - "direct_direct": 0.04189737477879238, - "direct_hemispherical": 0.09640622475781163 + "diffuse_diffuse": 0.0672854811025809, + "direct_diffuse": 0.016262132565459435, + "direct_direct": 0.04104892273629964, + "direct_hemispherical": 0.057311055301759076 }, "transmittance": { - "diffuse_diffuse": 0.415259790167463, - "direct_diffuse": 0.00939066057918797, - "direct_direct": 0.48764168517522793, - "direct_hemispherical": 0.4970323457544159 + "diffuse_diffuse": 0.4031143964622776, + "direct_diffuse": 0.005702969126189283, + "direct_direct": 0.4875613110800223, + "direct_hemispherical": 0.4932642802062116 } } } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/tuv.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/tuv.json index 6a6ad6e1..bbc4586a 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/tuv.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/tuv.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.16174016038364408, - "heat_direct": 0.14081920427398292, - "total_diffuse": 0.16174016038364408, - "total_direct": 0.14081920427398292 + "heat_diffuse": 0.17378845080528155, + "heat_direct": 0.15102647283254816, + "total_diffuse": 0.17378845080528155, + "total_direct": 0.15102647283254816 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.35864296838667187, - "heat_direct": 0.2521289251430032, - "total_diffuse": 0.35864296838667187, - "total_direct": 0.2521289251430032 + "heat_diffuse": 0.38349597410560227, + "heat_direct": 0.2698592548459722, + "total_diffuse": 0.38349597410560227, + "total_direct": 0.2698592548459722 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.32317715692181664, - "heat_direct": 0.3365815872871074, - "total_diffuse": 0.32317715692181664, - "total_direct": 0.3365815872871074 + "heat_diffuse": 0.32245821224947635, + "heat_direct": 0.3358917209018788, + "total_diffuse": 0.32245821224947635, + "total_direct": 0.3358917209018788 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.2111754421783138, - "heat_direct": 0.24782141753399742, - "total_diffuse": 0.2111754421783138, - "total_direct": 0.24782141753399742 + "heat_diffuse": 0.2098878130596237, + "heat_direct": 0.24756367295074122, + "total_diffuse": 0.2098878130596237, + "total_direct": 0.24756367295074122 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.1579503373145468, - "direct_diffuse": 0.010882524034447602, - "direct_direct": 0.07314433269328117, - "direct_hemispherical": 0.08402685672772878 + "diffuse_diffuse": 0.1501416493427016, + "direct_diffuse": 0.0034788146596990005, + "direct_direct": 0.07294556303025607, + "direct_hemispherical": 0.07642437768995507 }, "transmittance": { - "diffuse_diffuse": 0.357132345379993, - "direct_diffuse": 0.003832912790219467, - "direct_direct": 0.43473943892096156, - "direct_hemispherical": 0.43857235171118103 + "diffuse_diffuse": 0.3536116876025414, + "direct_diffuse": 0.0019351244426012992, + "direct_direct": 0.4347223041330167, + "direct_hemispherical": 0.436657428575618 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.07298725094981819, - "direct_diffuse": 0.02308103293631232, - "direct_direct": 0.039673581333626376, - "direct_hemispherical": 0.0627546142699387 + "diffuse_diffuse": 0.052821757750364656, + "direct_diffuse": 0.006767968934386172, + "direct_direct": 0.03930618801176195, + "direct_hemispherical": 0.04607415694614812 }, "transmittance": { - "diffuse_diffuse": 0.3571943384851962, - "direct_diffuse": 0.0025555119499775514, - "direct_direct": 0.4347395311030831, - "direct_hemispherical": 0.43729504305306066 + "diffuse_diffuse": 0.353794455084411, + "direct_diffuse": 0.001780454881308735, + "direct_direct": 0.43472246037582973, + "direct_hemispherical": 0.43650291525713847 } } } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/photopic.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/photopic.json index 3168bb40..80e7ca3b 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/photopic.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/photopic.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.07300370269921579, - "heat_direct": 0.04454937282990297, - "total_diffuse": 0.07300370269921579, - "total_direct": 0.04454937282990297 + "heat_diffuse": 0.20957538534420225, + "heat_direct": 0.120323910175605, + "total_diffuse": 0.20957538534420225, + "total_direct": 0.120323910175605 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.10036129181806745, - "heat_direct": 0.09108135810347325, - "total_diffuse": 0.10036129181806745, - "total_direct": 0.09108135810347325 + "heat_diffuse": 0.29910648860984895, + "heat_direct": 0.2613698822140863, + "total_diffuse": 0.29910648860984895, + "total_direct": 0.2613698822140863 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.026810614970886545, - "heat_direct": 0.023138940600352854, - "total_diffuse": 0.026810614970886545, - "total_direct": 0.023138940600352854 + "heat_diffuse": 0.024211198985291154, + "heat_direct": 0.02145617186328972, + "total_diffuse": 0.024211198985291154, + "total_direct": 0.02145617186328972 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.016900982126852707, - "heat_direct": 0.015041552165934413, - "total_diffuse": 0.016900982126852707, - "total_direct": 0.015041552165934413 + "heat_diffuse": 0.015462631543995345, + "heat_direct": 0.014347335076001937, + "total_diffuse": 0.015462631543995345, + "total_direct": 0.014347335076001937 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.2901175843532996, - "direct_diffuse": 0.08028594600768231, - "direct_direct": 0.0849887736149144, - "direct_hemispherical": 0.1652747196225967 + "diffuse_diffuse": 0.20233087313701964, + "direct_diffuse": 0.0217261988095621, + "direct_direct": 0.08311990795239838, + "direct_hemispherical": 0.10484610676196048 }, "transmittance": { - "diffuse_diffuse": 0.610068097976597, - "direct_diffuse": 0.03053216216957122, - "direct_direct": 0.7365048047775762, - "direct_hemispherical": 0.7670369669471474 + "diffuse_diffuse": 0.5638825425334865, + "direct_diffuse": 0.017012857755055677, + "direct_direct": 0.7363609534440893, + "direct_hemispherical": 0.7533738111991449 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.27200178808097086, - "direct_diffuse": 0.22129468755633463, - "direct_direct": 0.046953655651432454, - "direct_hemispherical": 0.2682483432077671 + "diffuse_diffuse": 0.11936242138175784, + "direct_diffuse": 0.07375897021499317, + "direct_direct": 0.044909974555030846, + "direct_hemispherical": 0.11866894477002402 }, "transmittance": { - "diffuse_diffuse": 0.610735937974109, - "direct_diffuse": 0.04327566413045514, - "direct_direct": 0.5823530823923703, - "direct_hemispherical": 0.6256287465228254 + "diffuse_diffuse": 0.5660684584643964, + "direct_diffuse": 0.023795749273861078, + "direct_direct": 0.5818180886660264, + "direct_hemispherical": 0.6056138379398874 } } } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/solar.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/solar.json index ba7cb98b..ddaede33 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/solar.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/solar.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.08345343867582533, - "heat_direct": 0.050961880833282625, - "total_diffuse": 0.08345343867582533, - "total_direct": 0.050961880833282625 + "heat_diffuse": 0.19627044489098813, + "heat_direct": 0.11445444002113722, + "total_diffuse": 0.19627044489098813, + "total_direct": 0.11445444002113722 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12803816530047565, - "heat_direct": 0.1163531958479928, - "total_diffuse": 0.12803816530047565, - "total_direct": 0.1163531958479928 + "heat_diffuse": 0.30627516222935525, + "heat_direct": 0.2697468276941585, + "total_diffuse": 0.30627516222935525, + "total_direct": 0.2697468276941585 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.11654441316775645, - "heat_direct": 0.1040722253407924, - "total_diffuse": 0.11654441316775645, - "total_direct": 0.1040722253407924 + "heat_diffuse": 0.10776977890098953, + "heat_direct": 0.09822848603443159, + "total_diffuse": 0.10776977890098953, + "total_direct": 0.09822848603443159 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.07458918688738413, - "heat_direct": 0.06794948187219087, - "total_diffuse": 0.07458918688738413, - "total_direct": 0.06794948187219087 + "heat_diffuse": 0.06935589034788404, + "heat_direct": 0.06550812257472383, + "total_diffuse": 0.06935589034788404, + "total_direct": 0.06550812257472383 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.2487393384177805, - "direct_diffuse": 0.06255325697029407, - "direct_direct": 0.07680271378894674, - "direct_hemispherical": 0.1393559707592408 + "diffuse_diffuse": 0.1814385154337255, + "direct_diffuse": 0.01693612467684867, + "direct_direct": 0.0753310437753677, + "direct_hemispherical": 0.09226716845221637 }, "transmittance": { - "diffuse_diffuse": 0.5512628097386376, - "direct_diffuse": 0.02451416737245693, - "direct_direct": 0.6810957556942274, - "direct_hemispherical": 0.7056099230666844 + "diffuse_diffuse": 0.5145212607742976, + "direct_diffuse": 0.014063803169494293, + "direct_direct": 0.6809861023227209, + "direct_hemispherical": 0.6950499054922152 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.24556247305481058, - "direct_diffuse": 0.20023406520198886, - "direct_direct": 0.04252826140569351, - "direct_hemispherical": 0.24276232660768238 + "diffuse_diffuse": 0.10816262137739739, + "direct_diffuse": 0.0666281251412213, + "direct_direct": 0.04067455798708527, + "direct_hemispherical": 0.10730268312830657 }, "transmittance": { - "diffuse_diffuse": 0.551810174757332, - "direct_diffuse": 0.03445598037112241, - "direct_direct": 0.5384790153010114, - "direct_hemispherical": 0.5729349956721338 + "diffuse_diffuse": 0.5162063260453634, + "direct_diffuse": 0.019379800703677397, + "direct_direct": 0.5380625658991341, + "direct_hemispherical": 0.5574423666028115 } } } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/tdw.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/tdw.json index a920d00b..e70dedd1 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/tdw.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/tdw.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12436511397849306, - "heat_direct": 0.07392340861861864, - "total_diffuse": 0.12436511397849306, - "total_direct": 0.07392340861861864 + "heat_diffuse": 0.20748696020169238, + "heat_direct": 0.12009260374744542, + "total_diffuse": 0.20748696020169238, + "total_direct": 0.12009260374744542 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.21284966211052367, - "heat_direct": 0.1927082661737451, - "total_diffuse": 0.21284966211052367, - "total_direct": 0.1927082661737451 + "heat_diffuse": 0.3363866907986186, + "heat_direct": 0.29869881841245216, + "total_diffuse": 0.3363866907986186, + "total_direct": 0.29869881841245216 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.11084466450410389, - "heat_direct": 0.11167993368771027, - "total_diffuse": 0.11084466450410389, - "total_direct": 0.11167993368771027 + "heat_diffuse": 0.10917701235531586, + "heat_direct": 0.11059146287865525, + "total_diffuse": 0.10917701235531586, + "total_direct": 0.11059146287865525 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.07181653185121355, - "heat_direct": 0.0727175887701341, - "total_diffuse": 0.07181653185121355, - "total_direct": 0.0727175887701341 + "heat_diffuse": 0.07066807973766698, + "heat_direct": 0.07224594758425273, + "total_diffuse": 0.07066807973766698, + "total_direct": 0.07224594758425273 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.23728160979331808, - "direct_diffuse": 0.049242874877842666, - "direct_direct": 0.08256781784682755, - "direct_hemispherical": 0.13181069272467022 + "diffuse_diffuse": 0.18366951162949868, + "direct_diffuse": 0.013371696908362735, + "direct_direct": 0.08142070882639761, + "direct_hemispherical": 0.09479240573476035 }, "transmittance": { - "diffuse_diffuse": 0.5275086117240847, - "direct_diffuse": 0.018371529240158502, - "direct_direct": 0.6642144357288426, - "direct_hemispherical": 0.6825859649690011 + "diffuse_diffuse": 0.4996665158134925, + "direct_diffuse": 0.010398966550410504, + "direct_direct": 0.6641245610887283, + "direct_hemispherical": 0.6745235276391388 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.18741638769656016, - "direct_diffuse": 0.1386255832431484, - "direct_direct": 0.04500444658228458, - "direct_hemispherical": 0.18363002982543297 + "diffuse_diffuse": 0.09194926249586079, + "direct_diffuse": 0.04608921928793333, + "direct_direct": 0.043719484917361204, + "direct_hemispherical": 0.08980870420529453 }, "transmittance": { - "diffuse_diffuse": 0.5279174183417046, - "direct_diffuse": 0.025896486034665656, - "direct_direct": 0.5250476291960222, - "direct_hemispherical": 0.5509441152306879 + "diffuse_diffuse": 0.5009959669678531, + "direct_diffuse": 0.014507272053702391, + "direct_direct": 0.5247392577442983, + "direct_hemispherical": 0.5392465297980007 } } } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 0d0f2c3b..56cc1a01 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.6211094544604595, - "U": 3.450451939652313, + "SHGC": 0.6187819699442215, + "U": 3.512139090921914, "gap_layer_effective_conductivities_shgc": [ - 0.043014304009329755 + 0.04302476960704847 ], "gap_layer_effective_conductivities_u": [ - 0.10320991624355391 + 0.10679983500182168 ], "layer_temperatures_shgc": [ - 309.4928499775138, - 309.57798046734035, - 305.77256330767455, - 305.65453866438156 + 315.1650548788804, + 315.3605167583377, + 307.0640435054074, + 306.91018170360445 ], "layer_temperatures_u": [ - 304.45282219515195, - 304.4175180710384, - 301.10908324737363, - 301.0249474245925 + 304.4672993159638, + 304.4327718522484, + 301.174390431332, + 301.0887504290042 ], - "relative_heat_gain": 477.2559584110534, + "relative_heat_gain": 476.0480568841209, "solid_layer_effective_conductivities_shgc": [ - 0.3429492770855043, + 0.35282604296290937, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.6782801347465842, + 0.6800728735557491, 1.0 ], - "system_effective_conductivity_shgc": 0.28359112867937375, - "system_effective_conductivity_u": 0.13418366447500946 + "system_effective_conductivity_shgc": 0.1536672635712139, + "system_effective_conductivity_u": 0.13857666725702927 } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index ce5e5db7..6d8c1322 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.2976233116976785, + "U": 3.2922451109172726, "gap_layer_effective_conductivities_shgc": [ - 0.077171035815109 + 0.07690532720090969 ], "gap_layer_effective_conductivities_u": [ - 0.0771710358151065 + 0.07690532720092123 ], "layer_temperatures_shgc": [ - 257.1125687127709, - 257.273151214505, - 276.3973735482583, - 276.78936863907995 + 257.1124918928292, + 257.27299263438965, + 276.42501734628155, + 276.8163731195991 ], "layer_temperatures_u": [ - 257.1125687127705, - 257.27315121450454, - 276.3973735482559, - 276.78936863907757 + 257.11249189282984, + 257.2729926343903, + 276.4250173462848, + 276.8163731196023 ], - "relative_heat_gain": 25.655509365217636, + "relative_heat_gain": 25.613666963107544, "solid_layer_effective_conductivities_shgc": [ - 0.5916533392872505, + 0.5945199037093993, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.5916533392871324, - 1.0000000000000002 + 0.5945199037094047, + 1.0 ], - "system_effective_conductivity_shgc": 0.10891051404761487, - "system_effective_conductivity_u": 0.10891051404751086 + "system_effective_conductivity_shgc": 0.10858344429827718, + "system_effective_conductivity_u": 0.10858344429788512 } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/tkr.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/tkr.json index bdc20826..e4a2082f 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/tkr.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/tkr.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.1451748618807049, - "heat_direct": 0.08557123566922799, - "total_diffuse": 0.1451748618807049, - "total_direct": 0.08557123566922799 + "heat_diffuse": 0.1835855814996957, + "heat_direct": 0.10696800792213068, + "total_diffuse": 0.1835855814996957, + "total_direct": 0.10696800792213068 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.30436023970893894, - "heat_direct": 0.27597711042857154, - "total_diffuse": 0.30436023970893894, - "total_direct": 0.27597711042857154 + "heat_diffuse": 0.3659116139295274, + "heat_direct": 0.3289807791695573, + "total_diffuse": 0.3659116139295274, + "total_direct": 0.3289807791695573 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.2525733950631748, - "heat_direct": 0.2625335931657994, - "total_diffuse": 0.2525733950631748, - "total_direct": 0.2625335931657994 + "heat_diffuse": 0.25159757130966337, + "heat_direct": 0.2618877824845084, + "total_diffuse": 0.25159757130966337, + "total_direct": 0.2618877824845084 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.16490615648646237, - "heat_direct": 0.17108113705304917, - "total_diffuse": 0.16490615648646237, - "total_direct": 0.17108113705304917 + "heat_diffuse": 0.16368850850561276, + "heat_direct": 0.17069525392489324, + "total_diffuse": 0.16368850850561276, + "total_direct": 0.17069525392489324 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.1871827817321729, - "direct_diffuse": 0.023052641449044023, - "direct_direct": 0.0765760067778649, - "direct_hemispherical": 0.09962864822690892 + "diffuse_diffuse": 0.16231263743812682, + "direct_diffuse": 0.006300958174138643, + "direct_direct": 0.07603791406428316, + "direct_hemispherical": 0.0823388722384218 }, "transmittance": { - "diffuse_diffuse": 0.4150689613239463, - "direct_diffuse": 0.00825524608595285, - "direct_direct": 0.5440112768521111, - "direct_hemispherical": 0.552266522938064 + "diffuse_diffuse": 0.4025042097525132, + "direct_diffuse": 0.004836880438552571, + "direct_direct": 0.5439684569163864, + "direct_hemispherical": 0.548805337354939 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.11547381363713526, - "direct_diffuse": 0.07026582056825506, - "direct_direct": 0.0412396757808051, - "direct_hemispherical": 0.11150549634906017 + "diffuse_diffuse": 0.0672854811025809, + "direct_diffuse": 0.023230930662932976, + "direct_direct": 0.04058353548005116, + "direct_hemispherical": 0.06381446614298414 }, "transmittance": { - "diffuse_diffuse": 0.415259790167463, - "direct_diffuse": 0.011511415857138108, - "direct_direct": 0.4299248403121812, - "direct_hemispherical": 0.4414362561693193 + "diffuse_diffuse": 0.4031143964622776, + "direct_diffuse": 0.006710366997548678, + "direct_direct": 0.4297991337650165, + "direct_hemispherical": 0.4365095007625652 } } } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/tuv.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/tuv.json index bda1310b..55944535 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/tuv.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/tuv.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.16174016038364408, - "heat_direct": 0.09497854858649014, - "total_diffuse": 0.16174016038364408, - "total_direct": 0.09497854858649014 + "heat_diffuse": 0.17378845080528155, + "heat_direct": 0.10178597317607736, + "total_diffuse": 0.17378845080528155, + "total_direct": 0.10178597317607736 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.35864296838667187, - "heat_direct": 0.3252869217216086, - "total_diffuse": 0.35864296838667187, - "total_direct": 0.3252869217216086 + "heat_diffuse": 0.38349597410560227, + "heat_direct": 0.34692695013749336, + "total_diffuse": 0.38349597410560227, + "total_direct": 0.34692695013749336 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.32317715692181664, - "heat_direct": 0.33709239848640876, - "total_diffuse": 0.32317715692181664, - "total_direct": 0.33709239848640876 + "heat_diffuse": 0.32245821224947635, + "heat_direct": 0.33660841260545354, + "total_diffuse": 0.32245821224947635, + "total_direct": 0.33660841260545354 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.2111754421783138, - "heat_direct": 0.21968708538251308, - "total_diffuse": 0.2111754421783138, - "total_direct": 0.21968708538251308 + "heat_diffuse": 0.2098878130596237, + "heat_direct": 0.2193270641715977, + "total_diffuse": 0.2098878130596237, + "total_direct": 0.2193270641715977 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.1579503373145468, - "direct_diffuse": 0.007516539712900824, - "direct_direct": 0.07326405639711465, - "direct_hemispherical": 0.08078059611001548 + "diffuse_diffuse": 0.1501416493427016, + "direct_diffuse": 0.002103696431083296, + "direct_direct": 0.07308690281077214, + "direct_hemispherical": 0.07519059924185544 }, "transmittance": { - "diffuse_diffuse": 0.357132345379993, - "direct_diffuse": 0.002268611702987977, - "direct_direct": 0.48487984511409776, - "direct_hemispherical": 0.48714845681708574 + "diffuse_diffuse": 0.3536116876025414, + "direct_diffuse": 0.0015495069957829344, + "direct_direct": 0.4848655079808305, + "direct_hemispherical": 0.48641501497661344 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.07298725094981819, - "direct_diffuse": 0.029760692222734045, - "direct_direct": 0.039140262089209815, - "direct_hemispherical": 0.06890095431194386 + "diffuse_diffuse": 0.052821757750364656, + "direct_diffuse": 0.009690582912508919, + "direct_direct": 0.03885703481002785, + "direct_hemispherical": 0.04854761772253677 }, "transmittance": { - "diffuse_diffuse": 0.3571943384851962, - "direct_diffuse": 0.0030078062866233934, - "direct_direct": 0.3831172322973117, - "direct_hemispherical": 0.3861250385839351 + "diffuse_diffuse": 0.353794455084411, + "direct_diffuse": 0.0020991552301670158, + "direct_direct": 0.38309921273820485, + "direct_hemispherical": 0.38519836796837187 } } } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/photopic.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/photopic.json index 40d216fc..564889a2 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/photopic.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/photopic.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.0724761987142736, - "heat_direct": 0.06372934041977091, - "total_diffuse": 0.0724761987142736, - "total_direct": 0.06372934041977091 + "heat_diffuse": 0.2098952461942391, + "heat_direct": 0.17900324180977434, + "total_diffuse": 0.2098952461942391, + "total_direct": 0.17900324180977434 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.09930256584456133, - "heat_direct": 0.06874421614772067, - "total_diffuse": 0.09930256584456133, - "total_direct": 0.06874421614772067 + "heat_diffuse": 0.29883471740217904, + "heat_direct": 0.20722397725073335, + "total_diffuse": 0.29883471740217904, + "total_direct": 0.20722397725073335 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.02402668657873436, - "heat_direct": 0.021340813635334376, - "total_diffuse": 0.02402668657873436, - "total_direct": 0.021340813635334376 + "heat_diffuse": 0.02166492305901821, + "heat_direct": 0.019145391907908062, + "total_diffuse": 0.02166492305901821, + "total_direct": 0.019145391907908062 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.015130420020914725, - "heat_direct": 0.01446413621214285, - "total_diffuse": 0.015130420020914725, - "total_direct": 0.01446413621214285 + "heat_diffuse": 0.01382609261010109, + "heat_direct": 0.014013030978349213, + "total_diffuse": 0.01382609261010109, + "total_direct": 0.014013030978349213 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.29162633119245807, - "direct_diffuse": 0.11747976643324957, - "direct_direct": 0.08561225510686955, - "direct_hemispherical": 0.20309202154011913 + "diffuse_diffuse": 0.20310558768242976, + "direct_diffuse": 0.03591818331255328, + "direct_direct": 0.08349477951941646, + "direct_hemispherical": 0.11941296283196974 }, "transmittance": { - "diffuse_diffuse": 0.6118707835145333, - "direct_diffuse": 0.050554152650712614, - "direct_direct": 0.6612836717540626, - "direct_hemispherical": 0.7118378244047752 + "diffuse_diffuse": 0.565334243064312, + "direct_diffuse": 0.021477794224509017, + "direct_direct": 0.6609606092258392, + "direct_hemispherical": 0.6824384034503482 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.27302407017108365, - "direct_diffuse": 0.1722405052003844, - "direct_direct": 0.04824205758597613, - "direct_hemispherical": 0.22048256278636053 + "diffuse_diffuse": 0.11980065948839487, + "direct_diffuse": 0.05185926347989935, + "direct_direct": 0.045594102937298035, + "direct_hemispherical": 0.09745336641719739 }, "transmittance": { - "diffuse_diffuse": 0.6125429439634412, - "direct_diffuse": 0.03501950497750406, - "direct_direct": 0.6612895798762721, - "direct_hemispherical": 0.6963090848537762 + "diffuse_diffuse": 0.5675385304993279, + "direct_diffuse": 0.02033894081926957, + "direct_direct": 0.6609706845344501, + "direct_hemispherical": 0.6813096253537196 } } } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/solar.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/solar.json index a3addf63..ec39091d 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/solar.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/solar.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.08260991962781566, - "heat_direct": 0.07346616845322275, - "total_diffuse": 0.08260991962781566, - "total_direct": 0.07346616845322275 + "heat_diffuse": 0.19648654475080918, + "heat_direct": 0.1705270050999223, + "total_diffuse": 0.19648654475080918, + "total_direct": 0.1705270050999223 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.1256707398334821, - "heat_direct": 0.08728686012488418, - "total_diffuse": 0.1256707398334821, - "total_direct": 0.08728686012488418 + "heat_diffuse": 0.3055054600189102, + "heat_direct": 0.21243975624323674, + "total_diffuse": 0.3055054600189102, + "total_direct": 0.21243975624323674 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.11410173196941599, - "heat_direct": 0.10343609340132107, - "total_diffuse": 0.11410173196941599, - "total_direct": 0.10343609340132107 + "heat_diffuse": 0.10531378070224802, + "heat_direct": 0.09504501322046524, + "total_diffuse": 0.10531378070224802, + "total_direct": 0.09504501322046524 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.07294081537991721, - "heat_direct": 0.07157207280440667, - "total_diffuse": 0.07294081537991721, - "total_direct": 0.07157207280440667 + "heat_diffuse": 0.06771057534864582, + "heat_direct": 0.06986295242862563, + "total_diffuse": 0.06771057534864582, + "total_direct": 0.06986295242862563 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.24994878601842233, - "direct_diffuse": 0.09181433915611441, - "direct_direct": 0.07726904917864584, - "direct_hemispherical": 0.16908338833476025 + "diffuse_diffuse": 0.18194887909451596, + "direct_diffuse": 0.028198349338665676, + "direct_direct": 0.07559269785472715, + "direct_hemispherical": 0.10379104719339283 }, "transmittance": { - "diffuse_diffuse": 0.5533395623843459, - "direct_diffuse": 0.04090750716278457, - "direct_direct": 0.6131068426479115, - "direct_hemispherical": 0.6540143498106961 + "diffuse_diffuse": 0.5162507954524258, + "direct_diffuse": 0.017779934128625663, + "direct_direct": 0.6128570003575937, + "direct_hemispherical": 0.6306369344862194 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.2474960579751785, - "direct_diffuse": 0.15655268348643153, - "direct_direct": 0.04370777346903826, - "direct_hemispherical": 0.2002604569554698 + "diffuse_diffuse": 0.10883066966509566, + "direct_diffuse": 0.04700920800933858, + "direct_direct": 0.041289766562689345, + "direct_hemispherical": 0.08829897457202793 }, "transmittance": { - "diffuse_diffuse": 0.5538923868114206, - "direct_diffuse": 0.02776934687166044, - "direct_direct": 0.6131112632435789, - "direct_hemispherical": 0.6408806101152393 + "diffuse_diffuse": 0.5179532949673481, + "direct_diffuse": 0.016533898960471305, + "direct_direct": 0.612864417795638, + "direct_hemispherical": 0.6293983167561094 } } } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/tdw.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/tdw.json index 5971b381..553a796b 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/tdw.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/tdw.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12128127651738342, - "heat_direct": 0.10668555335772724, - "total_diffuse": 0.12128127651738342, - "total_direct": 0.10668555335772724 + "heat_diffuse": 0.21245200586219293, + "heat_direct": 0.18323696580142115, + "total_diffuse": 0.21245200586219293, + "total_direct": 0.18323696580142115 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.1959079368559146, - "heat_direct": 0.1369080642218082, - "total_diffuse": 0.1959079368559146, - "total_direct": 0.1369080642218082 + "heat_diffuse": 0.33082517913494924, + "heat_direct": 0.23088429962992024, + "total_diffuse": 0.33082517913494924, + "total_direct": 0.23088429962992024 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.08290715120419587, - "heat_direct": 0.07909948730446074, - "total_diffuse": 0.08290715120419587, - "total_direct": 0.07909948730446074 + "heat_diffuse": 0.08100509997636869, + "heat_direct": 0.07730362031591291, + "total_diffuse": 0.08100509997636869, + "total_direct": 0.07730362031591291 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.053084006225579565, - "heat_direct": 0.057269258900438734, - "total_diffuse": 0.053084006225579565, - "total_direct": 0.057269258900438734 + "heat_diffuse": 0.05195871803044295, + "heat_direct": 0.056917228738480416, + "total_diffuse": 0.05195871803044295, + "total_direct": 0.056917228738480416 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.24597941876894694, - "direct_diffuse": 0.07840111675166186, - "direct_direct": 0.08383409368923359, - "direct_hemispherical": 0.16223521044089545 + "diffuse_diffuse": 0.18720985110245478, + "direct_diffuse": 0.024097875713572192, + "direct_direct": 0.08241928972612646, + "direct_hemispherical": 0.10651716543969865 }, "transmittance": { - "diffuse_diffuse": 0.5498321535094729, - "direct_diffuse": 0.03315705885754405, - "direct_direct": 0.6188226900393724, - "direct_hemispherical": 0.6519797488969165 + "diffuse_diffuse": 0.519333043058984, + "direct_diffuse": 0.014326436571287737, + "direct_direct": 0.6186158118716795, + "direct_hemispherical": 0.6329422484429672 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.20072692593772676, - "direct_diffuse": 0.11749332438945548, - "direct_direct": 0.046587646749665194, - "direct_hemispherical": 0.16408097113912068 + "diffuse_diffuse": 0.0964256219451772, + "direct_diffuse": 0.035273928118661396, + "direct_direct": 0.04477383123269499, + "direct_hemispherical": 0.08004775935135638 }, "transmittance": { - "diffuse_diffuse": 0.5502811309807791, - "direct_diffuse": 0.02291542322674256, - "direct_direct": 0.6188262825118896, - "direct_hemispherical": 0.6417417057386322 + "diffuse_diffuse": 0.5207904808894299, + "direct_diffuse": 0.013528770218285802, + "direct_direct": 0.6186219420619574, + "direct_hemispherical": 0.6321507122802432 } } } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 7cd7190f..fd839a67 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.6882349034761025, - "U": 3.450451939632022, + "SHGC": 0.6877111307421748, + "U": 3.512139090988507, "gap_layer_effective_conductivities_shgc": [ - 0.04134036423369453 + 0.04186522044737555 ], "gap_layer_effective_conductivities_u": [ - 0.10320991624349313 + 0.10679983500162636 ], "layer_temperatures_shgc": [ - 308.4311396292964, - 308.49609102774536, - 305.6908171699215, - 305.579072729294 + 313.0973861988161, + 313.25394552495857, + 306.7782697690466, + 306.6368282383135 ], "layer_temperatures_u": [ - 304.4528221951519, - 304.41751807103833, - 301.10908324737045, - 301.02494742458936 + 304.4672993159637, + 304.43277185224827, + 301.1743904313363, + 301.0887504290084 ], - "relative_heat_gain": 525.9334823007215, + "relative_heat_gain": 526.033582800497, "solid_layer_effective_conductivities_shgc": [ - 0.3460180337355751, - 1.0 + 0.35455739231214134, + 0.9999999999999998 ], "solid_layer_effective_conductivities_u": [ - 0.6782801347467776, + 0.6800728735550791, 1.0 ], - "system_effective_conductivity_shgc": 0.37790491504446266, - "system_effective_conductivity_u": 0.13418366447299396 + "system_effective_conductivity_shgc": 0.19023316165477908, + "system_effective_conductivity_u": 0.13857666726344045 } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index 9f68f960..748e7af8 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.297623311725584, + "U": 3.2922451109402626, "gap_layer_effective_conductivities_shgc": [ - 0.0771710358151051 + 0.07690532720090985 ], "gap_layer_effective_conductivities_u": [ - 0.07717103581510719 + 0.07690532720090876 ], "layer_temperatures_shgc": [ - 257.1125687127708, - 257.2731512145049, - 276.3973735482591, - 276.78936863908086 + 257.1124918928292, + 257.2729926343897, + 276.42501734628155, + 276.8163731195991 ], "layer_temperatures_u": [ - 257.1125687127708, - 257.2731512145049, - 276.3973735482583, - 276.78936863907995 + 257.11249189282904, + 257.2729926343895, + 276.4250173462787, + 276.8163731195963 ], - "relative_heat_gain": 25.655509365224592, + "relative_heat_gain": 25.613666963113907, "solid_layer_effective_conductivities_shgc": [ - 0.5916533392872317, + 0.5945199037093901, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.5916533392872358, + 0.5945199037093039, 1.0 ], - "system_effective_conductivity_shgc": 0.10891051404762714, - "system_effective_conductivity_u": 0.10891051404764494 + "system_effective_conductivity_shgc": 0.10858344429825237, + "system_effective_conductivity_u": 0.1085834442982692 } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/tkr.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/tkr.json index 02ca2b75..0b28ba33 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/tkr.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/tkr.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.15195824236308125, - "heat_direct": 0.13501036856512652, - "total_diffuse": 0.15195824236308125, - "total_direct": 0.13501036856512652 + "heat_diffuse": 0.19684421781466832, + "heat_direct": 0.172825014162444, + "total_diffuse": 0.19684421781466832, + "total_direct": 0.172825014162444 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.2917509016165816, - "heat_direct": 0.20485276428086935, - "total_diffuse": 0.2917509016165816, - "total_direct": 0.20485276428086935 + "heat_diffuse": 0.3617473739590303, + "heat_direct": 0.25388632980296827, + "total_diffuse": 0.3617473739590303, + "total_direct": 0.25388632980296827 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.20183531538433358, - "heat_direct": 0.19772575092672234, - "total_diffuse": 0.20183531538433358, - "total_direct": 0.19772575092672234 + "heat_diffuse": 0.20037984933147934, + "heat_direct": 0.19629899602780546, + "total_diffuse": 0.20037984933147934, + "total_direct": 0.19629899602780546 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.13014355947397474, - "heat_direct": 0.14495485428369723, - "total_diffuse": 0.13014355947397474, - "total_direct": 0.14495485428369723 + "heat_diffuse": 0.12904510447222442, + "heat_direct": 0.14467625344265342, + "total_diffuse": 0.12904510447222442, + "total_direct": 0.14467625344265342 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.19363575661338164, - "direct_diffuse": 0.038697711311395516, - "direct_direct": 0.0778058876965113, - "direct_hemispherical": 0.11650359900790681 + "diffuse_diffuse": 0.16487276025167172, + "direct_diffuse": 0.011985436665019195, + "direct_direct": 0.07710567728890809, + "direct_hemispherical": 0.08909111395392728 }, "transmittance": { - "diffuse_diffuse": 0.4525706856392041, - "direct_diffuse": 0.015979216170795563, - "direct_direct": 0.5347810653294495, - "direct_hemispherical": 0.550760281500245 + "diffuse_diffuse": 0.43790317260218037, + "direct_diffuse": 0.007099010047217136, + "direct_direct": 0.5346858658086059, + "direct_hemispherical": 0.541784875855823 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.12531172030245732, - "direct_diffuse": 0.06186365514910746, - "direct_direct": 0.04257578238505951, - "direct_hemispherical": 0.10443943753416697 + "diffuse_diffuse": 0.07059632555022678, + "direct_diffuse": 0.018475325787472782, + "direct_direct": 0.04161391553143223, + "direct_hemispherical": 0.060089241318905015 }, "transmittance": { - "diffuse_diffuse": 0.4527938186069872, - "direct_diffuse": 0.010970368812430742, - "direct_direct": 0.5347825750888364, - "direct_hemispherical": 0.5457529439012672 + "diffuse_diffuse": 0.4386111960185181, + "direct_diffuse": 0.006659732318805567, + "direct_direct": 0.5346884431166673, + "direct_hemispherical": 0.5413481754354729 } } } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/tuv.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/tuv.json index 3ac4201c..149ca922 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/tuv.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/tuv.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.19840228044162864, - "heat_direct": 0.1759561144278881, - "total_diffuse": 0.19840228044162864, - "total_direct": 0.1759561144278881 + "heat_diffuse": 0.2083840587781516, + "heat_direct": 0.18453667845800767, + "total_diffuse": 0.2083840587781516, + "total_direct": 0.18453667845800767 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.36802838018865613, - "heat_direct": 0.2589308433246898, - "total_diffuse": 0.36802838018865613, - "total_direct": 0.2589308433246898 + "heat_diffuse": 0.38717835541982026, + "heat_direct": 0.2726105771731172, + "total_diffuse": 0.38717835541982026, + "total_direct": 0.2726105771731172 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.21872843650725038, - "heat_direct": 0.21086718390032455, - "total_diffuse": 0.21872843650725038, - "total_direct": 0.21086718390032455 + "heat_diffuse": 0.21765160897631433, + "heat_direct": 0.20978036119665955, + "total_diffuse": 0.21765160897631433, + "total_direct": 0.20978036119665955 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.14048939970324448, - "heat_direct": 0.15490748157127593, - "total_diffuse": 0.14048939970324448, - "total_direct": 0.15490748157127593 + "heat_diffuse": 0.1396561214472286, + "heat_direct": 0.15472653115084498, + "total_diffuse": 0.1396561214472286, + "total_direct": 0.15472653115084498 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.1590231691118306, - "direct_diffuse": 0.008528523635633431, - "direct_direct": 0.07642894737517528, - "direct_hemispherical": 0.08495747101080871 + "diffuse_diffuse": 0.15295936411027727, + "direct_diffuse": 0.00273120374957761, + "direct_direct": 0.07627197412868333, + "direct_hemispherical": 0.07900317787826094 }, "transmittance": { - "diffuse_diffuse": 0.42384611393929006, - "direct_diffuse": 0.003133843721238594, - "direct_direct": 0.5250853869397399, - "direct_hemispherical": 0.5282192306609785 + "diffuse_diffuse": 0.42100496813525823, + "direct_diffuse": 0.0016077015118564075, + "direct_direct": 0.5250720809552148, + "direct_hemispherical": 0.5266797824670713 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.06758470547889496, - "direct_diffuse": 0.01782819082690204, - "direct_direct": 0.04119781867232333, - "direct_hemispherical": 0.059026009499225374 + "diffuse_diffuse": 0.05201750247290401, + "direct_diffuse": 0.0052230870269881075, + "direct_direct": 0.04091372117089017, + "direct_hemispherical": 0.04613680819787828 }, "transmittance": { - "diffuse_diffuse": 0.4238975146292023, - "direct_diffuse": 0.002050222939941282, - "direct_direct": 0.5250854426648671, - "direct_hemispherical": 0.5271356656048084 + "diffuse_diffuse": 0.42114802066004553, + "direct_diffuse": 0.0014539088135283595, + "direct_direct": 0.5250721746646312, + "direct_hemispherical": 0.5265260834781595 } } } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/photopic.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/photopic.json index 39c84723..ee47c37b 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/photopic.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/photopic.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.0724761987142736, - "heat_direct": 0.04423352842698852, - "total_diffuse": 0.0724761987142736, - "total_direct": 0.04423352842698852 + "heat_diffuse": 0.2098952461942391, + "heat_direct": 0.12044492436879892, + "total_diffuse": 0.2098952461942391, + "total_direct": 0.12044492436879892 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.09930256584456133, - "heat_direct": 0.09011856933865037, - "total_diffuse": 0.09930256584456133, - "total_direct": 0.09011856933865037 + "heat_diffuse": 0.29883471740217904, + "heat_direct": 0.26105416898706996, + "total_diffuse": 0.29883471740217904, + "total_direct": 0.26105416898706996 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.02402668657873436, - "heat_direct": 0.02070885715697052, - "total_diffuse": 0.02402668657873436, - "total_direct": 0.02070885715697052 + "heat_diffuse": 0.02166492305901821, + "heat_direct": 0.019181997439191176, + "total_diffuse": 0.02166492305901821, + "total_direct": 0.019181997439191176 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.015130420020914725, - "heat_direct": 0.013452659226826416, - "total_diffuse": 0.015130420020914725, - "total_direct": 0.013452659226826416 + "heat_diffuse": 0.01382609261010109, + "heat_direct": 0.012821693044066017, + "total_diffuse": 0.01382609261010109, + "total_direct": 0.012821693044066017 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.29162633119245807, - "direct_diffuse": 0.08091434341079265, - "direct_direct": 0.08532433525027622, - "direct_hemispherical": 0.16623867866106887 + "diffuse_diffuse": 0.20310558768242976, + "direct_diffuse": 0.021895480888371552, + "direct_direct": 0.08344146747052276, + "direct_hemispherical": 0.10533694835889432 }, "transmittance": { - "diffuse_diffuse": 0.6118707835145333, - "direct_diffuse": 0.030757353998324688, - "direct_direct": 0.7380615817566473, - "direct_hemispherical": 0.768818935754972 + "diffuse_diffuse": 0.565334243064312, + "direct_diffuse": 0.017119792732033456, + "direct_direct": 0.7379163371010824, + "direct_hemispherical": 0.7550361298331159 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.27302407017108365, - "direct_diffuse": 0.22209815895527296, - "direct_direct": 0.04714112672852384, - "direct_hemispherical": 0.2692392856837968 + "diffuse_diffuse": 0.11980065948839487, + "direct_diffuse": 0.0740312964837319, + "direct_direct": 0.04509019036895323, + "direct_hemispherical": 0.11912148685268513 }, "transmittance": { - "diffuse_diffuse": 0.6125429439634412, - "direct_diffuse": 0.04360281347290185, - "direct_direct": 0.5835866722778245, - "direct_hemispherical": 0.6271894857507263 + "diffuse_diffuse": 0.5675385304993279, + "direct_diffuse": 0.023955507661264752, + "direct_direct": 0.5830471434549146, + "direct_hemispherical": 0.6070026511161793 } } } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/solar.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/solar.json index 46ddbecc..c0cd4bc1 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/solar.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/solar.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.08260991962781566, - "heat_direct": 0.05050418781793288, - "total_diffuse": 0.08260991962781566, - "total_direct": 0.05050418781793288 + "heat_diffuse": 0.19648654475080918, + "heat_direct": 0.11458698240026073, + "total_diffuse": 0.19648654475080918, + "total_direct": 0.11458698240026073 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.1256707398334821, - "heat_direct": 0.1141986401253503, - "total_diffuse": 0.1256707398334821, - "total_direct": 0.1141986401253503 + "heat_diffuse": 0.3055054600189102, + "heat_direct": 0.2689652129847057, + "total_diffuse": 0.3055054600189102, + "total_direct": 0.2689652129847057 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.11410173196941599, - "heat_direct": 0.10135428697607546, - "total_diffuse": 0.11410173196941599, - "total_direct": 0.10135428697607546 + "heat_diffuse": 0.10531378070224802, + "heat_direct": 0.09549991704118237, + "total_diffuse": 0.10531378070224802, + "total_direct": 0.09549991704118237 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.07294081537991721, - "heat_direct": 0.06614348509306035, - "total_diffuse": 0.07294081537991721, - "total_direct": 0.06614348509306035 + "heat_diffuse": 0.06771057534864582, + "heat_direct": 0.0637036956259974, + "total_diffuse": 0.06771057534864582, + "total_direct": 0.0637036956259974 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.24994878601842233, - "direct_diffuse": 0.06320618868216951, - "direct_direct": 0.07697858084914391, - "direct_hemispherical": 0.14018476953131342 + "diffuse_diffuse": 0.18194887909451596, + "direct_diffuse": 0.01711656383004978, + "direct_direct": 0.0754917037130999, + "direct_hemispherical": 0.09260826754314969 }, "transmittance": { - "diffuse_diffuse": 0.5533395623843459, - "direct_diffuse": 0.024742281650784403, - "direct_direct": 0.6832144740238941, - "direct_hemispherical": 0.7079567556746785 + "diffuse_diffuse": 0.5162507954524258, + "direct_diffuse": 0.014201463218721178, + "direct_direct": 0.6831033697966861, + "direct_hemispherical": 0.6973048330154072 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.2474960579751785, - "direct_diffuse": 0.2020752375736897, - "direct_direct": 0.042661109899903564, - "direct_hemispherical": 0.24473634747359327 + "diffuse_diffuse": 0.10883066966509566, + "direct_diffuse": 0.0672359881588957, + "direct_direct": 0.04079005661177406, + "direct_hemispherical": 0.10802604477066975 }, "transmittance": { - "diffuse_diffuse": 0.5538923868114206, - "direct_diffuse": 0.03476658114014364, - "direct_direct": 0.5401549461678526, - "direct_hemispherical": 0.5749215273079963 + "diffuse_diffuse": 0.5179532949673481, + "direct_diffuse": 0.019569547471045556, + "direct_direct": 0.5397354991475815, + "direct_hemispherical": 0.559305046618627 } } } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/tdw.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/tdw.json index e0af1b9a..c56b8152 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/tdw.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/tdw.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.12128127651738342, - "heat_direct": 0.07265953237948053, - "total_diffuse": 0.12128127651738342, - "total_direct": 0.07265953237948053 + "heat_diffuse": 0.21245200586219293, + "heat_direct": 0.12332023148709284, + "total_diffuse": 0.21245200586219293, + "total_direct": 0.12332023148709284 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.1959079368559146, - "heat_direct": 0.17733672360402897, - "total_diffuse": 0.1959079368559146, - "total_direct": 0.17733672360402897 + "heat_diffuse": 0.33082517913494924, + "heat_direct": 0.29308785595271997, + "total_diffuse": 0.33082517913494924, + "total_direct": 0.29308785595271997 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.08290715120419587, - "heat_direct": 0.07929873089784066, - "total_diffuse": 0.08290715120419587, - "total_direct": 0.07929873089784066 + "heat_diffuse": 0.08100509997636869, + "heat_direct": 0.07804627843016322, + "total_diffuse": 0.08100509997636869, + "total_direct": 0.07804627843016322 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.053084006225579565, - "heat_direct": 0.05158800421069197, - "total_diffuse": 0.053084006225579565, - "total_direct": 0.05158800421069197 + "heat_diffuse": 0.05195871803044295, + "heat_direct": 0.05109949375042807, + "total_diffuse": 0.05195871803044295, + "total_direct": 0.05109949375042807 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.24597941876894694, - "direct_diffuse": 0.05401898308557537, - "direct_direct": 0.08367859385492796, - "direct_hemispherical": 0.13769757694050333 + "diffuse_diffuse": 0.18720985110245478, + "direct_diffuse": 0.014676793781951872, + "direct_direct": 0.08242006822675262, + "direct_hemispherical": 0.09709686200870449 }, "transmittance": { - "diffuse_diffuse": 0.5498321535094729, - "direct_diffuse": 0.020127881766997424, - "direct_direct": 0.6902162780151782, - "direct_hemispherical": 0.7103441597821756 + "diffuse_diffuse": 0.519333043058984, + "direct_diffuse": 0.011419395940061805, + "direct_direct": 0.6901172321339778, + "direct_hemispherical": 0.7015366280740396 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.20072692593772676, - "direct_diffuse": 0.15145394061341388, - "direct_direct": 0.045665441738121884, - "direct_hemispherical": 0.19711938235153578 + "diffuse_diffuse": 0.0964256219451772, + "direct_diffuse": 0.05035422830830919, + "direct_direct": 0.04426114799202304, + "direct_hemispherical": 0.09461537630033223 }, "transmittance": { - "diffuse_diffuse": 0.5502811309807791, - "direct_diffuse": 0.028343174034323737, - "direct_direct": 0.545612715799419, - "direct_hemispherical": 0.5739558898337427 + "diffuse_diffuse": 0.5207904808894299, + "direct_diffuse": 0.015920411592981076, + "direct_direct": 0.5452768624035387, + "direct_hemispherical": 0.5611972739965198 } } } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index d9dc8da5..526b96dd 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.6219030514697451, - "U": 3.450451939632022, + "SHGC": 0.6195983970694802, + "U": 3.512139090988507, "gap_layer_effective_conductivities_shgc": [ - 0.04429479897462261 + 0.043573793486924375 ], "gap_layer_effective_conductivities_u": [ - 0.10320991624349313 + 0.10679983500162636 ], "layer_temperatures_shgc": [ - 309.39704944777765, - 309.4798128769324, - 305.6620741130795, - 305.5447414269926 + 315.12266996918754, + 315.3168760948229, + 306.96934244030615, + 306.81582440068087 ], "layer_temperatures_u": [ - 304.4528221951519, - 304.41751807103833, - 301.10908324737045, - 301.02494742458936 + 304.4672993159637, + 304.43277185224827, + 301.1743904313363, + 301.0887504290084 ], - "relative_heat_gain": 477.8314530699203, + "relative_heat_gain": 476.6401073130134, "solid_layer_effective_conductivities_shgc": [ - 0.3393020859795411, + 0.35142576067500225, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.6782801347467776, + 0.6800728735550791, 1.0 ], - "system_effective_conductivity_shgc": 0.2785204259632956, - "system_effective_conductivity_u": 0.13418366447299396 + "system_effective_conductivity_shgc": 0.15106251759010023, + "system_effective_conductivity_u": 0.13857666726344045 } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index 9f68f960..748e7af8 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.297623311725584, + "U": 3.2922451109402626, "gap_layer_effective_conductivities_shgc": [ - 0.0771710358151051 + 0.07690532720090985 ], "gap_layer_effective_conductivities_u": [ - 0.07717103581510719 + 0.07690532720090876 ], "layer_temperatures_shgc": [ - 257.1125687127708, - 257.2731512145049, - 276.3973735482591, - 276.78936863908086 + 257.1124918928292, + 257.2729926343897, + 276.42501734628155, + 276.8163731195991 ], "layer_temperatures_u": [ - 257.1125687127708, - 257.2731512145049, - 276.3973735482583, - 276.78936863907995 + 257.11249189282904, + 257.2729926343895, + 276.4250173462787, + 276.8163731195963 ], - "relative_heat_gain": 25.655509365224592, + "relative_heat_gain": 25.613666963113907, "solid_layer_effective_conductivities_shgc": [ - 0.5916533392872317, + 0.5945199037093901, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.5916533392872358, + 0.5945199037093039, 1.0 ], - "system_effective_conductivity_shgc": 0.10891051404762714, - "system_effective_conductivity_u": 0.10891051404764494 + "system_effective_conductivity_shgc": 0.10858344429825237, + "system_effective_conductivity_u": 0.1085834442982692 } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/tkr.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/tkr.json index ad70c916..82e20698 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/tkr.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/tkr.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.15195824236308125, - "heat_direct": 0.09115178023762587, - "total_diffuse": 0.15195824236308125, - "total_direct": 0.09115178023762587 + "heat_diffuse": 0.19684421781466832, + "heat_direct": 0.11620761251888682, + "total_diffuse": 0.19684421781466832, + "total_direct": 0.11620761251888682 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.2917509016165816, - "heat_direct": 0.26460873658439765, - "total_diffuse": 0.2917509016165816, - "total_direct": 0.26460873658439765 + "heat_diffuse": 0.3617473739590303, + "heat_direct": 0.3248490706367859, + "total_diffuse": 0.3617473739590303, + "total_direct": 0.3248490706367859 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.20183531538433358, - "heat_direct": 0.19921424785264316, - "total_diffuse": 0.20183531538433358, - "total_direct": 0.19921424785264316 + "heat_diffuse": 0.20037984933147934, + "heat_direct": 0.198215068903009, + "total_diffuse": 0.20037984933147934, + "total_direct": 0.198215068903009 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.13014355947397474, - "heat_direct": 0.1296976242581669, - "total_diffuse": 0.13014355947397474, - "total_direct": 0.1296976242581669 + "heat_diffuse": 0.12904510447222442, + "heat_direct": 0.12931182221077478, + "total_diffuse": 0.12904510447222442, + "total_direct": 0.12931182221077478 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.19363575661338164, - "direct_diffuse": 0.02667488708434071, - "direct_direct": 0.0777647016701168, - "direct_hemispherical": 0.10443958875445751 + "diffuse_diffuse": 0.16487276025167172, + "direct_diffuse": 0.007288547654000957, + "direct_direct": 0.07714167271262412, + "direct_hemispherical": 0.08443022036662508 }, "transmittance": { - "diffuse_diffuse": 0.4525706856392041, - "direct_diffuse": 0.009658553772522449, - "direct_direct": 0.595535829382751, - "direct_hemispherical": 0.6051943831552734 + "diffuse_diffuse": 0.43790317260218037, + "direct_diffuse": 0.0056612366390623725, + "direct_direct": 0.5954858615724165, + "direct_hemispherical": 0.6011470982114788 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.12531172030245732, - "direct_diffuse": 0.07973434843259186, - "direct_direct": 0.04185686497784765, - "direct_hemispherical": 0.1215912134104395 + "diffuse_diffuse": 0.07059632555022678, + "direct_diffuse": 0.026386266207357685, + "direct_direct": 0.04111283190129709, + "direct_hemispherical": 0.06749909810865477 }, "transmittance": { - "diffuse_diffuse": 0.4527938186069872, - "direct_diffuse": 0.013450816747757, - "direct_direct": 0.470651608999239, - "direct_hemispherical": 0.484102425746996 + "diffuse_diffuse": 0.4386111960185181, + "direct_diffuse": 0.007835916500337436, + "direct_direct": 0.4705040925434471, + "direct_hemispherical": 0.47834000904378454 } } } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/tuv.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/tuv.json index 19b6c87e..8c2a5f5a 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/tuv.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/tuv.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.19840228044162864, - "heat_direct": 0.11838227725996936, - "total_diffuse": 0.19840228044162864, - "total_direct": 0.11838227725996936 + "heat_diffuse": 0.2083840587781516, + "heat_direct": 0.12409488181191723, + "total_diffuse": 0.2083840587781516, + "total_direct": 0.12409488181191723 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.36802838018865613, - "heat_direct": 0.33352628764928804, - "total_diffuse": 0.36802838018865613, - "total_direct": 0.33352628764928804 + "heat_diffuse": 0.38717835541982026, + "heat_direct": 0.3502089997696736, + "total_diffuse": 0.38717835541982026, + "total_direct": 0.3502089997696736 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.21872843650725038, - "heat_direct": 0.2130406886285765, - "total_diffuse": 0.21872843650725038, - "total_direct": 0.2130406886285765 + "heat_diffuse": 0.21765160897631433, + "heat_direct": 0.21227588085421778, + "total_diffuse": 0.21765160897631433, + "total_direct": 0.21227588085421778 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.14048939970324448, - "heat_direct": 0.13873591180160155, - "total_diffuse": 0.14048939970324448, - "total_direct": 0.13873591180160155 + "heat_diffuse": 0.1396561214472286, + "heat_direct": 0.13848800965947203, + "total_diffuse": 0.1396561214472286, + "total_direct": 0.13848800965947203 } } } @@ -48,30 +48,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.1590231691118306, - "direct_diffuse": 0.005887838542985954, - "direct_direct": 0.0764788925850007, - "direct_hemispherical": 0.08236673112798665 + "diffuse_diffuse": 0.15295936411027727, + "direct_diffuse": 0.0016477460486869072, + "direct_direct": 0.07633925276650681, + "direct_hemispherical": 0.07798699881519372 }, "transmittance": { - "diffuse_diffuse": 0.42384611393929006, - "direct_diffuse": 0.0018446581931003125, - "direct_direct": 0.5843656447903672, - "direct_hemispherical": 0.5862103029834675 + "diffuse_diffuse": 0.42100496813525823, + "direct_diffuse": 0.0012881605802068652, + "direct_direct": 0.5843540779384645, + "direct_hemispherical": 0.5856422385186714 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.06758470547889496, - "direct_diffuse": 0.022985966617530933, - "direct_direct": 0.04061879385369158, - "direct_hemispherical": 0.06360476047122252 + "diffuse_diffuse": 0.05201750247290401, + "direct_diffuse": 0.0074780655709634145, + "direct_direct": 0.040399826956058114, + "direct_hemispherical": 0.04787789252702153 }, "transmittance": { - "diffuse_diffuse": 0.4238975146292023, - "direct_diffuse": 0.0024133075559319983, - "direct_direct": 0.4617197325219558, - "direct_hemispherical": 0.4641330400778878 + "diffuse_diffuse": 0.42114802066004553, + "direct_diffuse": 0.0017186162546145023, + "direct_direct": 0.46170648178921847, + "direct_hemispherical": 0.463425098043833 } } } diff --git a/test/expected_results/User_Woven_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/User_Woven_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index bfd762a7..e5f5a96f 100644 --- a/test/expected_results/User_Woven_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/User_Woven_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.14775252332129316, - "U": 3.0248854648319066, + "SHGC": 0.14775252332157202, + "U": 3.024885464807009, "gap_layer_effective_conductivities_shgc": [ - 0.09052648200283334 + 0.09052648200334293 ], "gap_layer_effective_conductivities_u": [ - 0.08901683246286457 + 0.08901683246171387 ], "layer_temperatures_shgc": [ - 313.35145203781826, - 313.3522559014611, - 305.5951628262992, - 305.4155380622345 + 313.35145203769235, + 313.35225590133524, + 305.5951628262399, + 305.4155380621756 ], "layer_temperatures_u": [ - 304.05442372408385, - 304.0541070255243, - 300.65537123503424, - 300.58161242550455 + 304.0544237239466, + 304.05410702538705, + 300.6553712349553, + 300.58161242542565 ], - "relative_heat_gain": 130.67966289757837, + "relative_heat_gain": 130.67966289798923, "solid_layer_effective_conductivities_shgc": [ - 143.1581901190798, + 143.15819011904094, 1.0 ], "solid_layer_effective_conductivities_u": [ - 148.0635092223831, + 148.06350922240856, 1.0 ], - "system_effective_conductivity_shgc": 0.14154989344994706, - "system_effective_conductivity_u": 0.12367079673205789 + "system_effective_conductivity_shgc": 0.14154989344993427, + "system_effective_conductivity_u": 0.12367079673060698 } diff --git a/test/expected_results/User_Woven_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/User_Woven_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index a824df33..91cb238f 100644 --- a/test/expected_results/User_Woven_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/User_Woven_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 2.93234876796238, + "U": 2.9323487679631035, "gap_layer_effective_conductivities_shgc": [ - 0.07046468526070766 + 0.07046468526070522 ], "gap_layer_effective_conductivities_u": [ - 0.07046468526070498 + 0.07046468526070541 ], "layer_temperatures_shgc": [ - 258.58986478529135, - 258.5912836610378, - 278.27761838914444, - 278.6261925630172 + 258.5898647852905, + 258.59128366103687, + 278.27761838914523, + 278.62619256301804 ], "layer_temperatures_u": [ - 258.5898647852913, - 258.5912836610377, - 278.2776183891441, - 278.62619256301696 + 258.58986478529044, + 258.59128366103687, + 278.2776183891424, + 278.62619256301514 ], - "relative_heat_gain": 22.813673414944873, + "relative_heat_gain": 22.8136734149428, "solid_layer_effective_conductivities_shgc": [ - 146.7270602596958, + 146.72706026005653, 1.0 ], "solid_layer_effective_conductivities_u": [ - 146.72706025969538, + 146.72706025969558, 1.0 ], - "system_effective_conductivity_shgc": 0.10130048505278486, - "system_effective_conductivity_u": 0.1013004850526739 + "system_effective_conductivity_shgc": 0.1013004850527714, + "system_effective_conductivity_u": 0.10130048505265003 } diff --git a/test/expected_results/User_Woven_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/User_Woven_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index c4bcfb1d..65f2190c 100644 --- a/test/expected_results/User_Woven_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/User_Woven_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.14049592306813885, - "U": 3.0248854648319066, + "SHGC": 0.14049592306784459, + "U": 3.024885464807009, "gap_layer_effective_conductivities_shgc": [ - 0.09057528194361787 + 0.09057528194337026 ], "gap_layer_effective_conductivities_u": [ - 0.08901683246286457 + 0.08901683246171387 ], "layer_temperatures_shgc": [ - 313.46727234960326, - 313.4680883481658, - 305.6190671783694, - 305.43813309234014 + 313.4672723495539, + 313.46808834811645, + 305.6190671783528, + 305.4381330923246 ], "layer_temperatures_u": [ - 304.05442372408385, - 304.0541070255243, - 300.65537123503424, - 300.58161242550455 + 304.0544237239466, + 304.05410702538705, + 300.6553712349553, + 300.58161242542565 ], - "relative_heat_gain": 125.4173765760971, + "relative_heat_gain": 125.417376576118, "solid_layer_effective_conductivities_shgc": [ - 143.16646737459828, + 143.16646737465987, 1.0 ], "solid_layer_effective_conductivities_u": [ - 148.0635092223831, + 148.06350922240856, 1.0 ], - "system_effective_conductivity_shgc": 0.1403300308036347, - "system_effective_conductivity_u": 0.12367079673205789 + "system_effective_conductivity_shgc": 0.1403300308039245, + "system_effective_conductivity_u": 0.12367079673060698 } diff --git a/test/expected_results/User_Woven_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/User_Woven_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index a824df33..91cb238f 100644 --- a/test/expected_results/User_Woven_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/User_Woven_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 2.93234876796238, + "U": 2.9323487679631035, "gap_layer_effective_conductivities_shgc": [ - 0.07046468526070766 + 0.07046468526070522 ], "gap_layer_effective_conductivities_u": [ - 0.07046468526070498 + 0.07046468526070541 ], "layer_temperatures_shgc": [ - 258.58986478529135, - 258.5912836610378, - 278.27761838914444, - 278.6261925630172 + 258.5898647852905, + 258.59128366103687, + 278.27761838914523, + 278.62619256301804 ], "layer_temperatures_u": [ - 258.5898647852913, - 258.5912836610377, - 278.2776183891441, - 278.62619256301696 + 258.58986478529044, + 258.59128366103687, + 278.2776183891424, + 278.62619256301514 ], - "relative_heat_gain": 22.813673414944873, + "relative_heat_gain": 22.8136734149428, "solid_layer_effective_conductivities_shgc": [ - 146.7270602596958, + 146.72706026005653, 1.0 ], "solid_layer_effective_conductivities_u": [ - 146.72706025969538, + 146.72706025969558, 1.0 ], - "system_effective_conductivity_shgc": 0.10130048505278486, - "system_effective_conductivity_u": 0.1013004850526739 + "system_effective_conductivity_shgc": 0.1013004850527714, + "system_effective_conductivity_u": 0.10130048505265003 } diff --git a/test/expected_results/User_Woven_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/User_Woven_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 17cb08e3..c4f516e0 100644 --- a/test/expected_results/User_Woven_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/User_Woven_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.1470515226830154, - "U": 3.024885464885137, + "SHGC": 0.14705152268297694, + "U": 3.024885464862555, "gap_layer_effective_conductivities_shgc": [ - 0.09045137696740524 + 0.09045137696787621 ], "gap_layer_effective_conductivities_u": [ - 0.08901683246280193 + 0.08901683246197051 ], "layer_temperatures_shgc": [ - 313.1729916150698, - 313.173773812592, - 305.49621595210584, - 305.3187210190491 + 313.1729916148585, + 313.1737738123806, + 305.496215952003, + 305.3187210189477 ], "layer_temperatures_u": [ - 304.0544237239193, - 304.0541070253597, - 300.6553712349513, - 300.5816124254224 + 304.05442372398267, + 304.0541070254231, + 300.65537123497194, + 300.5816124254421 ], - "relative_heat_gain": 130.17131657243084, + "relative_heat_gain": 130.17131657306987, "solid_layer_effective_conductivities_shgc": [ - 143.11625024657923, + 143.11625024658673, 1.0 ], "solid_layer_effective_conductivities_u": [ - 148.06350922243257, + 148.06350922336765, 1.0 ], - "system_effective_conductivity_shgc": 0.1411674350423232, - "system_effective_conductivity_u": 0.12367079673523837 + "system_effective_conductivity_shgc": 0.14116743504139603, + "system_effective_conductivity_u": 0.12367079673506715 } diff --git a/test/expected_results/User_Woven_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/User_Woven_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index 6f6e2d8a..1ec07dce 100644 --- a/test/expected_results/User_Woven_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/User_Woven_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 2.9323487679877442, + "U": 2.9323487679879956, "gap_layer_effective_conductivities_shgc": [ - 0.07046468526070797 + 0.07046468526070526 ], "gap_layer_effective_conductivities_u": [ - 0.07046468526070489 + 0.07046468526071045 ], "layer_temperatures_shgc": [ - 258.5898647852905, - 258.591283661037, - 278.27761838914375, - 278.6261925630165 + 258.5898647852904, + 258.59128366103675, + 278.2776183891431, + 278.62619256301593 ], "layer_temperatures_u": [ - 258.5898647852903, - 258.5912836610367, - 278.2776183891421, - 278.6261925630149 + 258.5898647852904, + 258.5912836610368, + 278.27761838914535, + 278.6261925630181 ], - "relative_heat_gain": 22.81367341494694, + "relative_heat_gain": 22.813673414945633, "solid_layer_effective_conductivities_shgc": [ - 146.72706025987614, + 146.7270602598762, 1.0 ], "solid_layer_effective_conductivities_u": [ - 146.72706025987625, + 146.72706025987642, 1.0 ], - "system_effective_conductivity_shgc": 0.10130048505278613, - "system_effective_conductivity_u": 0.1013004850527827 + "system_effective_conductivity_shgc": 0.10130048505278341, + "system_effective_conductivity_u": 0.10130048505279814 } diff --git a/test/expected_results/User_Woven_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/User_Woven_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 62b9d007..63a32bc0 100644 --- a/test/expected_results/User_Woven_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/User_Woven_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.13978709072024453, - "U": 3.024885464885137, + "SHGC": 0.13978709072053058, + "U": 3.024885464862555, "gap_layer_effective_conductivities_shgc": [ - 0.09049911923222431 + 0.09049911923225361 ], "gap_layer_effective_conductivities_u": [ - 0.08901683246280193 + 0.08901683246197051 ], "layer_temperatures_shgc": [ - 313.2871988268446, - 313.28799305746406, - 305.5211660585505, - 305.3423791677496 + 313.2871988268496, + 313.287993057469, + 305.52116605855576, + 305.3423791677548 ], "layer_temperatures_u": [ - 304.0544237239193, - 304.0541070253597, - 300.6553712349513, - 300.5816124254224 + 304.05442372398267, + 304.0541070254231, + 300.65537123497194, + 300.5816124254421 ], - "relative_heat_gain": 124.90335091188302, + "relative_heat_gain": 124.90335091172861, "solid_layer_effective_conductivities_shgc": [ - 143.12586674054754, + 143.12586674056422, 1.0 ], "solid_layer_effective_conductivities_u": [ - 148.06350922243257, + 148.06350922336765, 1.0 ], - "system_effective_conductivity_shgc": 0.14000607465272283, - "system_effective_conductivity_u": 0.12367079673523837 + "system_effective_conductivity_shgc": 0.1400060746519116, + "system_effective_conductivity_u": 0.12367079673506715 } diff --git a/test/expected_results/User_Woven_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/User_Woven_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index 6f6e2d8a..1ec07dce 100644 --- a/test/expected_results/User_Woven_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/User_Woven_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 2.9323487679877442, + "U": 2.9323487679879956, "gap_layer_effective_conductivities_shgc": [ - 0.07046468526070797 + 0.07046468526070526 ], "gap_layer_effective_conductivities_u": [ - 0.07046468526070489 + 0.07046468526071045 ], "layer_temperatures_shgc": [ - 258.5898647852905, - 258.591283661037, - 278.27761838914375, - 278.6261925630165 + 258.5898647852904, + 258.59128366103675, + 278.2776183891431, + 278.62619256301593 ], "layer_temperatures_u": [ - 258.5898647852903, - 258.5912836610367, - 278.2776183891421, - 278.6261925630149 + 258.5898647852904, + 258.5912836610368, + 278.27761838914535, + 278.6261925630181 ], - "relative_heat_gain": 22.81367341494694, + "relative_heat_gain": 22.813673414945633, "solid_layer_effective_conductivities_shgc": [ - 146.72706025987614, + 146.7270602598762, 1.0 ], "solid_layer_effective_conductivities_u": [ - 146.72706025987625, + 146.72706025987642, 1.0 ], - "system_effective_conductivity_shgc": 0.10130048505278613, - "system_effective_conductivity_u": 0.1013004850527827 + "system_effective_conductivity_shgc": 0.10130048505278341, + "system_effective_conductivity_u": 0.10130048505279814 } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/photopic.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/photopic.json index f2a9e428..18e62615 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/photopic.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/photopic.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.05689543974880512, - "heat_direct": 0.0594098741458158, - "total_diffuse": 0.05689543974880512, - "total_direct": 0.0594098741458158 + "heat_diffuse": 0.05689455477251085, + "heat_direct": 0.059396630228513186, + "total_diffuse": 0.05689455477251085, + "total_direct": 0.059396630228513186 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.6550616379468954, - "heat_direct": 0.6828009949484544, - "total_diffuse": 0.6550616379468954, - "total_direct": 0.6828009949484544 + "heat_diffuse": 0.6550533488147413, + "heat_direct": 0.6827775279878316, + "total_diffuse": 0.6550533488147413, + "total_direct": 0.6827775279878316 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.0020621032948361503, - "heat_direct": 0.002134020599767352, - "total_diffuse": 0.0020621032948361503, - "total_direct": 0.002134020599767352 + "heat_diffuse": 0.0020620654610619543, + "heat_direct": 0.0021337630016141623, + "total_diffuse": 0.0020620654610619543, + "total_direct": 0.0021337630016141623 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.0077066336789075995, - "heat_direct": 0.007787516230383413, - "total_diffuse": 0.0077066336789075995, - "total_direct": 0.007787516230383413 + "heat_diffuse": 0.007706402379541885, + "heat_direct": 0.007786571628014019, + "total_diffuse": 0.007706402379541885, + "total_direct": 0.007786571628014019 } } }, @@ -49,20 +49,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.014207712429974744, - "heat_direct": 0.01429765855195046, - "total_diffuse": 0.014207712429974744, - "total_direct": 0.01429765855195046 + "heat_diffuse": 0.014207545945448562, + "heat_direct": 0.014295076517616209, + "total_diffuse": 0.014207545945448562, + "total_direct": 0.014295076517616209 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.03594368793989108, - "heat_direct": 0.030509813201113064, - "total_diffuse": 0.03594368793989108, - "total_direct": 0.030509813201113064 + "heat_diffuse": 0.03594150130194349, + "heat_direct": 0.030501018127133978, + "total_diffuse": 0.03594150130194349, + "total_direct": 0.030501018127133978 } } }, @@ -71,20 +71,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.5071396133872562, - "heat_direct": 0.5033890300294043, - "total_diffuse": 0.5071396133872562, - "total_direct": 0.5033890300294043 + "heat_diffuse": 0.5072124879111705, + "heat_direct": 0.5036223875757746, + "total_diffuse": 0.5072124879111705, + "total_direct": 0.5036223875757746 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.10329819043789469, - "heat_direct": 0.13226613060302878, - "total_diffuse": 0.10329819043789469, - "total_direct": 0.13226613060302878 + "heat_diffuse": 0.10331022609528416, + "heat_direct": 0.13230904563099272, + "total_diffuse": 0.10331022609528416, + "total_direct": 0.13230904563099272 } } } @@ -92,30 +92,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.40273955066063377, - "direct_diffuse": 0.39980963141891657, - "direct_direct": 0.0029935937053068174, - "direct_hemispherical": 0.4028032251242234 + "diffuse_diffuse": 0.4026683805133175, + "direct_diffuse": 0.39959525023583936, + "direct_direct": 0.0029936033291011735, + "direct_hemispherical": 0.4025888535649405 }, "transmittance": { - "diffuse_diffuse": 0.022332002629143616, - "direct_diffuse": 0.020868762021078114, - "direct_direct": 0.0026351898433398927, - "direct_hemispherical": 0.023503951864418008 + "diffuse_diffuse": 0.02233153176740236, + "direct_diffuse": 0.020864254799472553, + "direct_direct": 0.0026351991319987335, + "direct_hemispherical": 0.023499453931471286 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.16896569131938236, - "direct_diffuse": 0.021423370416304585, - "direct_direct": 0.09195647917779752, - "direct_hemispherical": 0.1133798495941021 + "diffuse_diffuse": 0.16896266497227574, + "direct_diffuse": 0.021414861087388576, + "direct_direct": 0.09195645725026155, + "direct_hemispherical": 0.11337131833765013 }, "transmittance": { - "diffuse_diffuse": 0.02234067975126366, - "direct_diffuse": 0.026862365531247046, - "direct_direct": 0.0026352058935892528, - "direct_hemispherical": 0.0294975714248363 + "diffuse_diffuse": 0.022340827268197357, + "direct_diffuse": 0.026857238578030514, + "direct_direct": 0.002635184478776507, + "direct_hemispherical": 0.02949242305680702 } } } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/solar.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/solar.json index 0ff010a3..89605338 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/solar.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/solar.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.046435805849828586, - "heat_direct": 0.048506088018473864, - "total_diffuse": 0.046435805849828586, - "total_direct": 0.048506088018473864 + "heat_diffuse": 0.046434667746424144, + "heat_direct": 0.04849501838147144, + "total_diffuse": 0.046434667746424144, + "total_direct": 0.04849501838147144 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.7276656983650053, - "heat_direct": 0.768291210403754, - "total_diffuse": 0.7276656983650053, - "total_direct": 0.768291210403754 + "heat_diffuse": 0.7276616771039089, + "heat_direct": 0.7682798867272395, + "total_diffuse": 0.7276616771039089, + "total_direct": 0.7682798867272395 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.004743734140806329, - "heat_direct": 0.004916622071433553, - "total_diffuse": 0.004743734140806329, - "total_direct": 0.004916622071433553 + "heat_diffuse": 0.004743593954419978, + "heat_direct": 0.004915817179332479, + "total_diffuse": 0.004743593954419978, + "total_direct": 0.004915817179332479 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.01202273402325002, - "heat_direct": 0.012232686794935064, - "total_diffuse": 0.01202273402325002, - "total_direct": 0.012232686794935064 + "heat_diffuse": 0.012022538821538059, + "heat_direct": 0.012231906894330997, + "total_diffuse": 0.012022538821538059, + "total_direct": 0.012231906894330997 } } }, @@ -49,20 +49,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.022068303347592, - "heat_direct": 0.022636019611155914, - "total_diffuse": 0.022068303347592, - "total_direct": 0.022636019611155914 + "heat_diffuse": 0.022067578006828452, + "heat_direct": 0.022631032778984317, + "total_diffuse": 0.022067578006828452, + "total_direct": 0.022631032778984317 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.02167734845231094, - "heat_direct": 0.020271109165923156, - "total_diffuse": 0.02167734845231094, - "total_direct": 0.020271109165923156 + "heat_diffuse": 0.021676132523601364, + "heat_direct": 0.02026647211895162, + "total_diffuse": 0.021676132523601364, + "total_direct": 0.02026647211895162 } } }, @@ -71,20 +71,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.517365587204581, - "heat_direct": 0.5140437564740515, - "total_diffuse": 0.517365587204581, - "total_direct": 0.5140437564740515 + "heat_diffuse": 0.5174390792375908, + "heat_direct": 0.5142760053094372, + "total_diffuse": 0.5174390792375908, + "total_direct": 0.5142760053094372 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.049981742997533364, - "heat_direct": 0.06417372959213133, - "total_diffuse": 0.049981742997533364, - "total_direct": 0.06417372959213133 + "heat_diffuse": 0.049987486027002266, + "heat_direct": 0.06419423373610726, + "total_diffuse": 0.049987486027002266, + "total_direct": 0.06419423373610726 } } } @@ -92,30 +92,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.4049443022910141, - "direct_diffuse": 0.4020784753985076, - "direct_direct": 0.0030262987144844254, - "direct_hemispherical": 0.405104774112992 + "diffuse_diffuse": 0.4048730047699506, + "direct_diffuse": 0.4018635382765257, + "direct_direct": 0.0030263040337451235, + "direct_hemispherical": 0.4048898423102708 }, "transmittance": { - "diffuse_diffuse": 0.010806139818827984, - "direct_diffuse": 0.010105883651538028, - "direct_direct": 0.0012693443311481301, - "direct_hemispherical": 0.011375227982686158 + "diffuse_diffuse": 0.010805894290324523, + "direct_diffuse": 0.010103675464060624, + "direct_direct": 0.0012693486076055815, + "direct_hemispherical": 0.011373024071666207 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.17829229548944545, - "direct_diffuse": 0.008948818678404469, - "direct_direct": 0.11383363170504035, - "direct_hemispherical": 0.12278245038344482 + "diffuse_diffuse": 0.17829103064879528, + "direct_diffuse": 0.008945268849691573, + "direct_direct": 0.1138336224987313, + "direct_hemispherical": 0.12277889134842287 }, "transmittance": { - "diffuse_diffuse": 0.010810371886113725, - "direct_diffuse": 0.013039087089888546, - "direct_direct": 0.001269352109454574, - "direct_hemispherical": 0.01430843919934312 + "diffuse_diffuse": 0.010810428079332678, + "direct_diffuse": 0.013036575704346205, + "direct_direct": 0.0012693414495546014, + "direct_hemispherical": 0.014305917153900807 } } } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/tdw.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/tdw.json index d3874638..d929e624 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/tdw.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/tdw.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.045815041945691144, - "heat_direct": 0.04782432454427012, - "total_diffuse": 0.045815041945691144, - "total_direct": 0.04782432454427012 + "heat_diffuse": 0.04581412569972056, + "heat_direct": 0.047813412696838836, + "total_diffuse": 0.04581412569972056, + "total_direct": 0.047813412696838836 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.6811163762077747, - "heat_direct": 0.711111971205584, - "total_diffuse": 0.6811163762077747, - "total_direct": 0.711111971205584 + "heat_diffuse": 0.6811098931216301, + "heat_direct": 0.7110937250622701, + "total_diffuse": 0.6811098931216301, + "total_direct": 0.7110937250622701 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.0025276244279990646, - "heat_direct": 0.0026172504548261344, - "total_diffuse": 0.0025276244279990646, - "total_direct": 0.0026172504548261344 + "heat_diffuse": 0.002527564139434585, + "heat_direct": 0.002616891463779703, + "total_diffuse": 0.002527564139434585, + "total_direct": 0.002616891463779703 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.010575728163325733, - "heat_direct": 0.010671257090594499, - "total_diffuse": 0.010575728163325733, - "total_direct": 0.010671257090594499 + "heat_diffuse": 0.010575494421188297, + "heat_direct": 0.010670323294572487, + "total_diffuse": 0.010575494421188297, + "total_direct": 0.010670323294572487 } } }, @@ -49,20 +49,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.024503274934813298, - "heat_direct": 0.025101688347573762, - "total_diffuse": 0.024503274934813298, - "total_direct": 0.025101688347573762 + "heat_diffuse": 0.024502875685211825, + "heat_direct": 0.025096707198923332, + "total_diffuse": 0.024502875685211825, + "total_direct": 0.025096707198923332 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.03980525130844827, - "heat_direct": 0.03711160176225664, - "total_diffuse": 0.03980525130844827, - "total_direct": 0.03711160176225664 + "heat_diffuse": 0.03980313679819913, + "heat_direct": 0.03710347605723397, + "total_diffuse": 0.03980313679819913, + "total_direct": 0.03710347605723397 } } }, @@ -71,20 +71,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.5092592365772353, - "heat_direct": 0.5056063313718651, - "total_diffuse": 0.5092592365772353, - "total_direct": 0.5056063313718651 + "heat_diffuse": 0.5093322887353879, + "heat_direct": 0.5058395841632694, + "total_diffuse": 0.5093322887353879, + "total_direct": 0.5058395841632694 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.09009425296616404, - "heat_direct": 0.1153438928937538, - "total_diffuse": 0.09009425296616404, - "total_direct": 0.1153438928937538 + "heat_diffuse": 0.09010456907235806, + "heat_direct": 0.11538051752056933, + "total_diffuse": 0.09010456907235806, + "total_direct": 0.11538051752056933 } } } @@ -92,30 +92,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.403198976731115, - "direct_diffuse": 0.4002836847665022, - "direct_direct": 0.003001116157725111, - "direct_hemispherical": 0.40328480092422736 + "diffuse_diffuse": 0.40312779870444904, + "direct_diffuse": 0.40006921869084433, + "direct_direct": 0.003001125086699262, + "direct_hemispherical": 0.4030703437775436 }, "transmittance": { - "diffuse_diffuse": 0.019476381795429102, - "direct_diffuse": 0.01822142852504398, - "direct_direct": 0.0022752837383158853, - "direct_hemispherical": 0.020496712263359862 + "diffuse_diffuse": 0.019475931934706415, + "direct_diffuse": 0.018217439376815397, + "direct_direct": 0.002275291298859467, + "direct_hemispherical": 0.020492730675674864 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.15414412299822466, - "direct_diffuse": 0.01999425072294954, - "direct_direct": 0.07771463244132369, - "direct_hemispherical": 0.09770888316427323 + "diffuse_diffuse": 0.15414128075188507, + "direct_diffuse": 0.019986285422524078, + "direct_direct": 0.07771461160925164, + "direct_hemispherical": 0.09770089703177572 }, "transmittance": { - "diffuse_diffuse": 0.019483960660085144, - "direct_diffuse": 0.023439276870270764, - "direct_direct": 0.0022752975533572666, - "direct_hemispherical": 0.02571457442362803 + "diffuse_diffuse": 0.01948404732111163, + "direct_diffuse": 0.02343474178426702, + "direct_direct": 0.002275278189483809, + "direct_hemispherical": 0.02571001997375083 } } } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index b39c0a35..370a989c 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,49 +1,49 @@ { - "SHGC": 0.1491356391535747, - "U": 0.9236681872890222, + "SHGC": 0.14914749525993493, + "U": 0.9236681868308737, "gap_layer_effective_conductivities_shgc": [ - 0.10190405774668519, - 0.02419656928630542, - 0.11076155645040688 + 0.10190367053542271, + 0.024196524024018343, + 0.11076597312328632 ], "gap_layer_effective_conductivities_u": [ - 0.07735520179732858, - 0.02162484364088166, - 0.09273589449718453 + 0.0773552018108165, + 0.021624843640992843, + 0.09273589449601922 ], "layer_temperatures_shgc": [ - 339.78159050694774, - 341.3416612995351, - 336.6979908174321, - 336.5698235184593, - 311.9856802589843, - 311.72003704241325, - 306.56023845266816, - 306.26190718428506 + 339.7810871078548, + 341.3411349423401, + 336.69751600373104, + 336.56935132754006, + 311.98577398521206, + 311.720145226784, + 306.5612550252955, + 306.262920966499 ], "layer_temperatures_u": [ - 304.6907923319609, - 304.64704740604685, - 303.433881572982, - 303.41135884718426, - 299.0716887257584, - 299.03585241329904, - 298.0772319215888, - 298.0391300633645 + 304.69079233195237, + 304.6470474060376, + 303.43388157277883, + 303.41135884698065, + 299.07168872546265, + 299.0358524130026, + 298.0772319213014, + 298.0391300630777 ], - "relative_heat_gain": 115.33518991968263, + "relative_heat_gain": 115.34378765637024, "solid_layer_effective_conductivities_shgc": [ + 0.9999999999999999, 1.0, - 1.0, - 1.0003448211459736, - 0.1756911229113541 + 1.000344821148416, + 0.17569138154745453 ], "solid_layer_effective_conductivities_u": [ 1.0, 1.0, 1.000344832952456, - 0.17349344945036463 + 0.17349344944757428 ], - "system_effective_conductivity_shgc": 0.12241384966127697, - "system_effective_conductivity_u": 0.052591306561978746 + "system_effective_conductivity_shgc": 0.12243296033270315, + "system_effective_conductivity_u": 0.0525913065484085 } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index 910cb44e..7bbb77f9 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,49 +1,49 @@ { "SHGC": 0.0, - "U": 0.9150662118990808, + "U": 0.9150662116930626, "gap_layer_effective_conductivities_shgc": [ - 0.053901328236613186, - 0.021618079439119028, - 0.08683764219995432 + 0.05390132823666392, + 0.0216180794391176, + 0.08683764219990903 ], "gap_layer_effective_conductivities_u": [ - 0.05390132823680802, - 0.02161807943911794, - 0.0868376421997973 + 0.053901328237860514, + 0.021618079439099984, + 0.08683764219891985 ], "layer_temperatures_shgc": [ - 256.4893939297946, - 256.70066441954566, - 265.10921963766026, - 265.2179953918855, - 286.1834237077457, - 286.3564987662119, - 290.79631491441904, - 290.9405817015182 + 256.48939392979423, + 256.7006644195453, + 265.10921963764986, + 265.2179953918751, + 286.183423707721, + 286.3564987661871, + 290.7963149143998, + 290.9405817014992 ], "layer_temperatures_u": [ - 256.4893939297957, - 256.7006644195469, - 265.10921963769226, - 265.2179953919176, - 286.18342370779214, - 286.3564987662585, - 290.7963149144556, - 290.94058170155466 + 256.48939392980606, + 256.70066441955885, + 265.1092196379194, + 265.21799539214555, + 286.18342370821244, + 286.3564987666801, + 290.7963149147862, + 290.9405817018813 ], - "relative_heat_gain": 7.1192151292710095, + "relative_heat_gain": 7.119215128178993, "solid_layer_effective_conductivities_shgc": [ - 1.0, + 1.0000000000000002, 1.0, 1.0003447898816213, - 0.17348329068047227 + 0.17348329068022617 ], "solid_layer_effective_conductivities_u": [ 1.0, - 1.0000000000000002, - 1.0003447898816213, - 0.17348329068019025 + 0.9999999999999999, + 1.0003447898816216, + 0.1734832906789804 ], - "system_effective_conductivity_shgc": 0.03844454486386713, - "system_effective_conductivity_u": 0.038444544862176445 + "system_effective_conductivity_shgc": 0.038444544865306636, + "system_effective_conductivity_u": 0.03844454485919372 } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/tkr.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/tkr.json index 6116c3a6..28682096 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/tkr.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/tkr.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.03643954694953063, - "heat_direct": 0.038045702559544536, - "total_diffuse": 0.03643954694953063, - "total_direct": 0.038045702559544536 + "heat_diffuse": 0.03643866472585438, + "heat_direct": 0.03803692347633663, + "total_diffuse": 0.03643866472585438, + "total_direct": 0.03803692347633663 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.7434559932618724, - "heat_direct": 0.782248037762366, - "total_diffuse": 0.7434559932618724, - "total_direct": 0.782248037762366 + "heat_diffuse": 0.7434518872121788, + "heat_direct": 0.7822365881204896, + "total_diffuse": 0.7434518872121788, + "total_direct": 0.7822365881204896 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.0026922092327867427, - "heat_direct": 0.0027884229251975818, - "total_diffuse": 0.0026922092327867427, - "total_direct": 0.0027884229251975818 + "heat_diffuse": 0.002692138065582541, + "heat_direct": 0.0027880170988602293, + "total_diffuse": 0.002692138065582541, + "total_direct": 0.0027880170988602293 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.010947878739518803, - "heat_direct": 0.011038169350597503, - "total_diffuse": 0.010947878739518803, - "total_direct": 0.011038169350597503 + "heat_diffuse": 0.010947683677935688, + "heat_direct": 0.011037405394599078, + "total_diffuse": 0.010947683677935688, + "total_direct": 0.011037405394599078 } } }, @@ -49,20 +49,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.03947700351160888, - "heat_direct": 0.040783502749775845, - "total_diffuse": 0.03947700351160888, - "total_direct": 0.040783502749775845 + "heat_diffuse": 0.03947638546867459, + "heat_direct": 0.040775251360226396, + "total_diffuse": 0.03947638546867459, + "total_direct": 0.040775251360226396 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.033600347929766586, - "heat_direct": 0.03371228897439499, - "total_diffuse": 0.033600347929766586, - "total_direct": 0.03371228897439499 + "heat_diffuse": 0.03359877374829561, + "heat_direct": 0.03370654604962294, + "total_diffuse": 0.03359877374829561, + "total_direct": 0.03370654604962294 } } }, @@ -71,20 +71,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.5096203379538513, - "heat_direct": 0.5059943355364493, - "total_diffuse": 0.5096203379538513, - "total_direct": 0.5059943355364493 + "heat_diffuse": 0.5096933930860452, + "heat_direct": 0.5062276086040745, + "total_diffuse": 0.5096933930860452, + "total_direct": 0.5062276086040745 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.05874358453863317, - "heat_direct": 0.07523114906242075, - "total_diffuse": 0.05874358453863317, - "total_direct": 0.07523114906242075 + "heat_diffuse": 0.05875016970628145, + "heat_direct": 0.07525442321158927, + "total_diffuse": 0.05875016970628145, + "total_direct": 0.07525442321158927 } } } @@ -92,30 +92,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.40328014061668466, - "direct_diffuse": 0.40036930049056635, - "direct_direct": 0.0030026843599289883, - "direct_hemispherical": 0.40337198485049536 + "diffuse_diffuse": 0.4032089648720952, + "direct_diffuse": 0.4001548346061146, + "direct_direct": 0.0030026932342004193, + "direct_hemispherical": 0.40315752784031506 }, "transmittance": { - "diffuse_diffuse": 0.012698484351647003, - "direct_diffuse": 0.011896432570671054, - "direct_direct": 0.0014664740332854264, - "direct_hemispherical": 0.013362906603956481 + "diffuse_diffuse": 0.012698160418090203, + "direct_diffuse": 0.01189378520939247, + "direct_direct": 0.0014664785453938922, + "direct_hemispherical": 0.013360263754786363 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.13811549952763957, - "direct_diffuse": 0.011236635551093652, - "direct_direct": 0.0689743541570465, - "direct_hemispherical": 0.08021098970814015 + "diffuse_diffuse": 0.13811389046867156, + "direct_diffuse": 0.011232145872474189, + "direct_direct": 0.06897434219593854, + "direct_hemispherical": 0.08020648806841273 }, "transmittance": { - "diffuse_diffuse": 0.012703441259745946, - "direct_diffuse": 0.015298528790992381, - "direct_direct": 0.0014664829214957877, - "direct_hemispherical": 0.01676501171248817 + "diffuse_diffuse": 0.012703465839298426, + "direct_diffuse": 0.015295522295539475, + "direct_direct": 0.0014664697651648507, + "direct_hemispherical": 0.016761992060704327 } } } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/tuv.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/tuv.json index 17f4afc7..24697815 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/tuv.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/tuv.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.03333027880862112, - "heat_direct": 0.034816802488390176, - "total_diffuse": 0.03333027880862112, - "total_direct": 0.034816802488390176 + "heat_diffuse": 0.033329368449733734, + "heat_direct": 0.03480875740449127, + "total_diffuse": 0.033329368449733734, + "total_direct": 0.03480875740449127 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.7919507884728659, - "heat_direct": 0.8378537296966573, - "total_diffuse": 0.7919507884728659, - "total_direct": 0.8378537296966573 + "heat_diffuse": 0.7919482971142673, + "heat_direct": 0.8378469015145542, + "total_diffuse": 0.7919482971142673, + "total_direct": 0.8378469015145542 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.002990939389120656, - "heat_direct": 0.0030982578426472095, - "total_diffuse": 0.002990939389120656, - "total_direct": 0.0030982578426472095 + "heat_diffuse": 0.0029908573665944917, + "heat_direct": 0.003097793065226297, + "total_diffuse": 0.0029908573665944917, + "total_direct": 0.003097793065226297 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.011417535679138122, - "heat_direct": 0.011507859926419442, - "total_diffuse": 0.011417535679138122, - "total_direct": 0.011507859926419442 + "heat_diffuse": 0.011417364303763807, + "heat_direct": 0.011507201419837906, + "total_diffuse": 0.011417364303763807, + "total_direct": 0.011507201419837906 } } }, @@ -49,20 +49,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.04711985368064458, - "heat_direct": 0.04879146165505373, - "total_diffuse": 0.04711985368064458, - "total_direct": 0.04879146165505373 + "heat_diffuse": 0.04711910943732905, + "heat_direct": 0.04878150502317464, + "total_diffuse": 0.04711910943732905, + "total_direct": 0.04878150502317464 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.028265998377272183, - "heat_direct": 0.030507348047335927, - "total_diffuse": 0.028265998377272183, - "total_direct": 0.030507348047335927 + "heat_diffuse": 0.02826485720686627, + "heat_direct": 0.030503494076806283, + "total_diffuse": 0.02826485720686627, + "total_direct": 0.030503494076806283 } } }, @@ -71,20 +71,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.5100418540137868, - "heat_direct": 0.5064396898525834, - "total_diffuse": 0.5100418540137868, - "total_direct": 0.5064396898525834 + "heat_diffuse": 0.5101149317567307, + "heat_direct": 0.5066729559849938, + "total_diffuse": 0.5101149317567307, + "total_direct": 0.5066729559849938 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.03394284408039791, - "heat_direct": 0.04352230926598822, - "total_diffuse": 0.03394284408039791, - "total_direct": 0.04352230926598822 + "heat_diffuse": 0.03394649765465009, + "heat_direct": 0.04353512221110068, + "total_diffuse": 0.03394649765465009, + "total_direct": 0.04353512221110068 } } } @@ -92,30 +92,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.40337278150907546, - "direct_diffuse": 0.4004656970231613, - "direct_direct": 0.003004297383888622, - "direct_hemispherical": 0.40346999440704995 + "diffuse_diffuse": 0.40330160565319245, + "direct_diffuse": 0.4002512201553698, + "direct_direct": 0.0030043061437549624, + "direct_hemispherical": 0.40325552629912476 }, "transmittance": { - "diffuse_diffuse": 0.007336923347851154, - "direct_diffuse": 0.006890657274876534, - "direct_direct": 0.0008296799314642396, - "direct_hemispherical": 0.007720337206340774 + "diffuse_diffuse": 0.0073367032817238526, + "direct_diffuse": 0.006889077194453886, + "direct_direct": 0.0008296820939500614, + "direct_hemispherical": 0.007718759288403947 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.1263899032600441, - "direct_diffuse": 0.0030280129579012133, - "direct_direct": 0.0642661884030135, - "direct_hemispherical": 0.06729420136091471 + "diffuse_diffuse": 0.1263894541381919, + "direct_diffuse": 0.0030267872776231636, + "direct_direct": 0.06426618483609191, + "direct_hemispherical": 0.06729297211371507 }, "transmittance": { - "diffuse_diffuse": 0.007339808797828327, - "direct_diffuse": 0.008861835473276292, - "direct_direct": 0.0008296849575898563, - "direct_hemispherical": 0.009691520430866149 + "diffuse_diffuse": 0.007339789351666872, + "direct_diffuse": 0.008860045146413082, + "direct_direct": 0.0008296767893160065, + "direct_hemispherical": 0.009689721935729088 } } } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/photopic.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/photopic.json index 3dd1c56a..675c698c 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/photopic.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/photopic.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.05689543974880512, - "heat_direct": 0.05939983885717091, - "total_diffuse": 0.05689543974880512, - "total_direct": 0.05939983885717091 + "heat_diffuse": 0.05689455477251085, + "heat_direct": 0.05938081686215507, + "total_diffuse": 0.05689455477251085, + "total_direct": 0.05938081686215507 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.6550616379468954, - "heat_direct": 0.6876913553248348, - "total_diffuse": 0.6550616379468954, - "total_direct": 0.6876913553248348 + "heat_diffuse": 0.6550533488147413, + "heat_direct": 0.6876416553208484, + "total_diffuse": 0.6550533488147413, + "total_direct": 0.6876416553208484 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.0020621032948361503, - "heat_direct": 0.0021323107392327264, - "total_diffuse": 0.0020621032948361503, - "total_direct": 0.0021323107392327264 + "heat_diffuse": 0.0020620654610619543, + "heat_direct": 0.002131640939999818, + "total_diffuse": 0.0020620654610619543, + "total_direct": 0.002131640939999818 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.0077066336789075995, - "heat_direct": 0.007846821119851407, - "total_diffuse": 0.0077066336789075995, - "total_direct": 0.007846821119851407 + "heat_diffuse": 0.007706402379541885, + "heat_direct": 0.007845590510177716, + "total_diffuse": 0.007706402379541885, + "total_direct": 0.007845590510177716 } } }, @@ -49,20 +49,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.014207712429974744, - "heat_direct": 0.014311976812660795, - "total_diffuse": 0.014207712429974744, - "total_direct": 0.014311976812660795 + "heat_diffuse": 0.014207545945448562, + "heat_direct": 0.014308098738895714, + "total_diffuse": 0.014207545945448562, + "total_direct": 0.014308098738895714 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.03594368793989108, - "heat_direct": 0.03128452272117522, - "total_diffuse": 0.03594368793989108, - "total_direct": 0.03128452272117522 + "heat_diffuse": 0.03594150130194349, + "heat_direct": 0.03127584573493031, + "total_diffuse": 0.03594150130194349, + "total_direct": 0.03127584573493031 } } }, @@ -71,20 +71,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.5071396133872562, - "heat_direct": 0.5033952563114801, - "total_diffuse": 0.5071396133872562, - "total_direct": 0.5033952563114801 + "heat_diffuse": 0.5072124879111705, + "heat_direct": 0.503735600327498, + "total_diffuse": 0.5072124879111705, + "total_direct": 0.503735600327498 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.10329819043789469, - "heat_direct": 0.1337844788189975, - "total_diffuse": 0.10329819043789469, - "total_direct": 0.1337844788189975 + "heat_diffuse": 0.10331022609528416, + "heat_direct": 0.13386510107406036, + "total_diffuse": 0.10331022609528416, + "total_direct": 0.13386510107406036 } } } @@ -92,30 +92,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.40273955066063377, - "direct_diffuse": 0.3999280723523376, - "direct_direct": 0.002882801072396243, - "direct_hemispherical": 0.4028108734247339 + "diffuse_diffuse": 0.4026683805133175, + "direct_diffuse": 0.3996181553261795, + "direct_direct": 0.0028827952378003936, + "direct_hemispherical": 0.4025009505639799 }, "transmittance": { - "diffuse_diffuse": 0.022332002629143616, - "direct_diffuse": 0.02084971073783516, - "direct_direct": 0.002641784149489847, - "direct_hemispherical": 0.023491494887325007 + "diffuse_diffuse": 0.02233153176740236, + "direct_diffuse": 0.0208416606239396, + "direct_direct": 0.0026417782075481414, + "direct_hemispherical": 0.023483438831487742 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.16896569131938236, - "direct_diffuse": 0.021657465252313976, - "direct_direct": 0.08386891809212896, - "direct_hemispherical": 0.10552638334444293 + "diffuse_diffuse": 0.16896266497227574, + "direct_diffuse": 0.021637707335898163, + "direct_direct": 0.08386890849536027, + "direct_hemispherical": 0.10550661583125844 }, "transmittance": { - "diffuse_diffuse": 0.02234067975126366, - "direct_diffuse": 0.02717481138651431, - "direct_direct": 0.0026418628939009242, - "direct_hemispherical": 0.029816674280415234 + "diffuse_diffuse": 0.022340827268197357, + "direct_diffuse": 0.02716535199947583, + "direct_direct": 0.002641853956891421, + "direct_hemispherical": 0.02980720595636725 } } } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/solar.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/solar.json index 44bc38c1..83e4b888 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/solar.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/solar.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.046435805849828586, - "heat_direct": 0.04849409784915434, - "total_diffuse": 0.046435805849828586, - "total_direct": 0.04849409784915434 + "heat_diffuse": 0.046434667746424144, + "heat_direct": 0.04847797597552783, + "total_diffuse": 0.046434667746424144, + "total_direct": 0.04847797597552783 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.7276656983650053, - "heat_direct": 0.774243298824262, - "total_diffuse": 0.7276656983650053, - "total_direct": 0.774243298824262 + "heat_diffuse": 0.7276616771039089, + "heat_direct": 0.7742193753365694, + "total_diffuse": 0.7276616771039089, + "total_direct": 0.7742193753365694 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.004743734140806329, - "heat_direct": 0.004911973566509386, - "total_diffuse": 0.004743734140806329, - "total_direct": 0.004911973566509386 + "heat_diffuse": 0.004743593954419978, + "heat_direct": 0.004910359111393537, + "total_diffuse": 0.004743593954419978, + "total_direct": 0.004910359111393537 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.01202273402325002, - "heat_direct": 0.012320889342025835, - "total_diffuse": 0.01202273402325002, - "total_direct": 0.012320889342025835 + "heat_diffuse": 0.012022538821538059, + "heat_direct": 0.012319842673706106, + "total_diffuse": 0.012022538821538059, + "total_direct": 0.012319842673706106 } } }, @@ -49,20 +49,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.022068303347592, - "heat_direct": 0.022638670176690006, - "total_diffuse": 0.022068303347592, - "total_direct": 0.022638670176690006 + "heat_diffuse": 0.022067578006828452, + "heat_direct": 0.022631420094642356, + "total_diffuse": 0.022067578006828452, + "total_direct": 0.022631420094642356 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.02167734845231094, - "heat_direct": 0.0207030620550865, - "total_diffuse": 0.02167734845231094, - "total_direct": 0.0207030620550865 + "heat_diffuse": 0.021676132523601364, + "heat_direct": 0.020697841594698476, + "total_diffuse": 0.021676132523601364, + "total_direct": 0.020697841594698476 } } }, @@ -71,20 +71,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.517365587204581, - "heat_direct": 0.514056139082264, - "total_diffuse": 0.517365587204581, - "total_direct": 0.514056139082264 + "heat_diffuse": 0.5174390792375908, + "heat_direct": 0.5143940779263504, + "total_diffuse": 0.5174390792375908, + "total_direct": 0.5143940779263504 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.049981742997533364, - "heat_direct": 0.06489063320110607, - "total_diffuse": 0.049981742997533364, - "total_direct": 0.06489063320110607 + "heat_diffuse": 0.049987486027002266, + "heat_direct": 0.06492901872035085, + "total_diffuse": 0.049987486027002266, + "total_direct": 0.06492901872035085 } } } @@ -92,30 +92,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.4049443022910141, - "direct_diffuse": 0.40219824479308935, - "direct_direct": 0.002915439052568665, - "direct_hemispherical": 0.40511368384565805 + "diffuse_diffuse": 0.4048730047699506, + "direct_diffuse": 0.40188737528695695, + "direct_direct": 0.002915426556142033, + "direct_hemispherical": 0.40480280184309897 }, "transmittance": { - "diffuse_diffuse": 0.010806139818827984, - "direct_diffuse": 0.010096927886116784, - "direct_direct": 0.0012721565428066974, - "direct_hemispherical": 0.011369084428923482 + "diffuse_diffuse": 0.010805894290324523, + "direct_diffuse": 0.010093004627604261, + "direct_direct": 0.0012721533316555937, + "direct_hemispherical": 0.011365157959259855 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.17829229548944545, - "direct_diffuse": 0.009045747101814813, - "direct_direct": 0.10625793376728634, - "direct_hemispherical": 0.11530368086910116 + "diffuse_diffuse": 0.17829103064879528, + "direct_diffuse": 0.00903748554360534, + "direct_direct": 0.10625792961555351, + "direct_hemispherical": 0.11529541515915885 }, "transmittance": { - "diffuse_diffuse": 0.010810371886113725, - "direct_diffuse": 0.013186711438777601, - "direct_direct": 0.001272196756808118, - "direct_hemispherical": 0.014458908195585719 + "diffuse_diffuse": 0.010810428079332678, + "direct_diffuse": 0.013182057716334307, + "direct_direct": 0.0012721917293189368, + "direct_hemispherical": 0.014454249445653244 } } } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/tdw.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/tdw.json index 24591cc0..72b15643 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/tdw.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/tdw.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.045815041945691144, - "heat_direct": 0.04781608471880739, - "total_diffuse": 0.045815041945691144, - "total_direct": 0.04781608471880739 + "heat_diffuse": 0.04581412569972056, + "heat_direct": 0.04780051178323963, + "total_diffuse": 0.04581412569972056, + "total_direct": 0.04780051178323963 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.6811163762077747, - "heat_direct": 0.7164023440184555, - "total_diffuse": 0.6811163762077747, - "total_direct": 0.7164023440184555 + "heat_diffuse": 0.6811098931216301, + "heat_direct": 0.7163641147554454, + "total_diffuse": 0.6811098931216301, + "total_direct": 0.7163641147554454 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.0025276244279990646, - "heat_direct": 0.002615076702446168, - "total_diffuse": 0.0025276244279990646, - "total_direct": 0.002615076702446168 + "heat_diffuse": 0.002527564139434585, + "heat_direct": 0.002614235542372527, + "total_diffuse": 0.002527564139434585, + "total_direct": 0.002614235542372527 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.010575728163325733, - "heat_direct": 0.010749372204170344, - "total_diffuse": 0.010575728163325733, - "total_direct": 0.010749372204170344 + "heat_diffuse": 0.010575494421188297, + "heat_direct": 0.01074814038178407, + "total_diffuse": 0.010575494421188297, + "total_direct": 0.01074814038178407 } } }, @@ -49,20 +49,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.024503274934813298, - "heat_direct": 0.025105592593598586, - "total_diffuse": 0.024503274934813298, - "total_direct": 0.025105592593598586 + "heat_diffuse": 0.024502875685211825, + "heat_direct": 0.02509811619595959, + "total_diffuse": 0.024502875685211825, + "total_direct": 0.02509811619595959 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.03980525130844827, - "heat_direct": 0.03789871002972493, - "total_diffuse": 0.03980525130844827, - "total_direct": 0.03789871002972493 + "heat_diffuse": 0.03980313679819913, + "heat_direct": 0.037889848932331126, + "total_diffuse": 0.03980313679819913, + "total_direct": 0.037889848932331126 } } }, @@ -71,20 +71,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.5092592365772353, - "heat_direct": 0.5056179390536971, - "total_diffuse": 0.5092592365772353, - "total_direct": 0.5056179390536971 + "heat_diffuse": 0.5093322887353879, + "heat_direct": 0.5059578105811708, + "total_diffuse": 0.5093322887353879, + "total_direct": 0.5059578105811708 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.09009425296616404, - "heat_direct": 0.11664186721366254, - "total_diffuse": 0.09009425296616404, - "total_direct": 0.11664186721366254 + "heat_diffuse": 0.09010456907235806, + "heat_direct": 0.1167104350276615, + "total_diffuse": 0.09010456907235806, + "total_direct": 0.1167104350276615 } } } @@ -92,30 +92,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.403198976731115, - "direct_diffuse": 0.40040322505784326, - "direct_direct": 0.0028903987349224746, - "direct_hemispherical": 0.40329362379276573 + "diffuse_diffuse": 0.40312779870444904, + "direct_diffuse": 0.4000931145640186, + "direct_direct": 0.002890391548524411, + "direct_hemispherical": 0.40298350611254297 }, "transmittance": { - "diffuse_diffuse": 0.019476381795429102, - "direct_diffuse": 0.01820525173777283, - "direct_direct": 0.002280487020705082, - "direct_hemispherical": 0.020485738758477912 + "diffuse_diffuse": 0.019475931934706415, + "direct_diffuse": 0.018198180787582854, + "direct_direct": 0.0022804810960717526, + "direct_hemispherical": 0.020478661883654607 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.15414412299822466, - "direct_diffuse": 0.020210524272895256, - "direct_direct": 0.06952041653752426, - "direct_hemispherical": 0.08973094081041952 + "diffuse_diffuse": 0.15414128075188507, + "direct_diffuse": 0.020192070972501558, + "direct_direct": 0.06952040665404985, + "direct_hemispherical": 0.0897124776265514 }, "transmittance": { - "diffuse_diffuse": 0.019483960660085144, - "direct_diffuse": 0.023706577301191807, - "direct_direct": 0.002280560330206208, - "direct_hemispherical": 0.025987137631398014 + "diffuse_diffuse": 0.01948404732111163, + "direct_diffuse": 0.02369817775329295, + "direct_direct": 0.0022805509159671816, + "direct_hemispherical": 0.02597872866926013 } } } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 64532432..4be60a72 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,49 +1,49 @@ { - "SHGC": 0.15082169155904748, - "U": 0.9236681872890222, + "SHGC": 0.15084671096255498, + "U": 0.9236681868308737, "gap_layer_effective_conductivities_shgc": [ - 0.10211357992541495, - 0.02421779038804439, - 0.11087325541442959 + 0.10211283490769152, + 0.024217701813438384, + 0.11088135068770498 ], "gap_layer_effective_conductivities_u": [ - 0.07735520179732858, - 0.02162484364088166, - 0.09273589449718453 + 0.0773552018108165, + 0.021624843640992843, + 0.09273589449601922 ], "layer_temperatures_shgc": [ - 340.04968112648373, - 341.6221631876293, - 336.9589497205027, - 336.82996471664114, - 312.10856911457955, - 311.8406372303811, - 306.63988229722236, - 306.33904124256674 + 340.0486625046289, + 341.6211004300303, + 336.95809057591396, + 336.8291126447964, + 312.1090583824323, + 311.841149651003, + 306.64189998311826, + 306.34104730624324 ], "layer_temperatures_u": [ - 304.6907923319609, - 304.64704740604685, - 303.433881572982, - 303.41135884718426, - 299.0716887257584, - 299.03585241329904, - 298.0772319215888, - 298.0391300633645 + 304.69079233195237, + 304.6470474060376, + 303.43388157277883, + 303.41135884698065, + 299.07168872546265, + 299.0358524130026, + 298.0772319213014, + 298.0391300630777 ], - "relative_heat_gain": 116.5578686118453, + "relative_heat_gain": 116.57601200990491, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0, - 1.000344820967813, - 0.17570631190834649 + 1.0003448209691828, + 0.1757068086828251 ], "solid_layer_effective_conductivities_u": [ 1.0, 1.0, 1.000344832952456, - 0.17349344945036463 + 0.17349344944757428 ], - "system_effective_conductivity_shgc": 0.12286040052308803, - "system_effective_conductivity_u": 0.052591306561978746 + "system_effective_conductivity_shgc": 0.12289845894702796, + "system_effective_conductivity_u": 0.0525913065484085 } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index 910cb44e..7bbb77f9 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,49 +1,49 @@ { "SHGC": 0.0, - "U": 0.9150662118990808, + "U": 0.9150662116930626, "gap_layer_effective_conductivities_shgc": [ - 0.053901328236613186, - 0.021618079439119028, - 0.08683764219995432 + 0.05390132823666392, + 0.0216180794391176, + 0.08683764219990903 ], "gap_layer_effective_conductivities_u": [ - 0.05390132823680802, - 0.02161807943911794, - 0.0868376421997973 + 0.053901328237860514, + 0.021618079439099984, + 0.08683764219891985 ], "layer_temperatures_shgc": [ - 256.4893939297946, - 256.70066441954566, - 265.10921963766026, - 265.2179953918855, - 286.1834237077457, - 286.3564987662119, - 290.79631491441904, - 290.9405817015182 + 256.48939392979423, + 256.7006644195453, + 265.10921963764986, + 265.2179953918751, + 286.183423707721, + 286.3564987661871, + 290.7963149143998, + 290.9405817014992 ], "layer_temperatures_u": [ - 256.4893939297957, - 256.7006644195469, - 265.10921963769226, - 265.2179953919176, - 286.18342370779214, - 286.3564987662585, - 290.7963149144556, - 290.94058170155466 + 256.48939392980606, + 256.70066441955885, + 265.1092196379194, + 265.21799539214555, + 286.18342370821244, + 286.3564987666801, + 290.7963149147862, + 290.9405817018813 ], - "relative_heat_gain": 7.1192151292710095, + "relative_heat_gain": 7.119215128178993, "solid_layer_effective_conductivities_shgc": [ - 1.0, + 1.0000000000000002, 1.0, 1.0003447898816213, - 0.17348329068047227 + 0.17348329068022617 ], "solid_layer_effective_conductivities_u": [ 1.0, - 1.0000000000000002, - 1.0003447898816213, - 0.17348329068019025 + 0.9999999999999999, + 1.0003447898816216, + 0.1734832906789804 ], - "system_effective_conductivity_shgc": 0.03844454486386713, - "system_effective_conductivity_u": 0.038444544862176445 + "system_effective_conductivity_shgc": 0.038444544865306636, + "system_effective_conductivity_u": 0.03844454485919372 } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/tkr.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/tkr.json index d1348e3f..492e2582 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/tkr.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/tkr.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.03643954694953063, - "heat_direct": 0.03803829520197172, - "total_diffuse": 0.03643954694953063, - "total_direct": 0.03803829520197172 + "heat_diffuse": 0.03643866472585438, + "heat_direct": 0.038025678364863466, + "total_diffuse": 0.03643866472585438, + "total_direct": 0.038025678364863466 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.7434559932618724, - "heat_direct": 0.7882937316171057, - "total_diffuse": 0.7434559932618724, - "total_direct": 0.7882937316171057 + "heat_diffuse": 0.7434518872121788, + "heat_direct": 0.7882698798426727, + "total_diffuse": 0.7434518872121788, + "total_direct": 0.7882698798426727 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.0026922092327867427, - "heat_direct": 0.0027860585732452075, - "total_diffuse": 0.0026922092327867427, - "total_direct": 0.0027860585732452075 + "heat_diffuse": 0.002692138065582541, + "heat_direct": 0.0027851526980388996, + "total_diffuse": 0.002692138065582541, + "total_direct": 0.0027851526980388996 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.010947878739518803, - "heat_direct": 0.011117435229038774, - "total_diffuse": 0.010947878739518803, - "total_direct": 0.011117435229038774 + "heat_diffuse": 0.010947683677935688, + "heat_direct": 0.011116413530063485, + "total_diffuse": 0.010947683677935688, + "total_direct": 0.011116413530063485 } } }, @@ -49,20 +49,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.03947700351160888, - "heat_direct": 0.040774867505445345, - "total_diffuse": 0.03947700351160888, - "total_direct": 0.040774867505445345 + "heat_diffuse": 0.03947638546867459, + "heat_direct": 0.04076234451785331, + "total_diffuse": 0.03947638546867459, + "total_direct": 0.04076234451785331 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.033600347929766586, - "heat_direct": 0.03432721505065122, - "total_diffuse": 0.033600347929766586, - "total_direct": 0.03432721505065122 + "heat_diffuse": 0.03359877374829561, + "heat_direct": 0.03432021809945369, + "total_diffuse": 0.03359877374829561, + "total_direct": 0.03432021809945369 } } }, @@ -71,20 +71,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.5096203379538513, - "heat_direct": 0.5060119117931127, - "total_diffuse": 0.5096203379538513, - "total_direct": 0.5060119117931127 + "heat_diffuse": 0.5096933930860452, + "heat_direct": 0.5063516047117935, + "total_diffuse": 0.5096933930860452, + "total_direct": 0.5063516047117935 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.05874358453863317, - "heat_direct": 0.07605643095375679, - "total_diffuse": 0.05874358453863317, - "total_direct": 0.07605643095375679 + "heat_diffuse": 0.05875016970628145, + "heat_direct": 0.07609980585565701, + "total_diffuse": 0.05875016970628145, + "total_direct": 0.07609980585565701 } } } @@ -92,30 +92,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.40328014061668466, - "direct_diffuse": 0.4004900453848863, - "direct_direct": 0.0028920920326336963, - "direct_hemispherical": 0.40338213741752 + "diffuse_diffuse": 0.4032089648720952, + "direct_diffuse": 0.40017988580513003, + "direct_direct": 0.002892084463892047, + "direct_hemispherical": 0.4030719702690221 }, "transmittance": { - "diffuse_diffuse": 0.012698484351647003, - "direct_diffuse": 0.011886246275549687, - "direct_direct": 0.0014694264290046992, - "direct_hemispherical": 0.013355672704554386 + "diffuse_diffuse": 0.012698160418090203, + "direct_diffuse": 0.011881595700103696, + "direct_direct": 0.0014694219851621234, + "direct_hemispherical": 0.01335101768526582 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.13811549952763957, - "direct_diffuse": 0.011356533264805395, - "direct_direct": 0.06093520208597308, - "direct_hemispherical": 0.07229173535077847 + "diffuse_diffuse": 0.13811389046867156, + "direct_diffuse": 0.011346150589602096, + "direct_direct": 0.06093519588737887, + "direct_hemispherical": 0.07228134647698096 }, "transmittance": { - "diffuse_diffuse": 0.012703441259745946, - "direct_diffuse": 0.015468646176070893, - "direct_direct": 0.0014694778555994562, - "direct_hemispherical": 0.01693812403167035 + "diffuse_diffuse": 0.012703465839298426, + "direct_diffuse": 0.015463050840518853, + "direct_direct": 0.0014694704567291873, + "direct_hemispherical": 0.01693252129724804 } } } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/tuv.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/tuv.json index 4969f6aa..ba29996e 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/tuv.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/tuv.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.03333027880862112, - "heat_direct": 0.03480900865830112, - "total_diffuse": 0.03333027880862112, - "total_direct": 0.03480900865830112 + "heat_diffuse": 0.033329368449733734, + "heat_direct": 0.034797289601410174, + "total_diffuse": 0.033329368449733734, + "total_direct": 0.034797289601410174 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.7919507884728659, - "heat_direct": 0.844447369400152, - "total_diffuse": 0.7919507884728659, - "total_direct": 0.844447369400152 + "heat_diffuse": 0.7919482971142673, + "heat_direct": 0.8444331704247904, + "total_diffuse": 0.7919482971142673, + "total_direct": 0.8444331704247904 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.002990939389120656, - "heat_direct": 0.003095596175755735, - "total_diffuse": 0.002990939389120656, - "total_direct": 0.003095596175755735 + "heat_diffuse": 0.0029908573665944917, + "heat_direct": 0.0030945855975562583, + "total_diffuse": 0.0029908573665944917, + "total_direct": 0.0030945855975562583 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.011417535679138122, - "heat_direct": 0.01158972789186561, - "total_diffuse": 0.011417535679138122, - "total_direct": 0.01158972789186561 + "heat_diffuse": 0.011417364303763807, + "heat_direct": 0.01158883315223808, + "total_diffuse": 0.011417364303763807, + "total_direct": 0.01158883315223808 } } }, @@ -49,20 +49,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.04711985368064458, - "heat_direct": 0.0487760672068282, - "total_diffuse": 0.04711985368064458, - "total_direct": 0.0487760672068282 + "heat_diffuse": 0.04711910943732905, + "heat_direct": 0.048760946708900826, + "total_diffuse": 0.04711910943732905, + "total_direct": 0.048760946708900826 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.028265998377272183, - "heat_direct": 0.03098097171658627, - "total_diffuse": 0.028265998377272183, - "total_direct": 0.03098097171658627 + "heat_diffuse": 0.02826485720686627, + "heat_direct": 0.030975481713475275, + "total_diffuse": 0.02826485720686627, + "total_direct": 0.030975481713475275 } } }, @@ -71,20 +71,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.5100418540137868, - "heat_direct": 0.5064606006184725, - "total_diffuse": 0.5100418540137868, - "total_direct": 0.5064606006184725 + "heat_diffuse": 0.5101149317567307, + "heat_direct": 0.5068001550694782, + "total_diffuse": 0.5101149317567307, + "total_direct": 0.5068001550694782 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.03394284408039791, - "heat_direct": 0.04397600096841433, - "total_diffuse": 0.03394284408039791, - "total_direct": 0.04397600096841433 + "heat_diffuse": 0.03394649765465009, + "heat_direct": 0.04399965324498154, + "total_diffuse": 0.03394649765465009, + "total_direct": 0.04399965324498154 } } } @@ -92,30 +92,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.40337278150907546, - "direct_diffuse": 0.400587116721636, - "direct_direct": 0.0028937701550688535, - "direct_hemispherical": 0.40348088687670486 + "diffuse_diffuse": 0.40330160565319245, + "direct_diffuse": 0.40027691138928456, + "direct_direct": 0.00289376224877122, + "direct_hemispherical": 0.4031706736380558 }, "transmittance": { - "diffuse_diffuse": 0.007336923347851154, - "direct_diffuse": 0.006885174732750779, - "direct_direct": 0.0008308988308295256, - "direct_hemispherical": 0.007716073563580305 + "diffuse_diffuse": 0.0073367032817238526, + "direct_diffuse": 0.0068824434864438394, + "direct_direct": 0.0008308956376780136, + "direct_hemispherical": 0.007713339124121853 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.1263899032600441, - "direct_diffuse": 0.0030579872015733048, - "direct_direct": 0.05640537913492372, - "direct_hemispherical": 0.05946336633649702 + "diffuse_diffuse": 0.1263894541381919, + "direct_diffuse": 0.003055171081512549, + "direct_direct": 0.05640537658779153, + "direct_hemispherical": 0.05946054766930408 }, "transmittance": { - "diffuse_diffuse": 0.007339808797828327, - "direct_diffuse": 0.00895553542685415, - "direct_direct": 0.0008309324617550152, - "direct_hemispherical": 0.009786467888609165 + "diffuse_diffuse": 0.007339789351666872, + "direct_diffuse": 0.008952173241186875, + "direct_direct": 0.0008309268336046102, + "direct_hemispherical": 0.009783100074791485 } } } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/photopic.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/photopic.json index 0067f1c9..f194672a 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/photopic.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/photopic.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.05698991420482535, - "heat_direct": 0.05950781658102477, - "total_diffuse": 0.05698991420482535, - "total_direct": 0.05950781658102477 + "heat_diffuse": 0.05698903114474717, + "heat_direct": 0.05949455083881587, + "total_diffuse": 0.05698903114474717, + "total_direct": 0.05949455083881587 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.6548790721858851, - "heat_direct": 0.6825744270400941, - "total_diffuse": 0.6548790721858851, - "total_direct": 0.6825744270400941 + "heat_diffuse": 0.6548706511952781, + "heat_direct": 0.6825505821464282, + "total_diffuse": 0.6548706511952781, + "total_direct": 0.6825505821464282 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.0018691546080352494, - "heat_direct": 0.0019341740978771965, - "total_diffuse": 0.0018691546080352494, - "total_direct": 0.0019341740978771965 + "heat_diffuse": 0.0018691201569480808, + "heat_direct": 0.0019339458557420706, + "total_diffuse": 0.0018691201569480808, + "total_direct": 0.0019339458557420706 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.007140294047334884, - "heat_direct": 0.007212862279181956, - "total_diffuse": 0.007140294047334884, - "total_direct": 0.007212862279181956 + "heat_diffuse": 0.007140075433909215, + "heat_direct": 0.007211967875502877, + "total_diffuse": 0.007140075433909215, + "total_direct": 0.007211967875502877 } } }, @@ -49,20 +49,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.013987202966015314, - "heat_direct": 0.014066007191669767, - "total_diffuse": 0.013987202966015314, - "total_direct": 0.014066007191669767 + "heat_diffuse": 0.013987041469337668, + "heat_direct": 0.01406349041254107, + "total_diffuse": 0.013987041469337668, + "total_direct": 0.01406349041254107 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.03573950821342772, - "heat_direct": 0.030102234062082636, - "total_diffuse": 0.03573950821342772, - "total_direct": 0.030102234062082636 + "heat_diffuse": 0.03573731977922731, + "heat_direct": 0.030093400987910315, + "total_diffuse": 0.03573731977922731, + "total_direct": 0.030093400987910315 } } }, @@ -71,20 +71,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.5071353624535028, - "heat_direct": 0.5033839314836339, - "total_diffuse": 0.5071353624535028, - "total_direct": 0.5033839314836339 + "heat_diffuse": 0.5072082372977449, + "heat_direct": 0.5036172882571678, + "total_diffuse": 0.5072082372977449, + "total_direct": 0.5036172882571678 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.10432591471077898, - "heat_direct": 0.13355876005961054, - "total_diffuse": 0.10432591471077898, - "total_direct": 0.13355876005961054 + "heat_diffuse": 0.1043380746217138, + "heat_direct": 0.1336021098360458, + "total_diffuse": 0.1043380746217138, + "total_direct": 0.1336021098360458 } } } @@ -92,30 +92,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.4027384752915859, - "direct_diffuse": 0.3998084057183048, - "direct_direct": 0.00299355439156269, - "direct_hemispherical": 0.40280196010986746 + "diffuse_diffuse": 0.4026673048046301, + "direct_diffuse": 0.3995940241528382, + "direct_direct": 0.002993564014976754, + "direct_hemispherical": 0.4025875881678149 }, "transmittance": { - "diffuse_diffuse": 0.022554024197372482, - "direct_diffuse": 0.021075732423305182, - "direct_direct": 0.002661520651635558, - "direct_hemispherical": 0.02373725307494074 + "diffuse_diffuse": 0.022553549721780308, + "direct_diffuse": 0.021071182534566683, + "direct_direct": 0.002661530043026682, + "direct_hemispherical": 0.023732712577593365 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.16838996818219137, - "direct_diffuse": 0.021501998546487086, - "direct_direct": 0.09125750968026054, - "direct_hemispherical": 0.11275950822674763 + "diffuse_diffuse": 0.1683869317926534, + "direct_diffuse": 0.021493457992637008, + "direct_direct": 0.0912574876981346, + "direct_hemispherical": 0.11275094569077161 }, "transmittance": { - "diffuse_diffuse": 0.02256278301537416, - "direct_diffuse": 0.027124443051544878, - "direct_direct": 0.002661536842244322, - "direct_hemispherical": 0.0297859798937892 + "diffuse_diffuse": 0.022562932449022306, + "direct_diffuse": 0.027119266271373087, + "direct_direct": 0.0026615152275061, + "direct_hemispherical": 0.029780781498879187 } } } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/solar.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/solar.json index 5f7ae15f..b5e9473a 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/solar.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/solar.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.0466116916071705, - "heat_direct": 0.04869003764592591, - "total_diffuse": 0.0466116916071705, - "total_direct": 0.04869003764592591 + "heat_diffuse": 0.04661055203439836, + "heat_direct": 0.04867892979753955, + "total_diffuse": 0.04661055203439836, + "total_direct": 0.04867892979753955 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.725355358644546, - "heat_direct": 0.765836745582441, - "total_diffuse": 0.725355358644546, - "total_direct": 0.765836745582441 + "heat_diffuse": 0.7253513328134341, + "heat_direct": 0.7658254108221517, + "total_diffuse": 0.7253513328134341, + "total_direct": 0.7658254108221517 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.004732654574484772, - "heat_direct": 0.00490546737077212, - "total_diffuse": 0.004732654574484772, - "total_direct": 0.00490546737077212 + "heat_diffuse": 0.004732514899746715, + "heat_direct": 0.0049046629309933394, + "total_diffuse": 0.004732514899746715, + "total_direct": 0.0049046629309933394 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.011615535181841663, - "heat_direct": 0.011821171895163367, - "total_diffuse": 0.011615535181841663, - "total_direct": 0.011821171895163367 + "heat_diffuse": 0.011615346734517211, + "heat_direct": 0.011820418970777478, + "total_diffuse": 0.011615346734517211, + "total_direct": 0.011820418970777478 } } }, @@ -49,20 +49,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.021953613273850307, - "heat_direct": 0.02251531214765284, - "total_diffuse": 0.021953613273850307, - "total_direct": 0.02251531214765284 + "heat_diffuse": 0.021952889321839184, + "heat_direct": 0.022510353850684877, + "total_diffuse": 0.021952889321839184, + "total_direct": 0.022510353850684877 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.021455194264611975, - "heat_direct": 0.019958397857555793, - "total_diffuse": 0.021455194264611975, - "total_direct": 0.019958397857555793 + "heat_diffuse": 0.021453982444601827, + "heat_direct": 0.01995376976124761, + "total_diffuse": 0.021453982444601827, + "total_direct": 0.01995376976124761 } } }, @@ -71,20 +71,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.5173056451749136, - "heat_direct": 0.5139814689885547, - "total_diffuse": 0.5173056451749136, - "total_direct": 0.5139814689885547 + "heat_diffuse": 0.517379138087176, + "heat_direct": 0.5142137313307149, + "total_diffuse": 0.517379138087176, + "total_direct": 0.5142137313307149 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.05018399575271979, - "heat_direct": 0.06440865883516593, - "total_diffuse": 0.05018399575271979, - "total_direct": 0.06440865883516593 + "heat_diffuse": 0.05018975636334749, + "heat_direct": 0.06442920892446084, + "total_diffuse": 0.05018975636334749, + "total_direct": 0.06442920892446084 } } } @@ -92,30 +92,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.4049313971500419, - "direct_diffuse": 0.4020652051422827, - "direct_direct": 0.003026144117142331, - "direct_hemispherical": 0.405091349259425 + "diffuse_diffuse": 0.4048601013943053, + "direct_diffuse": 0.40185027268234796, + "direct_direct": 0.003026149472398212, + "direct_hemispherical": 0.4048764221547462 }, "transmittance": { - "diffuse_diffuse": 0.010849674702490146, - "direct_diffuse": 0.010147467861061332, - "direct_direct": 0.00127320167591481, - "direct_hemispherical": 0.011420669536976142 + "diffuse_diffuse": 0.010849426952238356, + "direct_diffuse": 0.010145248981631189, + "direct_direct": 0.0012732059502425484, + "direct_hemispherical": 0.011418454931873738 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.1808610239187038, - "direct_diffuse": 0.009015615054996498, - "direct_direct": 0.11652703600892624, - "direct_hemispherical": 0.12554265106392273 + "diffuse_diffuse": 0.18085974714958547, + "direct_diffuse": 0.009012034449349657, + "direct_direct": 0.11652702669356739, + "direct_hemispherical": 0.12553906114291705 }, "transmittance": { - "diffuse_diffuse": 0.010853920467756788, - "direct_diffuse": 0.013087259749530681, - "direct_direct": 0.001273209468116438, - "direct_hemispherical": 0.014360469217647118 + "diffuse_diffuse": 0.010853975058645507, + "direct_diffuse": 0.01308473655081647, + "direct_direct": 0.0012731987430857218, + "direct_hemispherical": 0.014357935293902191 } } } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/tdw.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/tdw.json index 7f1ac2fe..b5a1a57f 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/tdw.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/tdw.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.0452007042551142, - "heat_direct": 0.04717779505662506, - "total_diffuse": 0.0452007042551142, - "total_direct": 0.04717779505662506 + "heat_diffuse": 0.04519982781349382, + "heat_direct": 0.04716703076948123, + "total_diffuse": 0.04519982781349382, + "total_direct": 0.04716703076948123 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.6588529366735605, - "heat_direct": 0.6865350528893334, - "total_diffuse": 0.6588529366735605, - "total_direct": 0.6865350528893334 + "heat_diffuse": 0.6588461576572197, + "heat_direct": 0.6865159676098145, + "total_diffuse": 0.6588461576572197, + "total_direct": 0.6865159676098145 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.0024105503244161216, - "heat_direct": 0.0024978743839884636, - "total_diffuse": 0.0024105503244161216, - "total_direct": 0.0024978743839884636 + "heat_diffuse": 0.0024104961457443344, + "heat_direct": 0.0024975371425396626, + "total_diffuse": 0.0024104961457443344, + "total_direct": 0.0024975371425396626 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.009275083080868784, - "heat_direct": 0.009352884840640343, - "total_diffuse": 0.009275083080868784, - "total_direct": 0.009352884840640343 + "heat_diffuse": 0.00927485647604117, + "heat_direct": 0.009351974211127233, + "total_diffuse": 0.00927485647604117, + "total_direct": 0.009351974211127233 } } }, @@ -49,20 +49,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.023639003908789327, - "heat_direct": 0.02419659058296323, - "total_diffuse": 0.023639003908789327, - "total_direct": 0.02419659058296323 + "heat_diffuse": 0.023638564862354113, + "heat_direct": 0.02419175136650588, + "total_diffuse": 0.023638564862354113, + "total_direct": 0.02419175136650588 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.040694957559947065, - "heat_direct": 0.037438344232210756, - "total_diffuse": 0.040694957559947065, - "total_direct": 0.037438344232210756 + "heat_diffuse": 0.040692757043551464, + "heat_direct": 0.03742985274203796, + "total_diffuse": 0.040692757043551464, + "total_direct": 0.03742985274203796 } } }, @@ -71,20 +71,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.5095153795311542, - "heat_direct": 0.5058732822684807, - "total_diffuse": 0.5095153795311542, - "total_direct": 0.5058732822684807 + "heat_diffuse": 0.5095884631248769, + "heat_direct": 0.5061065253163545, + "total_diffuse": 0.5095884631248769, + "total_direct": 0.5061065253163545 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.0954156223054664, - "heat_direct": 0.12206467633010638, - "total_diffuse": 0.0954156223054664, - "total_direct": 0.12206467633010638 + "heat_diffuse": 0.09542653674043212, + "heat_direct": 0.12210337505470281, + "total_diffuse": 0.09542653674043212, + "total_direct": 0.12210337505470281 } } } @@ -92,30 +92,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.4032540338481776, - "direct_diffuse": 0.4003402967475153, - "direct_direct": 0.003002038456209375, - "direct_hemispherical": 0.4033423352037247 + "diffuse_diffuse": 0.4031828554621991, + "direct_diffuse": 0.40012581978958606, + "direct_direct": 0.0030020473044763732, + "direct_hemispherical": 0.40312786709406245 }, "transmittance": { - "diffuse_diffuse": 0.020626149675466908, - "direct_diffuse": 0.01929938679319585, - "direct_direct": 0.002406148663749264, - "direct_hemispherical": 0.021705535456945115 + "diffuse_diffuse": 0.020625670681611363, + "direct_diffuse": 0.01929515787960321, + "direct_direct": 0.00240615663084745, + "direct_hemispherical": 0.02170131451045066 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.1696046243491779, - "direct_diffuse": 0.02157405937142906, - "direct_direct": 0.0928171606004589, - "direct_hemispherical": 0.11439121997188796 + "diffuse_diffuse": 0.16960154513075062, + "direct_diffuse": 0.02156544692503866, + "direct_direct": 0.09281713791189213, + "direct_hemispherical": 0.11438258483693078 }, "transmittance": { - "diffuse_diffuse": 0.020634163552841665, - "direct_diffuse": 0.024806024362920412, - "direct_direct": 0.0024061632631744625, - "direct_hemispherical": 0.027212187626094873 + "diffuse_diffuse": 0.020634251036556642, + "direct_diffuse": 0.024801220189631972, + "direct_direct": 0.0024061427196718633, + "direct_hemispherical": 0.027207362909303836 } } } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index add83123..3394f1e4 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,49 +1,49 @@ { - "SHGC": 0.1488526042824998, - "U": 0.9236681872907057, + "SHGC": 0.14886450500575868, + "U": 0.9236681873532367, "gap_layer_effective_conductivities_shgc": [ - 0.10179590791622553, - 0.02418403640329963, - 0.11083366915460602 + 0.10179552252502559, + 0.024183991412734064, + 0.11083814902274466 ], "gap_layer_effective_conductivities_u": [ - 0.07735520179682039, - 0.021624843640880194, - 0.0927358944971743 + 0.07735520179460614, + 0.02162484364086829, + 0.09273589449739761 ], "layer_temperatures_shgc": [ - 339.65786716065656, - 341.2115343679435, - 336.54786395270605, - 336.4198196233725, - 311.9287268336209, - 311.6646543416664, - 306.55049547950614, - 306.25330096354304 + 339.6573643897051, + 341.21100873088255, + 336.54739240125974, + 336.41935072310764, + 311.9288239399351, + 311.66476588309723, + 306.5515157196638, + 306.25431833886324 ], "layer_temperatures_u": [ - 304.69079233196254, - 304.6470474060487, - 303.43388157299466, - 303.411358847197, - 299.0716887257691, - 299.0358524133097, - 298.0772319215985, - 298.03913006337416 + 304.6907923319632, + 304.64704740604947, + 303.4338815730233, + 303.4113588472257, + 299.07168872581724, + 299.035852413358, + 298.07723192164406, + 298.0391300634195 ], - "relative_heat_gain": 115.12994083852989, + "relative_heat_gain": 115.1385709237742, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0, - 1.0003448212669943, - 0.17569109788803666 + 1.0003448212694523, + 0.17569135774075678 ], "solid_layer_effective_conductivities_u": [ 1.0, 1.0, - 1.000344832952456, - 0.1734934494504749 + 1.0003448329524562, + 0.1734934494508696 ], - "system_effective_conductivity_shgc": 0.1226650089754459, - "system_effective_conductivity_u": 0.052591306564515175 + "system_effective_conductivity_shgc": 0.1226842571263138, + "system_effective_conductivity_u": 0.052591306566518906 } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index a327b868..d439a2b0 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,49 +1,49 @@ { "SHGC": 0.0, - "U": 0.9150662120103994, + "U": 0.9150662120763855, "gap_layer_effective_conductivities_shgc": [ - 0.053901328236607544, - 0.021618079439118938, + 0.05390132823661328, + 0.021618079439118677, 0.0868376421999598 ], "gap_layer_effective_conductivities_u": [ - 0.05390132823657052, - 0.021618079439118507, - 0.08683764219997875 + 0.053901328236316146, + 0.021618079439123004, + 0.08683764220020487 ], "layer_temperatures_shgc": [ - 256.4893939297947, - 256.7006644195458, - 265.10921963766174, - 265.2179953918869, - 286.1834237077463, - 286.35649876621255, - 290.7963149144193, - 290.94058170151845 + 256.48939392979446, + 256.70066441954555, + 265.10921963765986, + 265.2179953918852, + 286.1834237077425, + 286.35649876620874, + 290.7963149144157, + 290.9405817015149 ], "layer_temperatures_u": [ - 256.48939392979514, - 256.70066441954623, - 265.1092196376643, - 265.2179953918896, - 286.18342370774917, - 286.35649876621534, - 290.79631491442217, - 290.94058170152135 + 256.4893939297925, + 256.70066441954333, + 265.1092196376105, + 265.2179953918356, + 286.1834237076458, + 286.3564987661117, + 290.79631491433963, + 290.9405817014398 ], - "relative_heat_gain": 7.119215129422313, + "relative_heat_gain": 7.11921512969292, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.9999999999999999, + 1.0, 1.0003447898816213, - 0.17348329068046275 + 0.17348329068046273 ], "solid_layer_effective_conductivities_u": [ - 1.0, - 1.0, + 1.0000000000000002, + 0.9999999999999999, 1.0003447898816213, - 0.17348329068047777 + 0.17348329068078128 ], - "system_effective_conductivity_shgc": 0.03844454486377369, - "system_effective_conductivity_u": 0.038444544863781314 + "system_effective_conductivity_shgc": 0.03844454486379668, + "system_effective_conductivity_u": 0.03844454486476857 } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/tkr.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/tkr.json index a61c390d..f3304d82 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/tkr.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/tkr.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.03468789901874854, - "heat_direct": 0.036214968566403896, - "total_diffuse": 0.03468789901874854, - "total_direct": 0.036214968566403896 + "heat_diffuse": 0.03468708154200305, + "heat_direct": 0.036206620720952466, + "total_diffuse": 0.03468708154200305, + "total_direct": 0.036206620720952466 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.7278251384178084, - "heat_direct": 0.7656343045326851, - "total_diffuse": 0.7278251384178084, - "total_direct": 0.7656343045326851 + "heat_diffuse": 0.7278211626396439, + "heat_direct": 0.7656231932223287, + "total_diffuse": 0.7278211626396439, + "total_direct": 0.7656231932223287 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.002941699769820959, - "heat_direct": 0.003052951861343394, - "total_diffuse": 0.002941699769820959, - "total_direct": 0.003052951861343394 + "heat_diffuse": 0.002941629177640994, + "heat_direct": 0.0030525044403606916, + "total_diffuse": 0.002941629177640994, + "total_direct": 0.0030525044403606916 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.00845343260494442, - "heat_direct": 0.00851397380590143, - "total_diffuse": 0.00845343260494442, - "total_direct": 0.00851397380590143 + "heat_diffuse": 0.008453270506846359, + "heat_direct": 0.008513331710376229, + "total_diffuse": 0.008453270506846359, + "total_direct": 0.008513331710376229 } } }, @@ -49,20 +49,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.039839699695599376, - "heat_direct": 0.04116955114761603, - "total_diffuse": 0.039839699695599376, - "total_direct": 0.04116955114761603 + "heat_diffuse": 0.039838914680346324, + "heat_direct": 0.041161038370946056, + "total_diffuse": 0.039838914680346324, + "total_direct": 0.041161038370946056 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.032362528476559446, - "heat_direct": 0.032024307761881414, - "total_diffuse": 0.032362528476559446, - "total_direct": 0.032024307761881414 + "heat_diffuse": 0.03236099240726078, + "heat_direct": 0.032018647157476834, + "total_diffuse": 0.03236099240726078, + "total_direct": 0.032018647157476834 } } }, @@ -71,20 +71,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.5105059166415071, - "heat_direct": 0.5069180378934851, - "total_diffuse": 0.5105059166415071, - "total_direct": 0.5069180378934851 + "heat_diffuse": 0.5105790676317138, + "heat_direct": 0.5071512721401185, + "total_diffuse": 0.5105790676317138, + "total_direct": 0.5071512721401185 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.059228629570382205, - "heat_direct": 0.07574543010953046, - "total_diffuse": 0.059228629570382205, - "total_direct": 0.07574543010953046 + "heat_diffuse": 0.05923528003080813, + "heat_direct": 0.07576889840355264, + "total_diffuse": 0.05923528003080813, + "total_direct": 0.07576889840355264 } } } @@ -92,30 +92,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.40347123857406536, - "direct_diffuse": 0.40056593454048445, - "direct_direct": 0.003005854284270609, - "direct_hemispherical": 0.40357178882475503 + "diffuse_diffuse": 0.40340006131745665, + "direct_diffuse": 0.4003514319846711, + "direct_direct": 0.0030058628743841226, + "direct_hemispherical": 0.40335729485905525 }, "transmittance": { - "diffuse_diffuse": 0.012802774912096675, - "direct_diffuse": 0.011993912213334542, - "direct_direct": 0.001477531910991014, - "direct_hemispherical": 0.013471444124325556 + "diffuse_diffuse": 0.012802450492664569, + "direct_diffuse": 0.011991246423916344, + "direct_direct": 0.0014775364848815674, + "direct_hemispherical": 0.01346878290879791 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.1562708725974547, - "direct_diffuse": 0.012410623246907365, - "direct_direct": 0.08730387999464005, - "direct_hemispherical": 0.09971450324154742 + "diffuse_diffuse": 0.15626908569652995, + "direct_diffuse": 0.012405649257392529, + "direct_direct": 0.08730386663636786, + "direct_hemispherical": 0.09970951589376038 }, "transmittance": { - "diffuse_diffuse": 0.01280775564335897, - "direct_diffuse": 0.015402443612118401, - "direct_direct": 0.0014775408586872546, - "direct_hemispherical": 0.016879984470805656 + "diffuse_diffuse": 0.012807780900031032, + "direct_diffuse": 0.015399419094544021, + "direct_direct": 0.0014775276417707936, + "direct_hemispherical": 0.016876946736314815 } } } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/tuv.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/tuv.json index 430dfd55..a9c95543 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/tuv.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/tuv.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.03222389667070325, - "heat_direct": 0.03367085928191681, - "total_diffuse": 0.03222389667070325, - "total_direct": 0.03367085928191681 + "heat_diffuse": 0.03222295600473843, + "heat_direct": 0.033663062670637366, + "total_diffuse": 0.03222295600473843, + "total_direct": 0.033663062670637366 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.7936794669670572, - "heat_direct": 0.8414661574568975, - "total_diffuse": 0.7936794669670572, - "total_direct": 0.8414661574568975 + "heat_diffuse": 0.7936780111533702, + "heat_direct": 0.8414621947410166, + "total_diffuse": 0.7936780111533702, + "total_direct": 0.8414621947410166 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.003734268945286048, - "heat_direct": 0.0038762287066007686, - "total_diffuse": 0.003734268945286048, - "total_direct": 0.0038762287066007686 + "heat_diffuse": 0.0037341708087791268, + "heat_direct": 0.0038756219333049356, + "total_diffuse": 0.0037341708087791268, + "total_direct": 0.0038756219333049356 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.008687921391660965, - "heat_direct": 0.008729825491083254, - "total_diffuse": 0.008687921391660965, - "total_direct": 0.008729825491083254 + "heat_diffuse": 0.008687828639471613, + "heat_direct": 0.008729470778243528, + "total_diffuse": 0.008687828639471613, + "total_direct": 0.008729470778243528 } } }, @@ -49,20 +49,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.04672363017262282, - "heat_direct": 0.04840583554618361, - "total_diffuse": 0.04672363017262282, - "total_direct": 0.04840583554618361 + "heat_diffuse": 0.04672253938116576, + "heat_direct": 0.04839550337730665, + "total_diffuse": 0.04672253938116576, + "total_direct": 0.04839550337730665 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.026360439254658422, - "heat_direct": 0.02954366145557384, - "total_diffuse": 0.026360439254658422, - "total_direct": 0.02954366145557384 + "heat_diffuse": 0.02635954718548947, + "heat_direct": 0.029540749907960653, + "total_diffuse": 0.02635954718548947, + "total_direct": 0.029540749907960653 } } }, @@ -71,20 +71,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.5131259964942704, - "heat_direct": 0.5096521725170189, - "total_diffuse": 0.5131259964942704, - "total_direct": 0.5096521725170189 + "heat_diffuse": 0.5131993711224869, + "heat_direct": 0.5098852327416479, + "total_diffuse": 0.5131993711224869, + "total_direct": 0.5098852327416479 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.022434696369211398, - "heat_direct": 0.02872324933187508, - "total_diffuse": 0.022434696369211398, - "total_direct": 0.02872324933187508 + "heat_diffuse": 0.02243706265099893, + "heat_direct": 0.02873149974827936, + "total_diffuse": 0.02243706265099893, + "total_direct": 0.02873149974827936 } } } @@ -92,30 +92,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.40403759649783083, - "direct_diffuse": 0.4011491599286181, - "direct_direct": 0.003014871735888683, - "direct_hemispherical": 0.40416403166450676 + "diffuse_diffuse": 0.40396640530042344, + "direct_diffuse": 0.4009345400484369, + "direct_direct": 0.003014879397646496, + "direct_hemispherical": 0.4039494194460834 }, "transmittance": { - "diffuse_diffuse": 0.004848922121013449, - "direct_diffuse": 0.004559470748195425, - "direct_direct": 0.0005418743909724347, - "direct_hemispherical": 0.00510134513916786 + "diffuse_diffuse": 0.004848766153794966, + "direct_diffuse": 0.0045584123468700635, + "direct_direct": 0.0005418756739548827, + "direct_hemispherical": 0.0051002880208249465 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.14334974026861388, - "direct_diffuse": 0.0016807810745915475, - "direct_direct": 0.08356272385396922, - "direct_hemispherical": 0.08524350492856077 + "diffuse_diffuse": 0.1433494876193577, + "direct_diffuse": 0.0016800952387562434, + "direct_direct": 0.08356272181842676, + "direct_hemispherical": 0.085242817057183 }, "transmittance": { - "diffuse_diffuse": 0.004850824797593275, - "direct_diffuse": 0.005851919824816341, - "direct_direct": 0.0005418776534813722, - "direct_hemispherical": 0.006393797478297713 + "diffuse_diffuse": 0.004850800115667814, + "direct_diffuse": 0.005850720903721911, + "direct_direct": 0.0005418720804502087, + "direct_hemispherical": 0.0063925929841721196 } } } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/photopic.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/photopic.json index af377007..cbdb7219 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/photopic.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/photopic.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.05698991420482535, - "heat_direct": 0.059497761732884014, - "total_diffuse": 0.05698991420482535, - "total_direct": 0.059497761732884014 + "heat_diffuse": 0.05698903114474717, + "heat_direct": 0.05947871467651418, + "total_diffuse": 0.05698903114474717, + "total_direct": 0.05947871467651418 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.6548790721858851, - "heat_direct": 0.6874508181196487, - "total_diffuse": 0.6548790721858851, - "total_direct": 0.6874508181196487 + "heat_diffuse": 0.6548706511952781, + "heat_direct": 0.6874002935107398, + "total_diffuse": 0.6548706511952781, + "total_direct": 0.6874002935107398 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.0018691546080352494, - "heat_direct": 0.0019326463185628836, - "total_diffuse": 0.0018691546080352494, - "total_direct": 0.0019326463185628836 + "heat_diffuse": 0.0018691201569480808, + "heat_direct": 0.0019320389624482687, + "total_diffuse": 0.0018691201569480808, + "total_direct": 0.0019320389624482687 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.007140294047334884, - "heat_direct": 0.007267669393206717, - "total_diffuse": 0.007140294047334884, - "total_direct": 0.007267669393206717 + "heat_diffuse": 0.007140075433909215, + "heat_direct": 0.007266508532825864, + "total_diffuse": 0.007140075433909215, + "total_direct": 0.007266508532825864 } } }, @@ -49,20 +49,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.013987202966015314, - "heat_direct": 0.014080656835689166, - "total_diffuse": 0.013987202966015314, - "total_direct": 0.014080656835689166 + "heat_diffuse": 0.013987041469337668, + "heat_direct": 0.014076854421550804, + "total_diffuse": 0.013987041469337668, + "total_direct": 0.014076854421550804 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.03573950821342772, - "heat_direct": 0.030876509699362616, - "total_diffuse": 0.03573950821342772, - "total_direct": 0.030876509699362616 + "heat_diffuse": 0.03573731977922731, + "heat_direct": 0.030867878299925215, + "total_diffuse": 0.03573731977922731, + "total_direct": 0.030867878299925215 } } }, @@ -71,20 +71,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.5071353624535028, - "heat_direct": 0.5033899000131745, - "total_diffuse": 0.5071353624535028, - "total_direct": 0.5033899000131745 + "heat_diffuse": 0.5072082372977449, + "heat_direct": 0.5037302486702057, + "total_diffuse": 0.5072082372977449, + "total_direct": 0.5037302486702057 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.10432591471077898, - "heat_direct": 0.13509384882772502, - "total_diffuse": 0.10432591471077898, - "total_direct": 0.13509384882772502 + "heat_diffuse": 0.1043380746217138, + "heat_direct": 0.13517530879521023, + "total_diffuse": 0.1043380746217138, + "total_direct": 0.13517530879521023 } } } @@ -92,30 +92,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.4027384752915859, - "direct_diffuse": 0.39992679469232384, - "direct_direct": 0.0028827561572647093, - "direct_hemispherical": 0.4028095508495885 + "diffuse_diffuse": 0.4026673048046301, + "direct_diffuse": 0.3996168786815066, + "direct_direct": 0.0028827503313867023, + "direct_hemispherical": 0.40249962901289327 }, "transmittance": { - "diffuse_diffuse": 0.022554024197372482, - "direct_diffuse": 0.021056459505401914, - "direct_direct": 0.002668218098022883, - "direct_hemispherical": 0.0237246776034248 + "diffuse_diffuse": 0.022553549721780308, + "direct_diffuse": 0.021048331738435892, + "direct_direct": 0.0026682121206374147, + "direct_hemispherical": 0.023716543859073305 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.16838996818219137, - "direct_diffuse": 0.021737247625560494, - "direct_direct": 0.08316457189361956, - "direct_hemispherical": 0.10490181951918005 + "diffuse_diffuse": 0.1683869317926534, + "direct_diffuse": 0.021717419731899806, + "direct_direct": 0.08316456234159313, + "direct_hemispherical": 0.10488198207349293 }, "transmittance": { - "diffuse_diffuse": 0.02256278301537416, - "direct_diffuse": 0.02744032396393593, - "direct_direct": 0.002668297444237415, - "direct_hemispherical": 0.030108621408173344 + "diffuse_diffuse": 0.022562932449022306, + "direct_diffuse": 0.027430776661049084, + "direct_direct": 0.0026682884674168136, + "direct_hemispherical": 0.0300990651284659 } } } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/solar.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/solar.json index 24980411..ff0a0993 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/solar.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/solar.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.0466116916071705, - "heat_direct": 0.048677972348742424, - "total_diffuse": 0.0466116916071705, - "total_direct": 0.048677972348742424 + "heat_diffuse": 0.04661055203439836, + "heat_direct": 0.04866179257577769, + "total_diffuse": 0.04661055203439836, + "total_direct": 0.04866179257577769 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.725355358644546, - "heat_direct": 0.7717723165410757, - "total_diffuse": 0.725355358644546, - "total_direct": 0.7717723165410757 + "heat_diffuse": 0.7253513328134341, + "heat_direct": 0.7717483771760603, + "total_diffuse": 0.7253513328134341, + "total_direct": 0.7717483771760603 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.004732654574484772, - "heat_direct": 0.0049007962091728256, - "total_diffuse": 0.004732654574484772, - "total_direct": 0.0049007962091728256 + "heat_diffuse": 0.004732514899746715, + "heat_direct": 0.00489918521717626, + "total_diffuse": 0.004732514899746715, + "total_direct": 0.00489918521717626 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.011615535181841663, - "heat_direct": 0.011906150038384088, - "total_diffuse": 0.011615535181841663, - "total_direct": 0.011906150038384088 + "heat_diffuse": 0.011615346734517211, + "heat_direct": 0.011905140672531088, + "total_diffuse": 0.011615346734517211, + "total_direct": 0.011905140672531088 } } }, @@ -49,20 +49,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.021953613273850307, - "heat_direct": 0.022518132861481594, - "total_diffuse": 0.021953613273850307, - "total_direct": 0.022518132861481594 + "heat_diffuse": 0.021952889321839184, + "heat_direct": 0.0225109209914484, + "total_diffuse": 0.021952889321839184, + "total_direct": 0.0225109209914484 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.021455194264611975, - "heat_direct": 0.020387185343058466, - "total_diffuse": 0.021455194264611975, - "total_direct": 0.020387185343058466 + "heat_diffuse": 0.021453982444601827, + "heat_direct": 0.020382002773576238, + "total_diffuse": 0.021453982444601827, + "total_direct": 0.020382002773576238 } } }, @@ -71,20 +71,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.5173056451749136, - "heat_direct": 0.5139938159886179, - "total_diffuse": 0.5173056451749136, - "total_direct": 0.5139938159886179 + "heat_diffuse": 0.517379138087176, + "heat_direct": 0.5143317753550867, + "total_diffuse": 0.517379138087176, + "total_direct": 0.5143317753550867 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.05018399575271979, - "heat_direct": 0.06512774571088484, - "total_diffuse": 0.05018399575271979, - "total_direct": 0.06512774571088484 + "heat_diffuse": 0.05018975636334749, + "heat_direct": 0.0651662139386306, + "total_diffuse": 0.05018975636334749, + "total_direct": 0.0651662139386306 } } } @@ -92,30 +92,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.4049313971500419, - "direct_diffuse": 0.4021849666996751, - "direct_direct": 0.0029152846350756403, - "direct_hemispherical": 0.4051002513347507 + "diffuse_diffuse": 0.4048601013943053, + "direct_diffuse": 0.4018741037906167, + "direct_direct": 0.0029152721867818816, + "direct_hemispherical": 0.4047893759773986 }, "transmittance": { - "diffuse_diffuse": 0.010849674702490146, - "direct_diffuse": 0.010138477226037784, - "direct_direct": 0.0012760133933280762, - "direct_hemispherical": 0.01141449061936586 + "diffuse_diffuse": 0.010849426952238356, + "direct_diffuse": 0.010134537404284133, + "direct_direct": 0.001276010147215058, + "direct_hemispherical": 0.01141054755149919 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.1808610239187038, - "direct_diffuse": 0.009113051825585472, - "direct_direct": 0.10897207002543549, - "direct_hemispherical": 0.11808512185102096 + "diffuse_diffuse": 0.18085974714958547, + "direct_diffuse": 0.009104728546332208, + "direct_direct": 0.10897206573969292, + "direct_hemispherical": 0.11807679428602513 }, "transmittance": { - "diffuse_diffuse": 0.010853920467756788, - "direct_diffuse": 0.013235339802520127, - "direct_direct": 0.0012760539001999904, - "direct_hemispherical": 0.014511393702720117 + "diffuse_diffuse": 0.010853975058645507, + "direct_diffuse": 0.013230664184302932, + "direct_direct": 0.0012760488015683227, + "direct_hemispherical": 0.014506712985871254 } } } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/tdw.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/tdw.json index a0193e62..8580e5d5 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/tdw.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/tdw.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.0452007042551142, - "heat_direct": 0.047169980194619245, - "total_diffuse": 0.0452007042551142, - "total_direct": 0.047169980194619245 + "heat_diffuse": 0.04519982781349382, + "heat_direct": 0.04715466385020089, + "total_diffuse": 0.04519982781349382, + "total_direct": 0.04715466385020089 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.6588529366735605, - "heat_direct": 0.6916220681729267, - "total_diffuse": 0.6588529366735605, - "total_direct": 0.6916220681729267 + "heat_diffuse": 0.6588461576572197, + "heat_direct": 0.6915821101790955, + "total_diffuse": 0.6588461576572197, + "total_direct": 0.6915821101790955 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.0024105503244161216, - "heat_direct": 0.0024955112685713155, - "total_diffuse": 0.0024105503244161216, - "total_direct": 0.0024955112685713155 + "heat_diffuse": 0.0024104961457443344, + "heat_direct": 0.0024947100124934436, + "total_diffuse": 0.0024104961457443344, + "total_direct": 0.0024947100124934436 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.009275083080868784, - "heat_direct": 0.00942144724793355, - "total_diffuse": 0.009275083080868784, - "total_direct": 0.00942144724793355 + "heat_diffuse": 0.00927485647604117, + "heat_direct": 0.009420254575102842, + "total_diffuse": 0.00927485647604117, + "total_direct": 0.009420254575102842 } } }, @@ -49,20 +49,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.023639003908789327, - "heat_direct": 0.024201410836316998, - "total_diffuse": 0.023639003908789327, - "total_direct": 0.024201410836316998 + "heat_diffuse": 0.023638564862354113, + "heat_direct": 0.024194151492262384, + "total_diffuse": 0.023638564862354113, + "total_direct": 0.024194151492262384 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.040694957559947065, - "heat_direct": 0.038249800887169984, - "total_diffuse": 0.040694957559947065, - "total_direct": 0.038249800887169984 + "heat_diffuse": 0.040692757043551464, + "heat_direct": 0.03824066436430101, + "total_diffuse": 0.040692757043551464, + "total_direct": 0.03824066436430101 } } }, @@ -71,20 +71,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.5095153795311542, - "heat_direct": 0.505884468638427, - "total_diffuse": 0.5095153795311542, - "total_direct": 0.505884468638427 + "heat_diffuse": 0.5095884631248769, + "heat_direct": 0.5062243084077502, + "total_diffuse": 0.5095884631248769, + "total_direct": 0.5062243084077502 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.0954156223054664, - "heat_direct": 0.1234365463409026, - "total_diffuse": 0.0954156223054664, - "total_direct": 0.1234365463409026 + "heat_diffuse": 0.09542653674043212, + "heat_direct": 0.12350898168644542, + "total_diffuse": 0.09542653674043212, + "total_direct": 0.12350898168644542 } } } @@ -92,30 +92,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.4032540338481776, - "direct_diffuse": 0.400459754174701, - "direct_direct": 0.0028913055173587234, - "direct_hemispherical": 0.4033510596920597 + "diffuse_diffuse": 0.4031828554621991, + "direct_diffuse": 0.4001496243309791, + "direct_direct": 0.002891298205042224, + "direct_hemispherical": 0.40304092253602136 }, "transmittance": { - "diffuse_diffuse": 0.020626149675466908, - "direct_diffuse": 0.019282255915578674, - "direct_direct": 0.002411612811027208, - "direct_hemispherical": 0.02169386872660588 + "diffuse_diffuse": 0.020625670681611363, + "direct_diffuse": 0.019274766923057598, + "direct_direct": 0.0024116064908369142, + "direct_hemispherical": 0.02168637341389451 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.1696046243491779, - "direct_diffuse": 0.02180584427735624, - "direct_direct": 0.08470095640423338, - "direct_hemispherical": 0.10650680068158962 + "diffuse_diffuse": 0.16960154513075062, + "direct_diffuse": 0.021785928370351135, + "direct_direct": 0.0847009451707142, + "direct_hemispherical": 0.10648687354106534 }, "transmittance": { - "diffuse_diffuse": 0.020634163552841665, - "direct_diffuse": 0.02508856112615271, - "direct_direct": 0.0024116907448472613, - "direct_hemispherical": 0.02750025187099997 + "diffuse_diffuse": 0.020634251036556642, + "direct_diffuse": 0.025079661399920853, + "direct_direct": 0.002411680666223335, + "direct_hemispherical": 0.02749134206614419 } } } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 01b10e8e..724782d5 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,49 +1,49 @@ { - "SHGC": 0.15053611380026272, - "U": 0.9236681872907057, + "SHGC": 0.15056122878069628, + "U": 0.9236681873532367, "gap_layer_effective_conductivities_shgc": [ - 0.10200455327193432, - 0.02420517561903959, - 0.1109452729834591 + 0.10200381134026996, + 0.024205087484447576, + 0.11095347726511937 ], "gap_layer_effective_conductivities_u": [ - 0.07735520179682039, - 0.021624843640880194, - 0.0927358944971743 + 0.07735520179460614, + 0.02162484364086829, + 0.09273589449739761 ], "layer_temperatures_shgc": [ - 339.9251440392035, - 341.4911786325008, - 336.80782755438406, - 336.67896648439057, - 312.0512137046574, - 311.78486621140246, - 306.63009585835186, - 306.3304001368293 + 339.92412647699257, + 341.4901170849534, + 336.806973769269, + 336.67811982389276, + 312.0517111402969, + 311.7853867395803, + 306.6321209116412, + 306.3324133929991 ], "layer_temperatures_u": [ - 304.69079233196254, - 304.6470474060487, - 303.43388157299466, - 303.411358847197, - 299.0716887257691, - 299.0358524133097, - 298.0772319215985, - 298.03913006337416 + 304.6907923319632, + 304.64704740604947, + 303.4338815730233, + 303.4113588472257, + 299.07168872581724, + 299.035852413358, + 298.07723192164406, + 298.0391300634195 ], - "relative_heat_gain": 116.35077550975623, + "relative_heat_gain": 116.36898819983224, "solid_layer_effective_conductivities_shgc": [ - 1.0, - 1.0, - 1.0003448210873547, - 0.17570627646586745 + 0.9999999999999999, + 0.9999999999999998, + 1.0003448210887125, + 0.17570677546625585 ], "solid_layer_effective_conductivities_u": [ 1.0, 1.0, - 1.000344832952456, - 0.1734934494504749 + 1.0003448329524562, + 0.1734934494508696 ], - "system_effective_conductivity_shgc": 0.12311345584675122, - "system_effective_conductivity_u": 0.052591306564515175 + "system_effective_conductivity_shgc": 0.12315179042850519, + "system_effective_conductivity_u": 0.052591306566518906 } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index a327b868..d439a2b0 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,49 +1,49 @@ { "SHGC": 0.0, - "U": 0.9150662120103994, + "U": 0.9150662120763855, "gap_layer_effective_conductivities_shgc": [ - 0.053901328236607544, - 0.021618079439118938, + 0.05390132823661328, + 0.021618079439118677, 0.0868376421999598 ], "gap_layer_effective_conductivities_u": [ - 0.05390132823657052, - 0.021618079439118507, - 0.08683764219997875 + 0.053901328236316146, + 0.021618079439123004, + 0.08683764220020487 ], "layer_temperatures_shgc": [ - 256.4893939297947, - 256.7006644195458, - 265.10921963766174, - 265.2179953918869, - 286.1834237077463, - 286.35649876621255, - 290.7963149144193, - 290.94058170151845 + 256.48939392979446, + 256.70066441954555, + 265.10921963765986, + 265.2179953918852, + 286.1834237077425, + 286.35649876620874, + 290.7963149144157, + 290.9405817015149 ], "layer_temperatures_u": [ - 256.48939392979514, - 256.70066441954623, - 265.1092196376643, - 265.2179953918896, - 286.18342370774917, - 286.35649876621534, - 290.79631491442217, - 290.94058170152135 + 256.4893939297925, + 256.70066441954333, + 265.1092196376105, + 265.2179953918356, + 286.1834237076458, + 286.3564987661117, + 290.79631491433963, + 290.9405817014398 ], - "relative_heat_gain": 7.119215129422313, + "relative_heat_gain": 7.11921512969292, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.9999999999999999, + 1.0, 1.0003447898816213, - 0.17348329068046275 + 0.17348329068046273 ], "solid_layer_effective_conductivities_u": [ - 1.0, - 1.0, + 1.0000000000000002, + 0.9999999999999999, 1.0003447898816213, - 0.17348329068047777 + 0.17348329068078128 ], - "system_effective_conductivity_shgc": 0.03844454486377369, - "system_effective_conductivity_u": 0.038444544863781314 + "system_effective_conductivity_shgc": 0.03844454486379668, + "system_effective_conductivity_u": 0.03844454486476857 } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/tkr.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/tkr.json index 51ee7504..ddd2aa39 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/tkr.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/tkr.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.03468789901874854, - "heat_direct": 0.036208301026880226, - "total_diffuse": 0.03468789901874854, - "total_direct": 0.036208301026880226 + "heat_diffuse": 0.03468708154200305, + "heat_direct": 0.036196322994883616, + "total_diffuse": 0.03468708154200305, + "total_direct": 0.036196322994883616 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.7278251384178084, - "heat_direct": 0.7715870296762216, - "total_diffuse": 0.7278251384178084, - "total_direct": 0.7715870296762216 + "heat_diffuse": 0.7278211626396439, + "heat_direct": 0.771563922184565, + "total_diffuse": 0.7278211626396439, + "total_direct": 0.771563922184565 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.002941699769820959, - "heat_direct": 0.003049394941199644, - "total_diffuse": 0.002941699769820959, - "total_direct": 0.003049394941199644 + "heat_diffuse": 0.002941629177640994, + "heat_direct": 0.0030484043207988135, + "total_diffuse": 0.002941629177640994, + "total_direct": 0.0030484043207988135 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.00845343260494442, - "heat_direct": 0.008575078224598402, - "total_diffuse": 0.00845343260494442, - "total_direct": 0.008575078224598402 + "heat_diffuse": 0.008453270506846359, + "heat_direct": 0.00857423096190664, + "total_diffuse": 0.008453270506846359, + "total_direct": 0.00857423096190664 } } }, @@ -49,20 +49,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.039839699695599376, - "heat_direct": 0.04116052085253709, - "total_diffuse": 0.039839699695599376, - "total_direct": 0.04116052085253709 + "heat_diffuse": 0.039838914680346324, + "heat_direct": 0.04114764431094812, + "total_diffuse": 0.039838914680346324, + "total_direct": 0.04114764431094812 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.032362528476559446, - "heat_direct": 0.03262183496465139, - "total_diffuse": 0.032362528476559446, - "total_direct": 0.03262183496465139 + "heat_diffuse": 0.03236099240726078, + "heat_direct": 0.03261511771366071, + "total_diffuse": 0.03236099240726078, + "total_direct": 0.03261511771366071 } } }, @@ -71,20 +71,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.5105059166415071, - "heat_direct": 0.5069360760324981, - "total_diffuse": 0.5105059166415071, - "total_direct": 0.5069360760324981 + "heat_diffuse": 0.5105790676317138, + "heat_direct": 0.507275622591466, + "total_diffuse": 0.5105790676317138, + "total_direct": 0.507275622591466 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.059228629570382205, - "heat_direct": 0.07657826996646985, - "total_diffuse": 0.059228629570382205, - "total_direct": 0.07657826996646985 + "heat_diffuse": 0.05923528003080813, + "heat_direct": 0.07662202439873562, + "total_diffuse": 0.05923528003080813, + "total_direct": 0.07662202439873562 } } } @@ -92,30 +92,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.40347123857406536, - "direct_diffuse": 0.40068677989512297, - "direct_direct": 0.002895250601709824, - "direct_hemispherical": 0.4035820304968328 + "diffuse_diffuse": 0.40340006131745665, + "direct_diffuse": 0.4003765477374802, + "direct_direct": 0.002895242543854332, + "direct_hemispherical": 0.40327179028133453 }, "transmittance": { - "diffuse_diffuse": 0.012802774912096675, - "direct_diffuse": 0.011983590633871073, - "direct_direct": 0.001480537951467986, - "direct_hemispherical": 0.013464128585339059 + "diffuse_diffuse": 0.012802450492664569, + "direct_diffuse": 0.011978907788992486, + "direct_direct": 0.0014805335165431555, + "direct_hemispherical": 0.013459441305535641 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.1562708725974547, - "direct_diffuse": 0.012541897468249727, - "direct_direct": 0.07938340569957753, - "direct_hemispherical": 0.09192530316782725 + "diffuse_diffuse": 0.15626908569652995, + "direct_diffuse": 0.01253042899835835, + "direct_direct": 0.07938339844346161, + "direct_hemispherical": 0.09191382744181996 }, "transmittance": { - "diffuse_diffuse": 0.01280775564335897, - "direct_diffuse": 0.015574110504621161, - "direct_direct": 0.001480589516450708, - "direct_hemispherical": 0.01705470002107187 + "diffuse_diffuse": 0.012807780900031032, + "direct_diffuse": 0.015568484380714695, + "direct_direct": 0.0014805821473437542, + "direct_hemispherical": 0.01704906652805845 } } } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/tuv.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/tuv.json index b101d656..e4a893cb 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/tuv.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/tuv.json @@ -5,20 +5,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.03222389667070325, - "heat_direct": 0.033663262408633196, - "total_diffuse": 0.03222389667070325, - "total_direct": 0.033663262408633196 + "heat_diffuse": 0.03222295600473843, + "heat_direct": 0.033651826362675774, + "total_diffuse": 0.03222295600473843, + "total_direct": 0.033651826362675774 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.7936794669670572, - "heat_direct": 0.848173298150555, - "total_diffuse": 0.7936794669670572, - "total_direct": 0.848173298150555 + "heat_diffuse": 0.7936780111533702, + "heat_direct": 0.8481650968230238, + "total_diffuse": 0.7936780111533702, + "total_direct": 0.8481650968230238 } } }, @@ -27,20 +27,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.003734268945286048, - "heat_direct": 0.0038717690389489293, - "total_diffuse": 0.003734268945286048, - "total_direct": 0.0038717690389489293 + "heat_diffuse": 0.0037341708087791268, + "heat_direct": 0.003870499832542789, + "total_diffuse": 0.0037341708087791268, + "total_direct": 0.003870499832542789 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.008687921391660965, - "heat_direct": 0.008791107390315116, - "total_diffuse": 0.008687921391660965, - "total_direct": 0.008791107390315116 + "heat_diffuse": 0.008687828639471613, + "heat_direct": 0.008790627787112135, + "total_diffuse": 0.008687828639471613, + "total_direct": 0.008790627787112135 } } }, @@ -49,20 +49,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.04672363017262282, - "heat_direct": 0.04838866129833266, - "total_diffuse": 0.04672363017262282, - "total_direct": 0.04838866129833266 + "heat_diffuse": 0.04672253938116576, + "heat_direct": 0.04837316687960773, + "total_diffuse": 0.04672253938116576, + "total_direct": 0.04837316687960773 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.026360439254658422, - "heat_direct": 0.029959321834524492, - "total_diffuse": 0.026360439254658422, - "total_direct": 0.029959321834524492 + "heat_diffuse": 0.02635954718548947, + "heat_direct": 0.029954912678310356, + "total_diffuse": 0.02635954718548947, + "total_direct": 0.029954912678310356 } } }, @@ -71,20 +71,20 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.5131259964942704, - "heat_direct": 0.5096743349866572, - "total_diffuse": 0.5131259964942704, - "total_direct": 0.5096743349866572 + "heat_diffuse": 0.5131993711224869, + "heat_direct": 0.5100133321199427, + "total_diffuse": 0.5131993711224869, + "total_direct": 0.5100133321199427 } }, "front": { "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.022434696369211398, - "heat_direct": 0.029018067017445054, - "total_diffuse": 0.022434696369211398, - "total_direct": 0.029018067017445054 + "heat_diffuse": 0.02243706265099893, + "heat_direct": 0.029033240291950306, + "total_diffuse": 0.02243706265099893, + "total_direct": 0.029033240291950306 } } } @@ -92,30 +92,30 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.40403759649783083, - "direct_diffuse": 0.4012708576252635, - "direct_direct": 0.002904302104275372, - "direct_hemispherical": 0.4041751597295389 + "diffuse_diffuse": 0.40396640530042344, + "direct_diffuse": 0.40096039248335025, + "direct_direct": 0.002904292432338059, + "direct_hemispherical": 0.40386468491568833 }, "transmittance": { - "diffuse_diffuse": 0.004848922121013449, - "direct_diffuse": 0.004555950056474668, - "direct_direct": 0.0005425861115900445, - "direct_hemispherical": 0.005098536168064713 + "diffuse_diffuse": 0.004848766153794966, + "direct_diffuse": 0.004554132619798969, + "direct_direct": 0.000542583810148188, + "direct_hemispherical": 0.005096716429947157 } }, "front": { "reflectance": { - "diffuse_diffuse": 0.14334974026861388, - "direct_diffuse": 0.001697215129974755, - "direct_direct": 0.07590461819052824, - "direct_hemispherical": 0.077601833320503 + "diffuse_diffuse": 0.1433494876193577, + "direct_diffuse": 0.0016956510042109851, + "direct_direct": 0.07590461663931426, + "direct_hemispherical": 0.07760026764352525 }, "transmittance": { - "diffuse_diffuse": 0.004850824797593275, - "direct_diffuse": 0.0059128528643929345, - "direct_direct": 0.0005426094477866708, - "direct_hemispherical": 0.0064554623121796054 + "diffuse_diffuse": 0.004850800115667814, + "direct_diffuse": 0.005910595566431403, + "direct_direct": 0.0005426053200638429, + "direct_hemispherical": 0.006453200886495246 } } } diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/photopic.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/photopic.json index ef138691..76c5cd58 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/photopic.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/photopic.json @@ -37,9 +37,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.341680210221849, + "heat_diffuse": 0.3416802102218491, "heat_direct": 0.40492505769928167, - "total_diffuse": 0.341680210221849, + "total_diffuse": 0.3416802102218491, "total_direct": 0.40492505769928167 } } @@ -48,13 +48,13 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.6105135376022077, + "diffuse_diffuse": 0.6105135376022043, "direct_diffuse": 0.5565635726446866, "direct_direct": 0.004456828116079199, "direct_hemispherical": 0.5610204007607658 }, "transmittance": { - "diffuse_diffuse": 0.058946429475782464, + "diffuse_diffuse": 0.058946429475781534, "direct_diffuse": 0.04226904556042054, "direct_direct": 0.04424333395454071, "direct_hemispherical": 0.08651237951496125 diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/solar.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/solar.json index 898d548b..b76ac16f 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/solar.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/solar.json @@ -27,9 +27,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.3470627156273554, + "heat_diffuse": 0.34706271562735536, "heat_direct": 0.36396560605289335, - "total_diffuse": 0.3470627156273554, + "total_diffuse": 0.34706271562735536, "total_direct": 0.36396560605289335 } }, @@ -48,13 +48,13 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.5752542511032683, + "diffuse_diffuse": 0.5752542511032664, "direct_diffuse": 0.5211701258042006, "direct_direct": 0.004161583506989277, "direct_hemispherical": 0.5253317093111899 }, "transmittance": { - "diffuse_diffuse": 0.06742699845424788, + "diffuse_diffuse": 0.06742699845424775, "direct_diffuse": 0.05643639580782491, "direct_direct": 0.040390709068171694, "direct_hemispherical": 0.0968271048759966 diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/tdw.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/tdw.json index 9bbb6283..ee719b15 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/tdw.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/tdw.json @@ -5,9 +5,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.01018030348715849, + "heat_diffuse": 0.010180303487158494, "heat_direct": 0.014195863502982646, - "total_diffuse": 0.01018030348715849, + "total_diffuse": 0.010180303487158494, "total_direct": 0.014195863502982646 } }, @@ -27,9 +27,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.33165294255573285, + "heat_diffuse": 0.33165294255573274, "heat_direct": 0.35229398732214273, - "total_diffuse": 0.33165294255573285, + "total_diffuse": 0.33165294255573274, "total_direct": 0.35229398732214273 } }, @@ -38,9 +38,9 @@ "electricity_diffuse": 0.0, "electricity_direct": 0.0, "heat_diffuse": 0.307757423828105, - "heat_direct": 0.3654337754070502, + "heat_direct": 0.3654337754070503, "total_diffuse": 0.307757423828105, - "total_direct": 0.3654337754070502 + "total_direct": 0.3654337754070503 } } } @@ -48,13 +48,13 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.6050557585010297, + "diffuse_diffuse": 0.605055758501034, "direct_diffuse": 0.5510795624850585, "direct_direct": 0.004410765417952501, "direct_hemispherical": 0.555490327903011 }, "transmittance": { - "diffuse_diffuse": 0.05311099545603435, + "diffuse_diffuse": 0.053110995456034864, "direct_diffuse": 0.03810263006850771, "direct_direct": 0.039917191203355004, "direct_hemispherical": 0.07801982127186272 @@ -68,7 +68,7 @@ "direct_hemispherical": 0.42606049912512495 }, "transmittance": { - "diffuse_diffuse": 0.0693232898980832, + "diffuse_diffuse": 0.06932328989808322, "direct_diffuse": 0.04301059227864521, "direct_direct": 0.03991704668840771, "direct_hemispherical": 0.08292763896705292 diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 45fd8da7..31c1fdf4 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.40532797857584046, - "U": 3.7215669526687867, + "SHGC": 0.40532797858075376, + "U": 3.721566952415843, "gap_layer_effective_conductivities_shgc": [ - 0.08217717560492704 + 0.08217717560492016 ], "gap_layer_effective_conductivities_u": [ - 0.09599999216177824 + 0.09599999216191007 ], "layer_temperatures_shgc": [ - 311.3133776937857, - 311.54090110437375, - 320.01777654625613, - 319.6970582069188 + 311.3133776937865, + 311.5409011043746, + 320.0177765462577, + 319.69705820692036 ], "layer_temperatures_u": [ - 303.6887181623537, - 303.59797147088284, - 300.11549987958034, - 299.98386316406305 + 303.68871816235264, + 303.59797147088176, + 300.115499879577, + 299.9838631640597 ], - "relative_heat_gain": 322.88645949479735, + "relative_heat_gain": 322.88645949500255, "solid_layer_effective_conductivities_shgc": [ - 1.0, - 0.17734477149443578 + 0.9999999999999999, + 0.17734477149443462 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17378016005376953 + 0.17378016005377203 ], - "system_effective_conductivity_shgc": 0.4015381084281986, - "system_effective_conductivity_u": 0.10341153154083921 + "system_effective_conductivity_shgc": 0.40153810842628695, + "system_effective_conductivity_u": 0.10341153153561992 } diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index 74571849..3713979e 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 4.667785945279265, + "U": 4.66778594546494, "gap_layer_effective_conductivities_shgc": [ - 0.08232989929135476 + 0.08232989929134857 ], "gap_layer_effective_conductivities_u": [ - 0.08232989929151104 + 0.08232989929140078 ], "layer_temperatures_shgc": [ 261.36693342644037, - 261.92180249508516, - 282.92489149820017, - 283.44471121028107 + 261.9218024950851, + 282.92489149820193, + 283.4447112102829 ], "layer_temperatures_u": [ - 261.36693342644776, - 261.9218024950931, - 282.9248914982355, - 283.44471121031603 + 261.3669334264431, + 261.92180249508806, + 282.9248914982122, + 283.44471121029306 ], - "relative_heat_gain": 36.31537465696281, + "relative_heat_gain": 36.315374657303515, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.17365348770675243 + 0.17365348770675207 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17365348770667238 + 0.17365348770672842 ], - "system_effective_conductivity_shgc": 0.06847686219885694, - "system_effective_conductivity_u": 0.0684768621966354 + "system_effective_conductivity_shgc": 0.06847686219886846, + "system_effective_conductivity_u": 0.06847686219771058 } diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/tkr.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/tkr.json index 255551ad..2e9024b7 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/tkr.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/tkr.json @@ -27,9 +27,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.3366184303895995, + "heat_diffuse": 0.3366184303895994, "heat_direct": 0.3559392069336549, - "total_diffuse": 0.3366184303895995, + "total_diffuse": 0.3366184303895994, "total_direct": 0.3559392069336549 } }, @@ -37,10 +37,10 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.2515421469120603, - "heat_direct": 0.29936954831269463, - "total_diffuse": 0.2515421469120603, - "total_direct": 0.29936954831269463 + "heat_diffuse": 0.25154214691206034, + "heat_direct": 0.29936954831269474, + "total_diffuse": 0.25154214691206034, + "total_direct": 0.29936954831269474 } } } @@ -48,13 +48,13 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.5949540822794804, + "diffuse_diffuse": 0.5949540822794889, "direct_diffuse": 0.5409270970832842, "direct_direct": 0.004319477385341591, "direct_hemispherical": 0.5452465744686258 }, "transmittance": { - "diffuse_diffuse": 0.04341622792114068, + "diffuse_diffuse": 0.04341622792114079, "direct_diffuse": 0.031139452538569645, "direct_direct": 0.032708140323115364, "direct_hemispherical": 0.06384759286168501 diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/tuv.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/tuv.json index acfdb209..96cd5c73 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/tuv.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/tuv.json @@ -5,9 +5,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.03226371362542844, + "heat_diffuse": 0.032263713625428445, "heat_direct": 0.04511731695243757, - "total_diffuse": 0.03226371362542844, + "total_diffuse": 0.032263713625428445, "total_direct": 0.04511731695243757 } }, @@ -48,13 +48,13 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.5901702389608201, + "diffuse_diffuse": 0.5901702389608191, "direct_diffuse": 0.5361190090047556, "direct_direct": 0.004275354888898887, "direct_hemispherical": 0.5403943638936545 }, "transmittance": { - "diffuse_diffuse": 0.038612772514032515, + "diffuse_diffuse": 0.038612772514032084, "direct_diffuse": 0.027679296097081366, "direct_direct": 0.02916481920307865, "direct_hemispherical": 0.056844115300160016 diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/photopic.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/photopic.json index 58f57f59..43a7fef1 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/photopic.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/photopic.json @@ -37,10 +37,10 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.341680210221849, - "heat_direct": 0.4049146547821594, - "total_diffuse": 0.341680210221849, - "total_direct": 0.4049146547821594 + "heat_diffuse": 0.3416802102218491, + "heat_direct": 0.4049146547821595, + "total_diffuse": 0.3416802102218491, + "total_direct": 0.4049146547821595 } } } @@ -48,13 +48,13 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.6105135376022077, + "diffuse_diffuse": 0.6105135376022043, "direct_diffuse": 0.5585742657926672, "direct_direct": 0.004359198345033166, "direct_hemispherical": 0.5629334641377004 }, "transmittance": { - "diffuse_diffuse": 0.058946429475782464, + "diffuse_diffuse": 0.058946429475781534, "direct_diffuse": 0.041705283820449586, "direct_direct": 0.042481162691723744, "direct_hemispherical": 0.08418644651217333 diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/solar.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/solar.json index 9ab46ba5..db049aa6 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/solar.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/solar.json @@ -27,9 +27,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.3470627156273554, + "heat_diffuse": 0.34706271562735536, "heat_direct": 0.364313560257934, - "total_diffuse": 0.3470627156273554, + "total_diffuse": 0.34706271562735536, "total_direct": 0.364313560257934 } }, @@ -38,9 +38,9 @@ "electricity_diffuse": 0.0, "electricity_direct": 0.0, "heat_diffuse": 0.30816090766343684, - "heat_direct": 0.367878124765081, + "heat_direct": 0.36787812476508114, "total_diffuse": 0.30816090766343684, - "total_direct": 0.367878124765081 + "total_direct": 0.36787812476508114 } } } @@ -48,13 +48,13 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.5752542511032683, + "diffuse_diffuse": 0.5752542511032664, "direct_diffuse": 0.5231921863804777, "direct_direct": 0.004073699455549178, "direct_hemispherical": 0.5272658858360268 }, "transmittance": { - "diffuse_diffuse": 0.06742699845424788, + "diffuse_diffuse": 0.06742699845424775, "direct_diffuse": 0.05579129370969412, "direct_direct": 0.03897071926640155, "direct_hemispherical": 0.09476201297609567 diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/tdw.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/tdw.json index e9ff953d..4e85e4dd 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/tdw.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/tdw.json @@ -5,9 +5,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.01018030348715849, + "heat_diffuse": 0.010180303487158494, "heat_direct": 0.01393579233003476, - "total_diffuse": 0.01018030348715849, + "total_diffuse": 0.010180303487158494, "total_direct": 0.01393579233003476 } }, @@ -27,9 +27,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.33165294255573285, + "heat_diffuse": 0.33165294255573274, "heat_direct": 0.3527393739705654, - "total_diffuse": 0.33165294255573285, + "total_diffuse": 0.33165294255573274, "total_direct": 0.3527393739705654 } }, @@ -38,9 +38,9 @@ "electricity_diffuse": 0.0, "electricity_direct": 0.0, "heat_diffuse": 0.307757423828105, - "heat_direct": 0.3653917153007675, + "heat_direct": 0.36539171530076753, "total_diffuse": 0.307757423828105, - "total_direct": 0.3653917153007675 + "total_direct": 0.36539171530076753 } } } @@ -48,13 +48,13 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.6050557585010297, + "diffuse_diffuse": 0.605055758501034, "direct_diffuse": 0.5530924235771432, "direct_direct": 0.00431459280317131, "direct_hemispherical": 0.5574070163803144 }, "transmittance": { - "diffuse_diffuse": 0.05311099545603435, + "diffuse_diffuse": 0.053110995456034864, "direct_diffuse": 0.03759380013727675, "direct_direct": 0.03832401718180949, "direct_hemispherical": 0.07591781731908624 @@ -68,7 +68,7 @@ "direct_hemispherical": 0.42746031658153877 }, "transmittance": { - "diffuse_diffuse": 0.0693232898980832, + "diffuse_diffuse": 0.06932328989808322, "direct_diffuse": 0.042989350127712954, "direct_direct": 0.03832432882275128, "direct_hemispherical": 0.08131367895046424 diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 9afbe184..f1d05db4 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.4036831954684875, - "U": 3.7215669526687867, + "SHGC": 0.40368319547340115, + "U": 3.721566952415843, "gap_layer_effective_conductivities_shgc": [ - 0.08213181540978842 + 0.08213181540977786 ], "gap_layer_effective_conductivities_u": [ - 0.09599999216177824 + 0.09599999216191007 ], "layer_temperatures_shgc": [ - 311.33025012154644, - 311.5580193783339, - 320.0128394607235, - 319.69179089900746 + 311.3302501215479, + 311.5580193783355, + 320.0128394607264, + 319.69179089901024 ], "layer_temperatures_u": [ - 303.6887181623537, - 303.59797147088284, - 300.11549987958034, - 299.98386316406305 + 303.68871816235264, + 303.59797147088176, + 300.115499879577, + 299.9838631640597 ], - "relative_heat_gain": 321.69370815868257, + "relative_heat_gain": 321.6937081588844, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.177342785035202 + 0.17734278503520146 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17378016005376953 + 0.17378016005377203 ], - "system_effective_conductivity_shgc": 0.4025187520799877, - "system_effective_conductivity_u": 0.10341153154083921 + "system_effective_conductivity_shgc": 0.4025187520779878, + "system_effective_conductivity_u": 0.10341153153561992 } diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index 74571849..3713979e 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 4.667785945279265, + "U": 4.66778594546494, "gap_layer_effective_conductivities_shgc": [ - 0.08232989929135476 + 0.08232989929134857 ], "gap_layer_effective_conductivities_u": [ - 0.08232989929151104 + 0.08232989929140078 ], "layer_temperatures_shgc": [ 261.36693342644037, - 261.92180249508516, - 282.92489149820017, - 283.44471121028107 + 261.9218024950851, + 282.92489149820193, + 283.4447112102829 ], "layer_temperatures_u": [ - 261.36693342644776, - 261.9218024950931, - 282.9248914982355, - 283.44471121031603 + 261.3669334264431, + 261.92180249508806, + 282.9248914982122, + 283.44471121029306 ], - "relative_heat_gain": 36.31537465696281, + "relative_heat_gain": 36.315374657303515, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.17365348770675243 + 0.17365348770675207 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17365348770667238 + 0.17365348770672842 ], - "system_effective_conductivity_shgc": 0.06847686219885694, - "system_effective_conductivity_u": 0.0684768621966354 + "system_effective_conductivity_shgc": 0.06847686219886846, + "system_effective_conductivity_u": 0.06847686219771058 } diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/tkr.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/tkr.json index 01b64fc6..cf9077c9 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/tkr.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/tkr.json @@ -27,9 +27,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.3366184303895995, + "heat_diffuse": 0.3366184303895994, "heat_direct": 0.3563558995433499, - "total_diffuse": 0.3366184303895995, + "total_diffuse": 0.3366184303895994, "total_direct": 0.3563558995433499 } }, @@ -37,9 +37,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.2515421469120603, + "heat_diffuse": 0.25154214691206034, "heat_direct": 0.2993029139846983, - "total_diffuse": 0.2515421469120603, + "total_diffuse": 0.25154214691206034, "total_direct": 0.2993029139846983 } } @@ -48,13 +48,13 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.5949540822794804, + "diffuse_diffuse": 0.5949540822794889, "direct_diffuse": 0.5429443393699818, "direct_direct": 0.004226489065139937, "direct_hemispherical": 0.5471708284351217 }, "transmittance": { - "diffuse_diffuse": 0.04341622792114068, + "diffuse_diffuse": 0.04341622792114079, "direct_diffuse": 0.030723394287765125, "direct_direct": 0.03139939922355781, "direct_hemispherical": 0.06212279351132294 diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/tuv.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/tuv.json index f38d8cea..769d008a 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/tuv.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/tuv.json @@ -5,9 +5,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.03226371362542844, + "heat_diffuse": 0.032263713625428445, "heat_direct": 0.04432525499730358, - "total_diffuse": 0.03226371362542844, + "total_diffuse": 0.032263713625428445, "total_direct": 0.04432525499730358 } }, @@ -38,9 +38,9 @@ "electricity_diffuse": 0.0, "electricity_direct": 0.0, "heat_diffuse": 0.22365460841445137, - "heat_direct": 0.2667057076241177, + "heat_direct": 0.26670570762411777, "total_diffuse": 0.22365460841445137, - "total_direct": 0.2667057076241177 + "total_direct": 0.26670570762411777 } } } @@ -48,13 +48,13 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.5901702389608201, + "diffuse_diffuse": 0.5901702389608191, "direct_diffuse": 0.5381383936921782, "direct_direct": 0.004183941279219474, "direct_hemispherical": 0.5423223349713977 }, "transmittance": { - "diffuse_diffuse": 0.038612772514032515, + "diffuse_diffuse": 0.038612772514032084, "direct_diffuse": 0.027309526378185196, "direct_direct": 0.02799511172753318, "direct_hemispherical": 0.055304638105718375 diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/photopic.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/photopic.json index e5a03fb6..6a56cf96 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/photopic.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/photopic.json @@ -27,9 +27,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.3289496565616707, + "heat_diffuse": 0.32894965656167074, "heat_direct": 0.3502898094227363, - "total_diffuse": 0.3289496565616707, + "total_diffuse": 0.32894965656167074, "total_direct": 0.3502898094227363 } }, @@ -48,13 +48,13 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.6105203562627234, + "diffuse_diffuse": 0.6105203562627122, "direct_diffuse": 0.5565705975408547, "direct_direct": 0.004457632452205886, "direct_hemispherical": 0.5610282299930606 }, "transmittance": { - "diffuse_diffuse": 0.059098877104108966, + "diffuse_diffuse": 0.05909887710410954, "direct_diffuse": 0.0423870411615573, "direct_direct": 0.04433486396073028, "direct_hemispherical": 0.08672190512228758 diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/solar.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/solar.json index f9fd6b24..4b8e7bb0 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/solar.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/solar.json @@ -27,9 +27,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.3453967413026308, + "heat_diffuse": 0.3453967413026307, "heat_direct": 0.3626938107695406, - "total_diffuse": 0.3453967413026308, + "total_diffuse": 0.3453967413026307, "total_direct": 0.3626938107695406 } }, @@ -37,10 +37,10 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.3094105383267405, - "heat_direct": 0.36976848508591137, - "total_diffuse": 0.3094105383267405, - "total_direct": 0.36976848508591137 + "heat_diffuse": 0.30941053832674054, + "heat_direct": 0.36976848508591154, + "total_diffuse": 0.30941053832674054, + "total_direct": 0.36976848508591154 } } } @@ -48,13 +48,13 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.5784435102946182, + "diffuse_diffuse": 0.5784435102946174, "direct_diffuse": 0.5243711032903863, "direct_direct": 0.00418702834070976, "direct_hemispherical": 0.528558131631096 }, "transmittance": { - "diffuse_diffuse": 0.06634586534084481, + "diffuse_diffuse": 0.0663458653408441, "direct_diffuse": 0.0549046515472381, "direct_direct": 0.04057167642560612, "direct_hemispherical": 0.09547632797284422 diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/tdw.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/tdw.json index 658d3cef..496d9b53 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/tdw.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/tdw.json @@ -5,9 +5,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.007713626386272053, + "heat_diffuse": 0.007713626386272051, "heat_direct": 0.010578044669999209, - "total_diffuse": 0.007713626386272053, + "total_diffuse": 0.007713626386272051, "total_direct": 0.010578044669999209 } }, @@ -38,9 +38,9 @@ "electricity_diffuse": 0.0, "electricity_direct": 0.0, "heat_diffuse": 0.31804316307756547, - "heat_direct": 0.3781566701208331, + "heat_direct": 0.3781566701208329, "total_diffuse": 0.31804316307756547, - "total_direct": 0.3781566701208331 + "total_direct": 0.3781566701208329 } } } @@ -48,13 +48,13 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.5970667291067332, + "diffuse_diffuse": 0.59706672910674, "direct_diffuse": 0.5430689317871541, "direct_direct": 0.004349958713541918, "direct_hemispherical": 0.547418890500696 }, "transmittance": { - "diffuse_diffuse": 0.05929739131769353, + "diffuse_diffuse": 0.05929739131769234, "direct_diffuse": 0.045088143682011236, "direct_direct": 0.04131445588090513, "direct_hemispherical": 0.08640259956291636 diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 6ad5f6cd..504cbe60 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.4044756997448938, - "U": 3.7215669527046105, + "SHGC": 0.40447569974780156, + "U": 3.7215669527056905, "gap_layer_effective_conductivities_shgc": [ - 0.08238159271337406 + 0.0823815927133878 ], "gap_layer_effective_conductivities_u": [ - 0.09599999216178833 + 0.0959999921617648 ], "layer_temperatures_shgc": [ - 311.2622746265601, - 311.48940269796464, - 320.06871072321485, - 319.7489138819555 + 311.26227462656004, + 311.4894026979646, + 320.0687107232132, + 319.74891388195385 ], "layer_temperatures_u": [ - 303.68871816235236, - 303.5979714708814, - 300.1154998795774, - 299.98386316406015 + 303.68871816235423, + 303.5979714708834, + 300.1154998795796, + 299.98386316406226 ], - "relative_heat_gain": 322.26841039530217, + "relative_heat_gain": 322.26841039547685, "solid_layer_effective_conductivities_shgc": [ - 0.9999999999999999, - 0.17735526698948695 + 1.0, + 0.1773552669894795 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17378016005379793 + 0.17378016005379646 ], - "system_effective_conductivity_shgc": 0.39761567839432244, - "system_effective_conductivity_u": 0.10341153154082096 + "system_effective_conductivity_shgc": 0.3976156783930549, + "system_effective_conductivity_u": 0.10341153154072101 } diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index a5d757bc..c03dc784 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 4.6677859457003414, + "U": 4.667785945694922, "gap_layer_effective_conductivities_shgc": [ - 0.08232989929134622 + 0.0823298992913517 ], "gap_layer_effective_conductivities_u": [ - 0.0823298992913476 + 0.08232989929134749 ], "layer_temperatures_shgc": [ - 261.36693342643997, - 261.9218024950847, - 282.92489149820267, - 283.4447112102835 + 261.3669334264398, + 261.92180249508453, + 282.9248914982012, + 283.44471121028204 ], "layer_temperatures_u": [ 261.36693342643997, 261.92180249508465, - 282.92489149820005, - 283.44471121028096 + 282.92489149819966, + 283.4447112102806 ], - "relative_heat_gain": 36.315374657502716, + "relative_heat_gain": 36.31537465749535, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.1736534877067525 + 0.17365348770675582 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17365348770675584 + 0.17365348770675268 ], - "system_effective_conductivity_shgc": 0.06847686219881552, - "system_effective_conductivity_u": 0.06847686219884314 + "system_effective_conductivity_shgc": 0.0684768621988141, + "system_effective_conductivity_u": 0.06847686219882514 } diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/tkr.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/tkr.json index fb8ad64b..97b20b68 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/tkr.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/tkr.json @@ -27,9 +27,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.34651293079420364, + "heat_diffuse": 0.34651293079420353, "heat_direct": 0.3635687100564878, - "total_diffuse": 0.34651293079420364, + "total_diffuse": 0.34651293079420353, "total_direct": 0.3635687100564878 } }, @@ -38,9 +38,9 @@ "electricity_diffuse": 0.0, "electricity_direct": 0.0, "heat_diffuse": 0.27012502358606244, - "heat_direct": 0.3239422860792517, + "heat_direct": 0.32394228607925163, "total_diffuse": 0.27012502358606244, - "total_direct": 0.3239422860792517 + "total_direct": 0.32394228607925163 } } } @@ -48,13 +48,13 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.5762984613853933, + "diffuse_diffuse": 0.5762984613853944, "direct_diffuse": 0.5222183555325289, "direct_direct": 0.004174830612686113, "direct_hemispherical": 0.526393186145215 }, "transmittance": { - "diffuse_diffuse": 0.05672430913698706, + "diffuse_diffuse": 0.05672430913698701, "direct_diffuse": 0.046468553877107084, "direct_direct": 0.03544732633500473, "direct_hemispherical": 0.08191588021211181 diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/tuv.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/tuv.json index 024288fa..f9765cd5 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/tuv.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/tuv.json @@ -5,9 +5,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.022506716343658622, + "heat_diffuse": 0.022506716343658625, "heat_direct": 0.030793452247634544, - "total_diffuse": 0.022506716343658622, + "total_diffuse": 0.022506716343658625, "total_direct": 0.030793452247634544 } }, @@ -48,13 +48,13 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.5540314400155384, + "diffuse_diffuse": 0.5540314400155356, "direct_diffuse": 0.49988481597006273, "direct_direct": 0.003997660044806709, "direct_hemispherical": 0.5038824760148695 }, "transmittance": { - "diffuse_diffuse": 0.0652339802529595, + "diffuse_diffuse": 0.06523398025295904, "direct_diffuse": 0.058372159750445976, "direct_direct": 0.0343970953774059, "direct_hemispherical": 0.09276925512785188 diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/photopic.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/photopic.json index 0ae9f885..c5da7ed6 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/photopic.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/photopic.json @@ -27,9 +27,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.3289496565616707, + "heat_diffuse": 0.32894965656167074, "heat_direct": 0.3507518477897034, - "total_diffuse": 0.3289496565616707, + "total_diffuse": 0.32894965656167074, "total_direct": 0.3507518477897034 } }, @@ -48,13 +48,13 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.6105203562627234, + "diffuse_diffuse": 0.6105203562627122, "direct_diffuse": 0.5585812324104067, "direct_direct": 0.004359944457475271, "direct_hemispherical": 0.5629411768678819 }, "transmittance": { - "diffuse_diffuse": 0.059098877104108966, + "diffuse_diffuse": 0.05909887710410954, "direct_diffuse": 0.041821563338788885, "direct_direct": 0.04256964252429419, "direct_hemispherical": 0.08439120586308307 diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/solar.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/solar.json index 360fc02b..253d002b 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/solar.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/solar.json @@ -27,9 +27,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.3453967413026308, + "heat_diffuse": 0.3453967413026307, "heat_direct": 0.3630527870045688, - "total_diffuse": 0.3453967413026308, + "total_diffuse": 0.3453967413026307, "total_direct": 0.3630527870045688 } }, @@ -37,9 +37,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.3094105383267405, + "heat_diffuse": 0.30941053832674054, "heat_direct": 0.3695180871298164, - "total_diffuse": 0.3094105383267405, + "total_diffuse": 0.30941053832674054, "total_direct": 0.3695180871298164 } } @@ -48,13 +48,13 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.5784435102946182, + "diffuse_diffuse": 0.5784435102946174, "direct_diffuse": 0.5263922399439291, "direct_direct": 0.004098354829845468, "direct_hemispherical": 0.5304905947737746 }, "transmittance": { - "diffuse_diffuse": 0.06634586534084481, + "diffuse_diffuse": 0.0663458653408441, "direct_diffuse": 0.05427038047369025, "direct_direct": 0.03912551746964153, "direct_hemispherical": 0.09339589794333178 diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/tdw.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/tdw.json index a1893c7e..71f7377a 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/tdw.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/tdw.json @@ -5,9 +5,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.007713626386272053, + "heat_diffuse": 0.007713626386272051, "heat_direct": 0.010400176505663265, - "total_diffuse": 0.007713626386272053, + "total_diffuse": 0.007713626386272051, "total_direct": 0.010400176505663265 } }, @@ -38,9 +38,9 @@ "electricity_diffuse": 0.0, "electricity_direct": 0.0, "heat_diffuse": 0.31804316307756547, - "heat_direct": 0.37804568146813355, + "heat_direct": 0.3780456814681336, "total_diffuse": 0.31804316307756547, - "total_direct": 0.37804568146813355 + "total_direct": 0.3780456814681336 } } } @@ -48,13 +48,13 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.5970667291067332, + "diffuse_diffuse": 0.59706672910674, "direct_diffuse": 0.545083538862679, "direct_direct": 0.0042556296913538565, "direct_hemispherical": 0.5493391685540329 }, "transmittance": { - "diffuse_diffuse": 0.05929739131769353, + "diffuse_diffuse": 0.05929739131769234, "direct_diffuse": 0.044519211027151076, "direct_direct": 0.039724790731848356, "direct_hemispherical": 0.08424400175899943 diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 261a40cf..0aed513e 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.4028225937738277, - "U": 3.7215669527046105, + "SHGC": 0.40282259377675544, + "U": 3.7215669527056905, "gap_layer_effective_conductivities_shgc": [ - 0.08233732149092 + 0.08233732149091252 ], "gap_layer_effective_conductivities_u": [ - 0.09599999216178833 + 0.0959999921617648 ], "layer_temperatures_shgc": [ - 311.2793214440544, - 311.50670007019056, - 320.06394796537745, - 319.7438171687199 + 311.27932144405463, + 311.50670007019073, + 320.06394796537955, + 319.74381716872193 ], "layer_temperatures_u": [ - 303.68871816235236, - 303.5979714708814, - 300.1154998795774, - 299.98386316406015 + 303.68871816235423, + 303.5979714708834, + 300.1154998795796, + 299.98386316406226 ], - "relative_heat_gain": 321.0696235479984, + "relative_heat_gain": 321.0696235481835, "solid_layer_effective_conductivities_shgc": [ - 1.0, - 0.17735327139434828 + 0.9999999999999999, + 0.17735327139434878 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17378016005379793 + 0.17378016005379646 ], - "system_effective_conductivity_shgc": 0.3985778218013885, - "system_effective_conductivity_u": 0.10341153154082096 + "system_effective_conductivity_shgc": 0.3985778217999976, + "system_effective_conductivity_u": 0.10341153154072101 } diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index a5d757bc..c03dc784 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 4.6677859457003414, + "U": 4.667785945694922, "gap_layer_effective_conductivities_shgc": [ - 0.08232989929134622 + 0.0823298992913517 ], "gap_layer_effective_conductivities_u": [ - 0.0823298992913476 + 0.08232989929134749 ], "layer_temperatures_shgc": [ - 261.36693342643997, - 261.9218024950847, - 282.92489149820267, - 283.4447112102835 + 261.3669334264398, + 261.92180249508453, + 282.9248914982012, + 283.44471121028204 ], "layer_temperatures_u": [ 261.36693342643997, 261.92180249508465, - 282.92489149820005, - 283.44471121028096 + 282.92489149819966, + 283.4447112102806 ], - "relative_heat_gain": 36.315374657502716, + "relative_heat_gain": 36.31537465749535, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.1736534877067525 + 0.17365348770675582 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17365348770675584 + 0.17365348770675268 ], - "system_effective_conductivity_shgc": 0.06847686219881552, - "system_effective_conductivity_u": 0.06847686219884314 + "system_effective_conductivity_shgc": 0.0684768621988141, + "system_effective_conductivity_u": 0.06847686219882514 } diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/tkr.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/tkr.json index afc45f02..70e62bb7 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/tkr.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/tkr.json @@ -27,9 +27,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.34651293079420364, + "heat_diffuse": 0.34651293079420353, "heat_direct": 0.36391867942370487, - "total_diffuse": 0.34651293079420364, + "total_diffuse": 0.34651293079420353, "total_direct": 0.36391867942370487 } }, @@ -48,13 +48,13 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.5762984613853933, + "diffuse_diffuse": 0.5762984613853944, "direct_diffuse": 0.5242399897411457, "direct_direct": 0.004086313319724614, "direct_hemispherical": 0.5283263030608704 }, "transmittance": { - "diffuse_diffuse": 0.05672430913698706, + "diffuse_diffuse": 0.05672430913698701, "direct_diffuse": 0.04592408567337036, "direct_direct": 0.03415904822586292, "direct_hemispherical": 0.08008313389923329 diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/tuv.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/tuv.json index 5f86a9d2..124b447f 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/tuv.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/tuv.json @@ -5,9 +5,9 @@ "absorptance": { "electricity_diffuse": 0.0, "electricity_direct": 0.0, - "heat_diffuse": 0.022506716343658622, + "heat_diffuse": 0.022506716343658625, "heat_direct": 0.030313294892149012, - "total_diffuse": 0.022506716343658622, + "total_diffuse": 0.022506716343658625, "total_direct": 0.030313294892149012 } }, @@ -48,13 +48,13 @@ "system_results": { "back": { "reflectance": { - "diffuse_diffuse": 0.5540314400155384, + "diffuse_diffuse": 0.5540314400155356, "direct_diffuse": 0.5019121965996551, "direct_direct": 0.003914810900624502, "direct_hemispherical": 0.5058270075002796 }, "transmittance": { - "diffuse_diffuse": 0.0652339802529595, + "diffuse_diffuse": 0.06523398025295904, "direct_diffuse": 0.057744439917009595, "direct_direct": 0.033287550399526834, "direct_hemispherical": 0.09103199031653643 diff --git a/test/main.cpp b/test/main.cpp index 5d2bebe8..63f0c4fb 100644 --- a/test/main.cpp +++ b/test/main.cpp @@ -12,7 +12,7 @@ int main( int argc, char* argv[] ) { #endif ::testing::InitGoogleTest( &argc, argv ); test_dir = argv[1]; - update_results = false; + update_results = true; return RUN_ALL_TESTS(); } From a7711381f69bce769bd87676bd63631cf64583fb Mon Sep 17 00:00:00 2001 From: Simon Vidanovic Date: Wed, 12 Jun 2024 12:54:03 -0700 Subject: [PATCH 09/19] Update results flag to false. --- test/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/main.cpp b/test/main.cpp index 63f0c4fb..5d2bebe8 100644 --- a/test/main.cpp +++ b/test/main.cpp @@ -12,7 +12,7 @@ int main( int argc, char* argv[] ) { #endif ::testing::InitGoogleTest( &argc, argv ); test_dir = argv[1]; - update_results = true; + update_results = false; return RUN_ALL_TESTS(); } From efcd78e573c6ff4841c55c7de3571412a9d1eec4 Mon Sep 17 00:00:00 2001 From: Simon Vidanovic Date: Wed, 12 Jun 2024 14:23:29 -0700 Subject: [PATCH 10/19] Variables for effective front opening and thicknesses added. --- CMakeLists-Windows-CalcEngine.txt.in | 2 +- src/create_wce_objects.cpp | 18 ++++++++++-------- src/product_data.cpp | 6 +----- src/product_data.h | 4 +--- 4 files changed, 13 insertions(+), 17 deletions(-) diff --git a/CMakeLists-Windows-CalcEngine.txt.in b/CMakeLists-Windows-CalcEngine.txt.in index 11261243..90e47397 100644 --- a/CMakeLists-Windows-CalcEngine.txt.in +++ b/CMakeLists-Windows-CalcEngine.txt.in @@ -4,7 +4,7 @@ include(ExternalProject) ExternalProject_Add(Windows-CalcEngine GIT_REPOSITORY https://github.com/LBNL-ETA/Windows-CalcEngine.git - GIT_TAG "VacuumDec2023" + GIT_TAG "VariableAirflowCoefficients" UPDATE_COMMAND "" PATCH_COMMAND "" diff --git a/src/create_wce_objects.cpp b/src/create_wce_objects.cpp index d89f87aa..c3b41d65 100644 --- a/src/create_wce_objects.cpp +++ b/src/create_wce_objects.cpp @@ -1078,16 +1078,18 @@ namespace wincalc layer.thermal_data->opening_bottom, layer.thermal_data->opening_left, layer.thermal_data->opening_right); + + //! If effective thickness and openness are provided, use them instead of the calculated values auto effective_openness = effective_thermal_values->getEffectiveOpenness(); - //if(layer.thermal_data->effective_openness.has_value()) - //{ - // effective_openness.Ah = layer.thermal_data->effective_openness.value(); - //} - //auto effective_thickness = layer.thermal_data->effective_thickness.has_value() - // ? layer.thermal_data->effective_thickness.value() - // : effective_thermal_values->effectiveThickness(); + if(layer.thermal_data->effective_openness.has_value()) + { + effective_openness.Ah = layer.thermal_data->effective_openness.value(); + } + auto effective_thickness = layer.thermal_data->effective_thickness.has_value() + ? layer.thermal_data->effective_thickness.value() + : effective_thermal_values->effectiveThickness(); auto tarcog_layer = - Tarcog::ISO15099::Layers::shading(effective_thermal_values->effectiveThickness(), + Tarcog::ISO15099::Layers::shading(effective_thickness, layer.thermal_data->conductivity.value(), effective_openness, ir_results.emissivity_front_hemispheric, diff --git a/src/product_data.cpp b/src/product_data.cpp index 6281b6fd..dc7d87a1 100644 --- a/src/product_data.cpp +++ b/src/product_data.cpp @@ -89,17 +89,13 @@ namespace wincalc double opening_top, double opening_bottom, double opening_left, - double opening_right, - std::optional effective_openness, - std::optional effective_thickness) : + double opening_right) : Flippable_Solid_Layer(thickness_meters, flipped), conductivity(conductivity), opening_top(opening_top), opening_bottom(opening_bottom), opening_left(opening_left), opening_right(opening_right), - effective_openness(effective_openness), - effective_thickness(effective_thickness), youngs_modulus(Tarcog::DeflectionConstants::YOUNGSMODULUS), density(Tarcog::MaterialConstants::GLASSDENSITY) {} diff --git a/src/product_data.h b/src/product_data.h index 775bcf13..f06ff758 100644 --- a/src/product_data.h +++ b/src/product_data.h @@ -24,9 +24,7 @@ namespace wincalc double opening_top = 0, double opening_bottom = 0, double opening_left = 0, - double opening_right = 0, - std::optional effective_openness = std::nullopt, - std::optional effective_thickness = std::nullopt); + double opening_right = 0); std::optional conductivity; double opening_top; From fd0e79b1ae45459df82560aa5d60c14423df2d1d Mon Sep 17 00:00:00 2001 From: Simon Vidanovic Date: Wed, 12 Jun 2024 15:09:30 -0700 Subject: [PATCH 11/19] Front openness renamed. --- src/product_data.cpp | 47 +++++++++++++++++++++----------------------- 1 file changed, 22 insertions(+), 25 deletions(-) diff --git a/src/product_data.cpp b/src/product_data.cpp index dc7d87a1..ee123642 100644 --- a/src/product_data.cpp +++ b/src/product_data.cpp @@ -82,14 +82,13 @@ namespace wincalc thickness_meters(thickness_meters), flipped(flipped) {} - Product_Data_Thermal::Product_Data_Thermal( - std::optional conductivity, - double thickness_meters, - bool flipped, - double opening_top, - double opening_bottom, - double opening_left, - double opening_right) : + Product_Data_Thermal::Product_Data_Thermal(std::optional conductivity, + double thickness_meters, + bool flipped, + double opening_top, + double opening_bottom, + double opening_left, + double opening_right) : Flippable_Solid_Layer(thickness_meters, flipped), conductivity(conductivity), opening_top(opening_top), @@ -137,11 +136,11 @@ namespace wincalc double gap_width_right) const { double front_openness = - ThermalPermeability::Venetian::openness(geometry.slat_tilt, - geometry.slat_spacing, - material_optical_data->thickness_meters, - geometry.slat_curvature, - geometry.slat_width); + ThermalPermeability::Venetian::frontOpenness(geometry.slat_tilt, + geometry.slat_spacing, + material_optical_data->thickness_meters, + geometry.slat_curvature, + geometry.slat_width); EffectiveLayers::ShadeOpenness openness{ front_openness, gap_width_left, gap_width_right, gap_width_top, gap_width_bottom}; @@ -169,8 +168,8 @@ namespace wincalc double gap_width_left, double gap_width_right) const { - double front_openness = - ThermalPermeability::Woven::openness(geometry.thread_diameter, geometry.thread_spacing); + double front_openness = ThermalPermeability::Woven::frontOpenness(geometry.thread_diameter, + geometry.thread_spacing); EffectiveLayers::ShadeOpenness openness{ front_openness, gap_width_left, gap_width_right, gap_width_top, gap_width_bottom}; @@ -200,19 +199,17 @@ namespace wincalc { std::map> front_openness_calcs; front_openness_calcs[Perforated_Geometry::Type::CIRCULAR] = [=]() { - auto cell_dimension = - ThermalPermeability::Perforated::diameterToXYDimension(geometry.dimension_x * 2); - return ThermalPermeability::Perforated::openness( - ThermalPermeability::Perforated::Geometry::Circular, + return ThermalPermeability::Perforated::frontOpenness( + ThermalPermeability::Perforated::Type::Circular, geometry.spacing_x, geometry.spacing_y, - cell_dimension.x, - cell_dimension.y); + geometry.dimension_x * 2, + geometry.dimension_x * 2); }; front_openness_calcs[Perforated_Geometry::Type::RECTANGULAR] = [=]() { - return ThermalPermeability::Perforated::openness( - ThermalPermeability::Perforated::Geometry::Rectangular, + return ThermalPermeability::Perforated::frontOpenness( + ThermalPermeability::Perforated::Type::Rectangular, geometry.spacing_x, geometry.spacing_y, geometry.dimension_x, @@ -220,8 +217,8 @@ namespace wincalc }; front_openness_calcs[Perforated_Geometry::Type::SQUARE] = [=]() { - return ThermalPermeability::Perforated::openness( - ThermalPermeability::Perforated::Geometry::Square, + return ThermalPermeability::Perforated::frontOpenness( + ThermalPermeability::Perforated::Type::Square, geometry.spacing_x, geometry.spacing_y, geometry.dimension_x, From f048880b89ca8a20370cfec208870cb4686bb6dd Mon Sep 17 00:00:00 2001 From: Simon Vidanovic Date: Thu, 13 Jun 2024 12:57:46 -0700 Subject: [PATCH 12/19] BSDF XML layer now have options to pass custom permeability factor that will be used in thermal airflow calculations. --- src/create_wce_objects.cpp | 13 ++----------- src/product_data.cpp | 23 +++++++++++++++++------ src/product_data.h | 15 ++++++--------- test/bsdf_xml_thermal_openness.unit.cpp | 1 + 4 files changed, 26 insertions(+), 26 deletions(-) diff --git a/src/create_wce_objects.cpp b/src/create_wce_objects.cpp index c3b41d65..578955eb 100644 --- a/src/create_wce_objects.cpp +++ b/src/create_wce_objects.cpp @@ -1079,19 +1079,10 @@ namespace wincalc layer.thermal_data->opening_left, layer.thermal_data->opening_right); - //! If effective thickness and openness are provided, use them instead of the calculated values - auto effective_openness = effective_thermal_values->getEffectiveOpenness(); - if(layer.thermal_data->effective_openness.has_value()) - { - effective_openness.Ah = layer.thermal_data->effective_openness.value(); - } - auto effective_thickness = layer.thermal_data->effective_thickness.has_value() - ? layer.thermal_data->effective_thickness.value() - : effective_thermal_values->effectiveThickness(); auto tarcog_layer = - Tarcog::ISO15099::Layers::shading(effective_thickness, + Tarcog::ISO15099::Layers::shading(effective_thermal_values->effectiveThickness(), layer.thermal_data->conductivity.value(), - effective_openness, + effective_thermal_values->getEffectiveOpenness(), ir_results.emissivity_front_hemispheric, ir_results.transmittance_front_diffuse_diffuse, ir_results.emissivity_back_hemispheric, diff --git a/src/product_data.cpp b/src/product_data.cpp index ee123642..b26a8613 100644 --- a/src/product_data.cpp +++ b/src/product_data.cpp @@ -88,13 +88,15 @@ namespace wincalc double opening_top, double opening_bottom, double opening_left, - double opening_right) : + double opening_right, + double opening_front) : Flippable_Solid_Layer(thickness_meters, flipped), conductivity(conductivity), opening_top(opening_top), opening_bottom(opening_bottom), opening_left(opening_left), opening_right(opening_right), + opening_front(opening_front), youngs_modulus(Tarcog::DeflectionConstants::YOUNGSMODULUS), density(Tarcog::MaterialConstants::GLASSDENSITY) {} @@ -261,7 +263,8 @@ namespace wincalc std::optional emissivity_front, std::optional emissivity_back, double permeability_factor, - bool flipped) : + bool flipped, + bool user_defined_effective_values) : Product_Data_Dual_Band_Optical(thickness_meteres, ir_transmittance_front, ir_transmittance_back, @@ -277,7 +280,8 @@ namespace wincalc tf_visible(tf_visible), tb_visible(tb_visible), rf_visible(rf_visible), - rb_visible(rb_visible) + rb_visible(rb_visible), + user_defined_effective_values(user_defined_effective_values) {} std::unique_ptr @@ -290,9 +294,16 @@ namespace wincalc { EffectiveLayers::ShadeOpenness openness{ permeability_factor, gap_width_left, gap_width_right, gap_width_top, gap_width_bottom}; - - return std::make_unique( - width, height, thickness_meters, openness); + if(user_defined_effective_values) + { + return std::make_unique( + width, height, thickness_meters, openness); + } + else + { + return std::make_unique( + width, height, thickness_meters, openness); + } } Product_Data_Dual_Band_Optical_Hemispheric::Product_Data_Dual_Band_Optical_Hemispheric( diff --git a/src/product_data.h b/src/product_data.h index f06ff758..6217727e 100644 --- a/src/product_data.h +++ b/src/product_data.h @@ -24,19 +24,15 @@ namespace wincalc double opening_top = 0, double opening_bottom = 0, double opening_left = 0, - double opening_right = 0); + double opening_right = 0, + double opening_front = 0); std::optional conductivity; double opening_top; double opening_bottom; double opening_left; double opening_right; - //! effective openness and effective thickness are calculated by default and it is not - //! necessary to assign them manually. However, if doing research work with custom shading - //! device, these two can be calculated outside and the effect of the effective values can - //! be monitored by the user. - std::optional effective_openness{std::nullopt}; - std::optional effective_thickness{std::nullopt}; + double opening_front; std::optional youngs_modulus; std::optional density; }; @@ -149,7 +145,8 @@ namespace wincalc std::optional emissivity_front = std::optional(), std::optional emissivity_back = std::optional(), double permeability_factor = 0, - bool flipped = false); + bool flipped = false, + bool user_defined_effective_values = false); SingleLayerOptics::BSDFHemisphere bsdf_hemisphere; @@ -161,7 +158,7 @@ namespace wincalc std::vector> tb_visible; std::vector> rf_visible; std::vector> rb_visible; - + bool user_defined_effective_values; std::unique_ptr effective_thermal_values(double width, double height, diff --git a/test/bsdf_xml_thermal_openness.unit.cpp b/test/bsdf_xml_thermal_openness.unit.cpp index 0c7288a3..27a19855 100644 --- a/test/bsdf_xml_thermal_openness.unit.cpp +++ b/test/bsdf_xml_thermal_openness.unit.cpp @@ -42,6 +42,7 @@ class TestBSDFThermalOpenness : public testing::Test converted_shade.thermal_data->opening_bottom = 0.01; converted_shade.thermal_data->opening_left = 0; converted_shade.thermal_data->opening_right = 0; + products.push_back(clear_3); products.push_back(converted_shade); From f2040f82be1521f54f9809f8a795129c3f93e42d Mon Sep 17 00:00:00 2001 From: Simon Vidanovic Date: Thu, 13 Jun 2024 14:00:12 -0700 Subject: [PATCH 13/19] User defined openness test added. --- test/CMakeLists.txt | 3 +- ...xml_thermal_user_defined_openness.unit.cpp | 92 +++++++++++++++++++ .../thermal_SHGC_Environment.json | 33 +++++++ .../theta=0_phi=0/thermal_U_Environment.json | 33 +++++++ .../thermal_SHGC_Environment.json | 33 +++++++ .../thermal_U_Environment.json | 33 +++++++ .../thermal_SHGC_Environment.json | 33 +++++++ .../theta=0_phi=0/thermal_U_Environment.json | 33 +++++++ .../thermal_SHGC_Environment.json | 33 +++++++ .../thermal_U_Environment.json | 33 +++++++ 10 files changed, 358 insertions(+), 1 deletion(-) create mode 100644 test/bsdf_xml_thermal_user_defined_openness.unit.cpp create mode 100644 test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json create mode 100644 test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json create mode 100644 test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json create mode 100644 test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json create mode 100644 test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json create mode 100644 test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_U_Environment.json create mode 100644 test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json create mode 100644 test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_U_Environment.json diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 59d2911a..8805c7b6 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -28,6 +28,7 @@ add_subdirectory(${CMAKE_CURRENT_BINARY_DIR}/googletest-src EXCLUDE_FROM_ALL) add_executable(${PROJECT_TEST_NAME} + bsdf_xml_thermal_user_defined_openness.unit.cpp nfrc_102_nfrc_102_forced_ventilation.unit.cpp nfrc_102_nfrc_102_vacuum.unit.cpp deflection_triple_clear.unit.cpp @@ -44,7 +45,7 @@ add_executable(${PROJECT_TEST_NAME} perforated_screen.unit.cpp #double_layer_perfect_clear_exterior_interior_xml_with_thermal_openings_10mm_all_sides.unit.cpp #double_layer_interior_xml_with_thermal_openings_10mm_all_sides.unit.cpp - bsdf_xml_thermal_openness.unit.cpp + bsdf_xml_thermal_openness.unit.cpp CS03_genBSDF.unit.cpp SEATEX_Midnight.unit.cpp nfrc_102_as_bsdf.unit.cpp diff --git a/test/bsdf_xml_thermal_user_defined_openness.unit.cpp b/test/bsdf_xml_thermal_user_defined_openness.unit.cpp new file mode 100644 index 00000000..3d0711b9 --- /dev/null +++ b/test/bsdf_xml_thermal_user_defined_openness.unit.cpp @@ -0,0 +1,92 @@ +#include +#include +#include +#include +#include +#include +#include + +#include "wincalc/wincalc.h" +#include "optical_calcs.h" +#include "util.h" +#include "convert_optics_parser.h" +#include "paths.h" + + +using namespace wincalc; +using namespace window_standards; + +class TestBSDFThermalUserDefinedOpenness : public testing::Test +{ +protected: + std::shared_ptr glazing_system_u; + std::shared_ptr glazing_system_shgc; + + virtual void SetUp() + { + std::filesystem::path clear_3_path(test_dir); + clear_3_path /= "products"; + clear_3_path /= "CLEAR_3.json"; + + std::filesystem::path shade_path(test_dir); + shade_path /= "products"; + shade_path /= "2011-SA1.XML"; + + std::vector> + products; + + auto clear_3 = OpticsParser::parseJSONFile(clear_3_path.string()); + auto shade = OpticsParser::parseBSDFXMLFile(shade_path.string()); + auto converted_shade = wincalc::convert_to_solid_layer(shade); + converted_shade.thermal_data->opening_top = 0.01; + converted_shade.thermal_data->opening_bottom = 0.01; + converted_shade.thermal_data->opening_left = 0; + converted_shade.thermal_data->opening_right = 0; + + std::dynamic_pointer_cast(converted_shade.optical_data) + ->user_defined_effective_values = true; + converted_shade.optical_data->permeability_factor = 0.0789; + converted_shade.optical_data->thickness_meters = 0.0123; + + products.push_back(clear_3); + products.push_back(converted_shade); + + double gap_thickness = 0.0127; + double gap_pressure = Gases::DefaultPressure; + auto air_gap = std::make_shared( + gap_thickness, gap_pressure, Gases::CGas({{1.0, Gases::GasDef::Air}})); + std::vector> gaps; + gaps.push_back(air_gap); + + std::filesystem::path standard_path(test_dir); + standard_path /= "standards"; + standard_path /= "W5_NFRC_2003.std"; + Optical_Standard standard = load_optical_standard(standard_path.string()); + + auto bsdf_hemisphere = + SingleLayerOptics::BSDFHemisphere::create(SingleLayerOptics::BSDFBasis::Full); + + glazing_system_u = std::make_shared( + standard, products, gaps, 1.0, 1.0, 90, nfrc_u_environments(), bsdf_hemisphere); + glazing_system_shgc = std::make_shared( + standard, products, gaps, 1.0, 1.0, 90, nfrc_shgc_environments(), bsdf_hemisphere); + } +}; + +TEST_F(TestBSDFThermalUserDefinedOpenness, Test_Thermal) +{ + test_thermal_results("thermal_user_defined_openings_xml_shade_10mm_top_and_bottom", + "thermal_U_Environment", + glazing_system_u, + update_results); + test_thermal_results("thermal_user_defined_openings_xml_shade_10mm_top_and_bottom", + "thermal_SHGC_Environment", + glazing_system_shgc, + update_results); +} + +TEST_F(TestBSDFThermalUserDefinedOpenness, Test_Optical) +{ + test_optical_results( + "thermal_openings_xml_shade_10mm_top_and_bottom", glazing_system_u, update_results); +} diff --git a/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json new file mode 100644 index 00000000..e15ced9f --- /dev/null +++ b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.40437762227684615, + "U": 3.4274239622306673, + "gap_layer_effective_conductivities_shgc": [ + 0.08468420346526324 + ], + "gap_layer_effective_conductivities_u": [ + 0.09912576819413957 + ], + "layer_temperatures_shgc": [ + 311.46263079424386, + 311.6995946929742, + 321.1585844502313, + 318.30302895170524 + ], + "layer_temperatures_u": [ + 303.80441615673357, + 303.7208418481651, + 300.7440971486443, + 299.430292649702 + ], + "relative_heat_gain": 319.90885485149016, + "solid_layer_effective_conductivities_shgc": [ + 0.9999999999999999, + 0.18750379020281935 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 0.17833587354684924 + ], + "system_effective_conductivity_shgc": 0.7694468233058197, + "system_effective_conductivity_u": 0.12214486262527088 +} diff --git a/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json new file mode 100644 index 00000000..6ebd1582 --- /dev/null +++ b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 4.622712676747116, + "gap_layer_effective_conductivities_shgc": [ + 0.08372775448811047 + ], + "gap_layer_effective_conductivities_u": [ + 0.08372775448821662 + ], + "layer_temperatures_shgc": [ + 261.3071427271341, + 261.85665384601316, + 280.9948925794412, + 285.94191403663365 + ], + "layer_temperatures_u": [ + 261.3071427271388, + 261.8566538460182, + 280.99489257946135, + 285.9419140366521 + ], + "relative_heat_gain": 35.964704626850654, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 0.17916832408263675 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 0.17916832408257702 + ], + "system_effective_conductivity_shgc": 0.08204521913267153, + "system_effective_conductivity_u": 0.08204521913099126 +} diff --git a/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json new file mode 100644 index 00000000..7ac80f74 --- /dev/null +++ b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.4027284534034582, + "U": 3.4274239622306673, + "gap_layer_effective_conductivities_shgc": [ + 0.0846490156821535 + ], + "gap_layer_effective_conductivities_u": [ + 0.09912576819413957 + ], + "layer_temperatures_shgc": [ + 311.47966194030903, + 311.71688215223816, + 321.1550320360719, + 318.29640120760325 + ], + "layer_temperatures_u": [ + 303.80441615673357, + 303.7208418481651, + 300.7440971486443, + 299.430292649702 + ], + "relative_heat_gain": 318.7129230788367, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 0.18749897581660666 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 0.17833587354684924 + ], + "system_effective_conductivity_shgc": 0.7718977198508438, + "system_effective_conductivity_u": 0.12214486262527088 +} diff --git a/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json new file mode 100644 index 00000000..6ebd1582 --- /dev/null +++ b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 4.622712676747116, + "gap_layer_effective_conductivities_shgc": [ + 0.08372775448811047 + ], + "gap_layer_effective_conductivities_u": [ + 0.08372775448821662 + ], + "layer_temperatures_shgc": [ + 261.3071427271341, + 261.85665384601316, + 280.9948925794412, + 285.94191403663365 + ], + "layer_temperatures_u": [ + 261.3071427271388, + 261.8566538460182, + 280.99489257946135, + 285.9419140366521 + ], + "relative_heat_gain": 35.964704626850654, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 0.17916832408263675 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 0.17916832408257702 + ], + "system_effective_conductivity_shgc": 0.08204521913267153, + "system_effective_conductivity_u": 0.08204521913099126 +} diff --git a/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json new file mode 100644 index 00000000..f27494ef --- /dev/null +++ b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.40354147163779697, + "U": 3.4274239624871052, + "gap_layer_effective_conductivities_shgc": [ + 0.08484897735260143 + ], + "gap_layer_effective_conductivities_u": [ + 0.09912576819390809 + ], + "layer_temperatures_shgc": [ + 311.4109395844324, + 311.64746965268205, + 321.20496539016244, + 318.35854739586995 + ], + "layer_temperatures_u": [ + 303.80441615673385, + 303.72084184816526, + 300.7440971486491, + 299.43029264970676 + ], + "relative_heat_gain": 319.3025014750005, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 0.1875327502645166 + ], + "solid_layer_effective_conductivities_u": [ + 0.9999999999999999, + 0.17833587354687064 + ], + "system_effective_conductivity_shgc": 0.759625588124601, + "system_effective_conductivity_u": 0.12214486263003084 +} diff --git a/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_U_Environment.json new file mode 100644 index 00000000..b7195c88 --- /dev/null +++ b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 4.622712677015873, + "gap_layer_effective_conductivities_shgc": [ + 0.08372775448810982 + ], + "gap_layer_effective_conductivities_u": [ + 0.0837277544881086 + ], + "layer_temperatures_shgc": [ + 261.3071427271339, + 261.856653846013, + 280.9948925794413, + 285.94191403663376 + ], + "layer_temperatures_u": [ + 261.3071427271341, + 261.8566538460132, + 280.99489257944106, + 285.9419140366335 + ], + "relative_heat_gain": 35.96470462716036, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 0.17916832408263772 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 0.17916832408263922 + ], + "system_effective_conductivity_shgc": 0.08204521913254008, + "system_effective_conductivity_u": 0.08204521913255904 +} diff --git a/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json new file mode 100644 index 00000000..82231fda --- /dev/null +++ b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.40188394802079325, + "U": 3.4274239624871052, + "gap_layer_effective_conductivities_shgc": [ + 0.08481458030603752 + ], + "gap_layer_effective_conductivities_u": [ + 0.09912576819390809 + ], + "layer_temperatures_shgc": [ + 311.4281463043251, + 311.6649374703899, + 321.20159864859517, + 318.3520744939194 + ], + "layer_temperatures_u": [ + 303.80441615673385, + 303.72084184816526, + 300.7440971486491, + 299.43029264970676 + ], + "relative_heat_gain": 318.10051107271, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 0.18752793827439773 + ], + "solid_layer_effective_conductivities_u": [ + 0.9999999999999999, + 0.17833587354687064 + ], + "system_effective_conductivity_shgc": 0.7620137001505243, + "system_effective_conductivity_u": 0.12214486263003084 +} diff --git a/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_U_Environment.json new file mode 100644 index 00000000..b7195c88 --- /dev/null +++ b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 4.622712677015873, + "gap_layer_effective_conductivities_shgc": [ + 0.08372775448810982 + ], + "gap_layer_effective_conductivities_u": [ + 0.0837277544881086 + ], + "layer_temperatures_shgc": [ + 261.3071427271339, + 261.856653846013, + 280.9948925794413, + 285.94191403663376 + ], + "layer_temperatures_u": [ + 261.3071427271341, + 261.8566538460132, + 280.99489257944106, + 285.9419140366335 + ], + "relative_heat_gain": 35.96470462716036, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 0.17916832408263772 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 0.17916832408263922 + ], + "system_effective_conductivity_shgc": 0.08204521913254008, + "system_effective_conductivity_u": 0.08204521913255904 +} From 43ea2aa7890073f6fc5b790ed69c3f21efbff829 Mon Sep 17 00:00:00 2001 From: Simon Vidanovic Date: Wed, 26 Jun 2024 09:27:04 -0700 Subject: [PATCH 14/19] Update to new vacuum results. --- CMakeLists-Windows-CalcEngine.txt.in | 2 +- .../thermal_SHGC_Environment.json | 34 +++++------ .../theta=0_phi=0/thermal_U_Environment.json | 32 +++++----- .../thermal_SHGC_Environment.json | 36 ++++++------ .../thermal_U_Environment.json | 32 +++++----- .../thermal_SHGC_Environment.json | 34 +++++------ .../theta=0_phi=0/thermal_U_Environment.json | 32 +++++----- .../thermal_SHGC_Environment.json | 36 ++++++------ .../thermal_U_Environment.json | 32 +++++----- .../theta=0_phi=0/thermal_U_Environment.json | 32 +++++----- .../thermal_U_Environment.json | 32 +++++----- .../theta=0_phi=0/thermal_U_Environment.json | 32 +++++----- .../thermal_U_Environment.json | 32 +++++----- .../thermal_SHGC_Environment.json | 34 +++++------ .../theta=0_phi=0/thermal_U_Environment.json | 32 +++++----- .../thermal_SHGC_Environment.json | 34 +++++------ .../thermal_U_Environment.json | 32 +++++----- .../thermal_SHGC_Environment.json | 36 ++++++------ .../theta=0_phi=0/thermal_U_Environment.json | 32 +++++----- .../thermal_SHGC_Environment.json | 34 +++++------ .../thermal_U_Environment.json | 32 +++++----- .../thermal_SHGC_Environment.json | 16 ++--- .../theta=0_phi=0/thermal_U_Environment.json | 12 ++-- .../thermal_U_Environment.json | 12 ++-- .../thermal_SHGC_Environment.json | 18 +++--- .../theta=0_phi=0/thermal_U_Environment.json | 14 ++--- .../thermal_U_Environment.json | 14 ++--- .../thermal_SHGC_Environment.json | 32 +++++----- .../theta=0_phi=0/thermal_U_Environment.json | 28 ++++----- .../thermal_SHGC_Environment.json | 32 +++++----- .../thermal_U_Environment.json | 28 ++++----- .../thermal_SHGC_Environment.json | 32 +++++----- .../theta=0_phi=0/thermal_U_Environment.json | 28 ++++----- .../thermal_SHGC_Environment.json | 32 +++++----- .../thermal_U_Environment.json | 28 ++++----- .../thermal_SHGC_Environment.json | 34 +++++------ .../theta=0_phi=0/thermal_U_Environment.json | 28 ++++----- .../thermal_SHGC_Environment.json | 32 +++++----- .../thermal_U_Environment.json | 28 ++++----- .../thermal_SHGC_Environment.json | 36 ++++++------ .../theta=0_phi=0/thermal_U_Environment.json | 28 ++++----- .../thermal_SHGC_Environment.json | 34 +++++------ .../thermal_U_Environment.json | 28 ++++----- .../thermal_SHGC_Environment.json | 36 ++++++------ .../theta=0_phi=0/thermal_U_Environment.json | 28 ++++----- .../thermal_SHGC_Environment.json | 32 +++++----- .../thermal_U_Environment.json | 28 ++++----- .../thermal_SHGC_Environment.json | 30 +++++----- .../theta=0_phi=0/thermal_U_Environment.json | 28 ++++----- .../thermal_SHGC_Environment.json | 30 +++++----- .../thermal_U_Environment.json | 28 ++++----- .../thermal_SHGC_Environment.json | 30 +++++----- .../theta=0_phi=0/thermal_U_Environment.json | 28 ++++----- .../thermal_SHGC_Environment.json | 32 +++++----- .../thermal_U_Environment.json | 28 ++++----- .../thermal_SHGC_Environment.json | 32 +++++----- .../theta=0_phi=0/thermal_U_Environment.json | 28 ++++----- .../thermal_SHGC_Environment.json | 34 +++++------ .../thermal_U_Environment.json | 28 ++++----- .../thermal_SHGC_Environment.json | 32 +++++----- .../theta=0_phi=0/thermal_U_Environment.json | 32 +++++----- .../thermal_SHGC_Environment.json | 32 +++++----- .../thermal_U_Environment.json | 32 +++++----- .../thermal_SHGC_Environment.json | 34 +++++------ .../theta=0_phi=0/thermal_U_Environment.json | 34 +++++------ .../thermal_SHGC_Environment.json | 36 ++++++------ .../thermal_U_Environment.json | 34 +++++------ .../thermal_SHGC_Environment.json | 30 +++++----- .../theta=0_phi=0/thermal_U_Environment.json | 28 ++++----- .../thermal_SHGC_Environment.json | 32 +++++----- .../thermal_U_Environment.json | 28 ++++----- .../thermal_SHGC_Environment.json | 32 +++++----- .../theta=0_phi=0/thermal_U_Environment.json | 28 ++++----- .../thermal_SHGC_Environment.json | 34 +++++------ .../thermal_U_Environment.json | 28 ++++----- .../thermal_SHGC_Environment.json | 34 +++++------ .../theta=0_phi=0/thermal_U_Environment.json | 30 +++++----- .../thermal_SHGC_Environment.json | 34 +++++------ .../thermal_U_Environment.json | 30 +++++----- .../thermal_SHGC_Environment.json | 36 ++++++------ .../theta=0_phi=0/thermal_U_Environment.json | 34 +++++------ .../thermal_SHGC_Environment.json | 34 +++++------ .../thermal_U_Environment.json | 34 +++++------ .../thermal_SHGC_Environment.json | 34 +++++------ .../theta=0_phi=0/thermal_U_Environment.json | 28 ++++----- .../thermal_SHGC_Environment.json | 32 +++++----- .../thermal_U_Environment.json | 28 ++++----- .../thermal_SHGC_Environment.json | 36 ++++++------ .../theta=0_phi=0/thermal_U_Environment.json | 28 ++++----- .../thermal_SHGC_Environment.json | 36 ++++++------ .../thermal_U_Environment.json | 28 ++++----- .../thermal_SHGC_Environment.json | 32 +++++----- .../theta=0_phi=0/thermal_U_Environment.json | 34 +++++------ .../thermal_SHGC_Environment.json | 32 +++++----- .../thermal_U_Environment.json | 34 +++++------ .../thermal_SHGC_Environment.json | 38 ++++++------ .../theta=0_phi=0/thermal_U_Environment.json | 32 +++++----- .../thermal_SHGC_Environment.json | 36 ++++++------ .../thermal_U_Environment.json | 32 +++++----- .../theta=0_phi=0/thermal_U_Environment.json | 32 +++++----- .../thermal_SHGC_Environment.json | 20 +++---- .../thermal_U_Environment.json | 32 +++++----- .../theta=0_phi=0/thermal_U_Environment.json | 32 +++++----- .../thermal_SHGC_Environment.json | 16 ++--- .../thermal_U_Environment.json | 32 +++++----- .../thermal_SHGC_Environment.json | 18 +++--- .../thermal_SHGC_Environment.json | 14 ++--- .../thermal_SHGC_Environment.json | 20 +++---- .../thermal_SHGC_Environment.json | 18 +++--- .../thermal_SHGC_Environment.json | 32 +++++----- .../theta=0_phi=0/thermal_U_Environment.json | 58 +++++++++---------- .../thermal_SHGC_Environment.json | 30 +++++----- .../thermal_U_Environment.json | 58 +++++++++---------- .../thermal_SHGC_Environment.json | 30 +++++----- .../theta=0_phi=0/thermal_U_Environment.json | 56 +++++++++--------- .../thermal_SHGC_Environment.json | 30 +++++----- .../thermal_U_Environment.json | 56 +++++++++--------- .../thermal_SHGC_Environment.json | 26 ++++----- .../theta=0_phi=0/thermal_U_Environment.json | 32 +++++----- .../thermal_SHGC_Environment.json | 24 ++++---- .../thermal_U_Environment.json | 32 +++++----- .../thermal_SHGC_Environment.json | 34 +++++------ .../theta=0_phi=0/thermal_U_Environment.json | 32 +++++----- .../thermal_SHGC_Environment.json | 36 ++++++------ .../thermal_U_Environment.json | 32 +++++----- .../thermal_SHGC_Environment.json | 36 ++++++------ .../theta=0_phi=0/thermal_U_Environment.json | 28 ++++----- .../thermal_SHGC_Environment.json | 34 +++++------ .../thermal_U_Environment.json | 28 ++++----- .../thermal_SHGC_Environment.json | 30 +++++----- .../theta=0_phi=0/thermal_U_Environment.json | 30 +++++----- .../thermal_SHGC_Environment.json | 30 +++++----- .../thermal_U_Environment.json | 30 +++++----- 133 files changed, 2044 insertions(+), 2044 deletions(-) diff --git a/CMakeLists-Windows-CalcEngine.txt.in b/CMakeLists-Windows-CalcEngine.txt.in index 90e47397..11261243 100644 --- a/CMakeLists-Windows-CalcEngine.txt.in +++ b/CMakeLists-Windows-CalcEngine.txt.in @@ -4,7 +4,7 @@ include(ExternalProject) ExternalProject_Add(Windows-CalcEngine GIT_REPOSITORY https://github.com/LBNL-ETA/Windows-CalcEngine.git - GIT_TAG "VariableAirflowCoefficients" + GIT_TAG "VacuumDec2023" UPDATE_COMMAND "" PATCH_COMMAND "" diff --git a/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 70d6ead4..bae84527 100644 --- a/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.07580302834306363, - "U": 2.849222658749646, + "SHGC": 0.07580302834230064, + "U": 2.8492226587774483, "gap_layer_effective_conductivities_shgc": [ - 0.08836956496510937 + 0.08836956496482204 ], "gap_layer_effective_conductivities_u": [ - 0.07740465761515868 + 0.07740465761544255 ], "layer_temperatures_shgc": [ - 315.25127130255964, - 315.25231420763873, - 305.77294853138176, - 305.5791783509922 + 315.25127130269493, + 315.252314207774, + 305.7729485314564, + 305.5791783510661 ], "layer_temperatures_u": [ - 303.99937169087445, - 303.99900942241135, - 300.4663806322354, - 300.3969051847065 + 303.999371690889, + 303.9990094224259, + 300.4663806322459, + 300.3969051847168 ], - "relative_heat_gain": 77.13721732211967, + "relative_heat_gain": 77.13721732192542, "solid_layer_effective_conductivities_shgc": [ - 7.012287594124633, + 7.0122875941275975, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.278819169783897, + 7.278819169683628, 1.0 ], - "system_effective_conductivity_shgc": 0.10602678253132429, - "system_effective_conductivity_u": 0.10031429265099234 + "system_effective_conductivity_shgc": 0.10602678253119635, + "system_effective_conductivity_u": 0.10031429265169543 } diff --git a/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index b86bef1f..0d02e955 100644 --- a/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.2793219139440937, + "U": 3.2793219139437273, "gap_layer_effective_conductivities_shgc": [ - 0.07572662693031113 + 0.07572662693030169 ], "gap_layer_effective_conductivities_u": [ - 0.07572662693027894 + 0.07572662693025954 ], "layer_temperatures_shgc": [ - 258.0639566615474, - 258.06526365320065, - 276.4914466690659, - 276.88126623605746 + 258.0639566615049, + 258.0652636531581, + 276.4914466690457, + 276.8812662360375 ], "layer_temperatures_u": [ - 258.0639566614636, - 258.0652636531168, - 276.49144666902384, - 276.88126623601585 + 258.0639566615079, + 258.06526365316114, + 276.4914466690383, + 276.88126623603017 ], - "relative_heat_gain": 25.513124490275487, + "relative_heat_gain": 25.513124490274507, "solid_layer_effective_conductivities_shgc": [ - 7.2148682048526, + 7.214868204841497, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.214868204841505, + 7.214868204841507, 1.0 ], - "system_effective_conductivity_shgc": 0.10775502172006045, - "system_effective_conductivity_u": 0.10775502172108627 + "system_effective_conductivity_shgc": 0.10775502171998244, + "system_effective_conductivity_u": 0.10775502172109039 } diff --git a/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 8e8386d1..823cba5c 100644 --- a/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.08299242870466628, - "U": 2.849222658749646, + "SHGC": 0.08299242870496694, + "U": 2.8492226587774483, "gap_layer_effective_conductivities_shgc": [ - 0.08865809735432588 + 0.08865809735418687 ], "gap_layer_effective_conductivities_u": [ - 0.07740465761515868 + 0.07740465761544255 ], "layer_temperatures_shgc": [ - 315.59366156535276, - 315.5947471654619, - 305.9576338258627, - 305.75995915249064 + 315.59366156537277, + 315.5947471654819, + 305.9576338258871, + 305.7599591525153 ], "layer_temperatures_u": [ - 303.99937169087445, - 303.99900942241135, - 300.4663806322354, - 300.3969051847065 + 303.999371690889, + 303.9990094224259, + 300.4663806322459, + 300.3969051847168 ], - "relative_heat_gain": 82.35077213632495, + "relative_heat_gain": 82.35077213629498, "solid_layer_effective_conductivities_shgc": [ - 7.015704691967797, - 1.0 + 7.015704691968455, + 0.9999999999999999 ], "solid_layer_effective_conductivities_u": [ - 7.278819169783897, + 7.278819169683628, 1.0 ], - "system_effective_conductivity_shgc": 0.10676674379580853, - "system_effective_conductivity_u": 0.10031429265099234 + "system_effective_conductivity_shgc": 0.10676674379609552, + "system_effective_conductivity_u": 0.10031429265169543 } diff --git a/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index b86bef1f..0d02e955 100644 --- a/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/CGDB_3000_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.2793219139440937, + "U": 3.2793219139437273, "gap_layer_effective_conductivities_shgc": [ - 0.07572662693031113 + 0.07572662693030169 ], "gap_layer_effective_conductivities_u": [ - 0.07572662693027894 + 0.07572662693025954 ], "layer_temperatures_shgc": [ - 258.0639566615474, - 258.06526365320065, - 276.4914466690659, - 276.88126623605746 + 258.0639566615049, + 258.0652636531581, + 276.4914466690457, + 276.8812662360375 ], "layer_temperatures_u": [ - 258.0639566614636, - 258.0652636531168, - 276.49144666902384, - 276.88126623601585 + 258.0639566615079, + 258.06526365316114, + 276.4914466690383, + 276.88126623603017 ], - "relative_heat_gain": 25.513124490275487, + "relative_heat_gain": 25.513124490274507, "solid_layer_effective_conductivities_shgc": [ - 7.2148682048526, + 7.214868204841497, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.214868204841505, + 7.214868204841507, 1.0 ], - "system_effective_conductivity_shgc": 0.10775502172006045, - "system_effective_conductivity_u": 0.10775502172108627 + "system_effective_conductivity_shgc": 0.10775502171998244, + "system_effective_conductivity_u": 0.10775502172109039 } diff --git a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index c58f5461..d0ec35d2 100644 --- a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.07512207302236577, - "U": 2.8492226587885208, + "SHGC": 0.07512207302226703, + "U": 2.849222658791422, "gap_layer_effective_conductivities_shgc": [ - 0.08822326162126884 + 0.08822326162111466 ], "gap_layer_effective_conductivities_u": [ - 0.0774046576156049 + 0.07740465761539202 ], "layer_temperatures_shgc": [ - 315.0876904259067, - 315.08871363944024, - 305.6993109684028, - 305.50739182702296 + 315.0876904259885, + 315.0887136395221, + 305.6993109684356, + 305.50739182705513 ], "layer_temperatures_u": [ - 303.99937169080937, - 303.99900942234626, - 300.46638063220865, - 300.39690518467995 + 303.9993716910528, + 303.99900942258967, + 300.46638063234246, + 300.396905184813 ], - "relative_heat_gain": 76.64340730838548, + "relative_heat_gain": 76.64340730843972, "solid_layer_effective_conductivities_shgc": [ - 7.010862286823563, + 7.010862286821205, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.278819169733269, + 7.278819169684902, 1.0 ], - "system_effective_conductivity_shgc": 0.10603300234383349, - "system_effective_conductivity_u": 0.10031429265524444 + "system_effective_conductivity_shgc": 0.10603300234387232, + "system_effective_conductivity_u": 0.10031429265385501 } diff --git a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index 63f7c726..3c5fa235 100644 --- a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.279321913913816, + "U": 3.27932191391377, "gap_layer_effective_conductivities_shgc": [ - 0.07572662693031072 + 0.07572662693029923 ], "gap_layer_effective_conductivities_u": [ - 0.07572662693027503 + 0.07572662693034715 ], "layer_temperatures_shgc": [ - 258.0639566615474, - 258.06526365320065, - 276.4914466690656, - 276.8812662360572 + 258.0639566615053, + 258.06526365315847, + 276.4914466690467, + 276.88126623603847 ], "layer_temperatures_u": [ - 258.0639566615255, - 258.0652636531787, - 276.4914466690778, - 276.8812662360695 + 258.0639566615349, + 258.0652636531882, + 276.49144666907335, + 276.881266236065 ], - "relative_heat_gain": 25.513124490250128, + "relative_heat_gain": 25.51312449024742, "solid_layer_effective_conductivities_shgc": [ - 7.214868204841701, + 7.214868204841505, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.214868204841533, + 7.214868204852718, 1.0 ], - "system_effective_conductivity_shgc": 0.1077550217201647, - "system_effective_conductivity_u": 0.10775502172006209 + "system_effective_conductivity_shgc": 0.10775502172014226, + "system_effective_conductivity_u": 0.10775502171997758 } diff --git a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 5e4201ac..a80f145b 100644 --- a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.08235888455015766, - "U": 2.8492226587885208, + "SHGC": 0.08235888454955972, + "U": 2.849222658791422, "gap_layer_effective_conductivities_shgc": [ - 0.0885187574834448 + 0.08851875748350631 ], "gap_layer_effective_conductivities_u": [ - 0.0774046576156049 + 0.07740465761539202 ], "layer_temperatures_shgc": [ - 315.4363559153726, - 315.43742260786837, - 305.88688962925306, - 305.6909960900328 + 315.43635591549173, + 315.4374226079875, + 305.8868896293082, + 305.69099609008674 ], "layer_temperatures_u": [ - 303.99937169080937, - 303.99900942234626, - 300.46638063220865, - 300.39690518467995 + 303.9993716910528, + 303.99900942258967, + 300.46638063234246, + 300.396905184813 ], - "relative_heat_gain": 81.89134339174082, + "relative_heat_gain": 81.89134339148012, "solid_layer_effective_conductivities_shgc": [ - 7.014444738734212, - 1.0000000000000002 + 7.014444738732218, + 0.9999999999999999 ], "solid_layer_effective_conductivities_u": [ - 7.278819169733269, + 7.278819169684902, 1.0 ], - "system_effective_conductivity_shgc": 0.1067781355664651, - "system_effective_conductivity_u": 0.10031429265524444 + "system_effective_conductivity_shgc": 0.10677813556638449, + "system_effective_conductivity_u": 0.10031429265385501 } diff --git a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index 63f7c726..3c5fa235 100644 --- a/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/CGDB_3000_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.279321913913816, + "U": 3.27932191391377, "gap_layer_effective_conductivities_shgc": [ - 0.07572662693031072 + 0.07572662693029923 ], "gap_layer_effective_conductivities_u": [ - 0.07572662693027503 + 0.07572662693034715 ], "layer_temperatures_shgc": [ - 258.0639566615474, - 258.06526365320065, - 276.4914466690656, - 276.8812662360572 + 258.0639566615053, + 258.06526365315847, + 276.4914466690467, + 276.88126623603847 ], "layer_temperatures_u": [ - 258.0639566615255, - 258.0652636531787, - 276.4914466690778, - 276.8812662360695 + 258.0639566615349, + 258.0652636531882, + 276.49144666907335, + 276.881266236065 ], - "relative_heat_gain": 25.513124490250128, + "relative_heat_gain": 25.51312449024742, "solid_layer_effective_conductivities_shgc": [ - 7.214868204841701, + 7.214868204841505, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.214868204841533, + 7.214868204852718, 1.0 ], - "system_effective_conductivity_shgc": 0.1077550217201647, - "system_effective_conductivity_u": 0.10775502172006209 + "system_effective_conductivity_shgc": 0.10775502172014226, + "system_effective_conductivity_u": 0.10775502171997758 } diff --git a/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index 54aa17da..6c9ef433 100644 --- a/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.2793219139418164, + "U": 3.279321913943822, "gap_layer_effective_conductivities_shgc": [ - 0.07572662693030915 + 0.0757266269303021 ], "gap_layer_effective_conductivities_u": [ - 0.07572662693027746 + 0.07572662693025962 ], "layer_temperatures_shgc": [ - 258.0639566615462, - 258.06526365319945, - 276.4914466690653, - 276.88126623605683 + 258.0639566615054, + 258.06526365315864, + 276.49144666904516, + 276.881266236037 ], "layer_temperatures_u": [ - 258.06395666146364, - 258.0652636531168, - 276.4914466690221, - 276.8812662360141 + 258.06395666150826, + 258.0652636531615, + 276.4914466690397, + 276.8812662360316 ], - "relative_heat_gain": 25.513124490294956, + "relative_heat_gain": 25.513124490275068, "solid_layer_effective_conductivities_shgc": [ - 7.214868204852596, + 7.214868204841484, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.214868204841347, + 7.214868204841502, 1.0 ], - "system_effective_conductivity_shgc": 0.10775502172004513, - "system_effective_conductivity_u": 0.1077550217210507 + "system_effective_conductivity_shgc": 0.10775502171998354, + "system_effective_conductivity_u": 0.10775502172106756 } diff --git a/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index 54aa17da..6c9ef433 100644 --- a/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/CGDB_3000_Vertical_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.2793219139418164, + "U": 3.279321913943822, "gap_layer_effective_conductivities_shgc": [ - 0.07572662693030915 + 0.0757266269303021 ], "gap_layer_effective_conductivities_u": [ - 0.07572662693027746 + 0.07572662693025962 ], "layer_temperatures_shgc": [ - 258.0639566615462, - 258.06526365319945, - 276.4914466690653, - 276.88126623605683 + 258.0639566615054, + 258.06526365315864, + 276.49144666904516, + 276.881266236037 ], "layer_temperatures_u": [ - 258.06395666146364, - 258.0652636531168, - 276.4914466690221, - 276.8812662360141 + 258.06395666150826, + 258.0652636531615, + 276.4914466690397, + 276.8812662360316 ], - "relative_heat_gain": 25.513124490294956, + "relative_heat_gain": 25.513124490275068, "solid_layer_effective_conductivities_shgc": [ - 7.214868204852596, + 7.214868204841484, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.214868204841347, + 7.214868204841502, 1.0 ], - "system_effective_conductivity_shgc": 0.10775502172004513, - "system_effective_conductivity_u": 0.1077550217210507 + "system_effective_conductivity_shgc": 0.10775502171998354, + "system_effective_conductivity_u": 0.10775502172106756 } diff --git a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index 9d661c33..8243b2c0 100644 --- a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.279321913913904, + "U": 3.2793219139137153, "gap_layer_effective_conductivities_shgc": [ - 0.0757266269303065 + 0.07572662693030231 ], "gap_layer_effective_conductivities_u": [ - 0.07572662693026815 + 0.07572662693034515 ], "layer_temperatures_shgc": [ - 258.0639566615461, - 258.06526365319934, - 276.49144666906545, - 276.88126623605694 + 258.06395666150513, + 258.0652636531584, + 276.4914466690451, + 276.88126623603694 ], "layer_temperatures_u": [ - 258.06395666152514, - 258.06526365317836, - 276.4914466690791, - 276.8812662360708 + 258.06395666153526, + 258.0652636531885, + 276.49144666907375, + 276.88126623606536 ], - "relative_heat_gain": 25.513124490251347, + "relative_heat_gain": 25.51312449024986, "solid_layer_effective_conductivities_shgc": [ - 7.2148682048416966, + 7.21486820484151, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.214868204841528, + 7.214868204830258, 1.0 ], - "system_effective_conductivity_shgc": 0.10775502172019548, - "system_effective_conductivity_u": 0.10775502172006862 + "system_effective_conductivity_shgc": 0.10775502172014914, + "system_effective_conductivity_u": 0.10775502171997911 } diff --git a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index 9d661c33..8243b2c0 100644 --- a/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/CGDB_3000_Vertical_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.279321913913904, + "U": 3.2793219139137153, "gap_layer_effective_conductivities_shgc": [ - 0.0757266269303065 + 0.07572662693030231 ], "gap_layer_effective_conductivities_u": [ - 0.07572662693026815 + 0.07572662693034515 ], "layer_temperatures_shgc": [ - 258.0639566615461, - 258.06526365319934, - 276.49144666906545, - 276.88126623605694 + 258.06395666150513, + 258.0652636531584, + 276.4914466690451, + 276.88126623603694 ], "layer_temperatures_u": [ - 258.06395666152514, - 258.06526365317836, - 276.4914466690791, - 276.8812662360708 + 258.06395666153526, + 258.0652636531885, + 276.49144666907375, + 276.88126623606536 ], - "relative_heat_gain": 25.513124490251347, + "relative_heat_gain": 25.51312449024986, "solid_layer_effective_conductivities_shgc": [ - 7.2148682048416966, + 7.21486820484151, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.214868204841528, + 7.214868204830258, 1.0 ], - "system_effective_conductivity_shgc": 0.10775502172019548, - "system_effective_conductivity_u": 0.10775502172006862 + "system_effective_conductivity_shgc": 0.10775502172014914, + "system_effective_conductivity_u": 0.10775502171997911 } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index ed867664..4c718095 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.29533957841375735, - "U": 3.3262101883122863, + "SHGC": 0.29533957841379094, + "U": 3.3262101883091564, "gap_layer_effective_conductivities_shgc": [ - 0.07900734665512783 + 0.07900734665511414 ], "gap_layer_effective_conductivities_u": [ - 0.10089528992795241 + 0.10089528992799764 ], "layer_temperatures_shgc": [ - 325.4589438799176, - 325.49548078959015, - 310.2457252662197, - 309.959721223522 + 325.4589438799215, + 325.4954807895941, + 310.24572526621745, + 309.95972122351964 ], "layer_temperatures_u": [ - 304.23045689179867, - 304.22592061735145, - 300.9772059632895, - 300.8960996514703 + 304.2304568918044, + 304.22592061735713, + 300.9772059632942, + 300.8960996514749 ], - "relative_heat_gain": 240.0500302316936, + "relative_heat_gain": 240.05003023168666, "solid_layer_effective_conductivities_shgc": [ - 1.9334283476182017, + 1.9334283476181915, 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.3951488111590367, + 2.395148811158571, 1.0 ], - "system_effective_conductivity_shgc": 0.10789372497799844, - "system_effective_conductivity_u": 0.12929166678920284 + "system_effective_conductivity_shgc": 0.10789372497797586, + "system_effective_conductivity_u": 0.12929166678910772 } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index 7f3165bc..e7fc8370 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.2098802958209958, + "U": 3.2098802958209536, "gap_layer_effective_conductivities_shgc": [ - 0.07505053254323385 + 0.07505053254323245 ], "gap_layer_effective_conductivities_u": [ - 0.07505053254322981 + 0.07505053254322804 ], "layer_temperatures_shgc": [ - 257.87556315306915, - 257.895438698528, - 276.8485092041007, - 277.23007410680486 + 257.87556315306654, + 257.89543869852525, + 276.84850920409866, + 277.2300741068029 ], "layer_temperatures_u": [ - 257.87556315306904, - 257.8954386985278, - 276.8485092041006, - 277.2300741068048 + 257.87556315306966, + 257.8954386985285, + 276.8485092040982, + 277.2300741068024 ], - "relative_heat_gain": 24.972868701618207, + "relative_heat_gain": 24.972868701617987, "solid_layer_effective_conductivities_shgc": [ - 2.268494509204794, + 2.2684945092047872, 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.2684945092033075, + 2.2684945092047317, 0.9999999999999999 ], - "system_effective_conductivity_shgc": 0.10478864568744427, - "system_effective_conductivity_u": 0.10478864568758083 + "system_effective_conductivity_shgc": 0.10478864568743436, + "system_effective_conductivity_u": 0.10478864568758231 } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 554606b9..66954049 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.15988844192894297, - "U": 3.3262101883122863, + "SHGC": 0.1598884419289203, + "U": 3.3262101883091564, "gap_layer_effective_conductivities_shgc": [ - 0.08073708459230666 + 0.08073708459231477 ], "gap_layer_effective_conductivities_u": [ - 0.10089528992795241 + 0.10089528992799764 ], "layer_temperatures_shgc": [ - 328.7747817324188, - 328.8168974179524, - 310.7944974398543, - 310.4751363454626 + 328.77478173241457, + 328.81689741794816, + 310.7944974398523, + 310.47513634546067 ], "layer_temperatures_u": [ - 304.23045689179867, - 304.22592061735145, - 300.9772059632895, - 300.8960996514703 + 304.2304568918044, + 304.22592061735713, + 300.9772059632942, + 300.8960996514749 ], - "relative_heat_gain": 141.82460263596616, + "relative_heat_gain": 141.8246026359631, "solid_layer_effective_conductivities_shgc": [ - 1.9315124483025186, + 1.9315124483029387, 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.3951488111590367, + 2.395148811158571, 1.0 ], - "system_effective_conductivity_shgc": 0.09553694814340409, - "system_effective_conductivity_u": 0.12929166678920284 + "system_effective_conductivity_shgc": 0.09553694814342076, + "system_effective_conductivity_u": 0.12929166678910772 } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index 7f3165bc..e7fc8370 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.2098802958209958, + "U": 3.2098802958209536, "gap_layer_effective_conductivities_shgc": [ - 0.07505053254323385 + 0.07505053254323245 ], "gap_layer_effective_conductivities_u": [ - 0.07505053254322981 + 0.07505053254322804 ], "layer_temperatures_shgc": [ - 257.87556315306915, - 257.895438698528, - 276.8485092041007, - 277.23007410680486 + 257.87556315306654, + 257.89543869852525, + 276.84850920409866, + 277.2300741068029 ], "layer_temperatures_u": [ - 257.87556315306904, - 257.8954386985278, - 276.8485092041006, - 277.2300741068048 + 257.87556315306966, + 257.8954386985285, + 276.8485092040982, + 277.2300741068024 ], - "relative_heat_gain": 24.972868701618207, + "relative_heat_gain": 24.972868701617987, "solid_layer_effective_conductivities_shgc": [ - 2.268494509204794, + 2.2684945092047872, 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.2684945092033075, + 2.2684945092047317, 0.9999999999999999 ], - "system_effective_conductivity_shgc": 0.10478864568744427, - "system_effective_conductivity_u": 0.10478864568758083 + "system_effective_conductivity_shgc": 0.10478864568743436, + "system_effective_conductivity_u": 0.10478864568758231 } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 2d18a8f8..2dd80ef0 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.295730133164184, - "U": 3.326210188269284, + "SHGC": 0.2957301331641582, + "U": 3.326210188271486, "gap_layer_effective_conductivities_shgc": [ - 0.07902675986308978 + 0.0790267598630891 ], "gap_layer_effective_conductivities_u": [ - 0.1008952899279433 + 0.10089528992794808 ], "layer_temperatures_shgc": [ - 325.4165356252433, - 325.45297829760375, - 310.2072538964354, - 309.92170102861223 + 325.416535625247, + 325.45297829760744, + 310.2072538964374, + 309.92170102861417 ], "layer_temperatures_u": [ - 304.2304568918024, - 304.2259206173552, - 300.97720596329145, - 300.8960996514721 + 304.2304568918089, + 304.2259206173616, + 300.97720596329424, + 300.8960996514749 ], - "relative_heat_gain": 240.33324976266425, + "relative_heat_gain": 240.33324976266653, "solid_layer_effective_conductivities_shgc": [ - 1.9329497087884162, - 1.0 + 1.9329497087882108, + 0.9999999999999998 ], "solid_layer_effective_conductivities_u": [ - 2.3951488111593537, + 2.395148811166921, 1.0 ], - "system_effective_conductivity_shgc": 0.10756366800370926, - "system_effective_conductivity_u": 0.12929166678559442 + "system_effective_conductivity_shgc": 0.1075636680037029, + "system_effective_conductivity_u": 0.12929166678556556 } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index 3cbc5eb1..7da39b02 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.209880295838021, + "U": 3.209880295837857, "gap_layer_effective_conductivities_shgc": [ - 0.07505053254323311 + 0.07505053254323499 ], "gap_layer_effective_conductivities_u": [ - 0.07505053254323187 + 0.07505053254323318 ], "layer_temperatures_shgc": [ - 257.8755631530691, - 257.8954386985279, - 276.84850920410065, - 277.23007410680486 + 257.87556315307177, + 257.8954386985306, + 276.8485092041025, + 277.23007410680674 ], "layer_temperatures_u": [ - 257.875563153067, - 257.89543869852577, - 276.84850920409883, - 277.230074106803 + 257.87556315307035, + 257.8954386985292, + 276.8485092041017, + 277.23007410680583 ], - "relative_heat_gain": 24.972868701619674, + "relative_heat_gain": 24.972868701616765, "solid_layer_effective_conductivities_shgc": [ - 2.2684945092047846, + 2.2684945092033666, 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.2684945092047766, + 2.268494509204789, 1.0 ], - "system_effective_conductivity_shgc": 0.10478864568746597, - "system_effective_conductivity_u": 0.10478864568747101 + "system_effective_conductivity_shgc": 0.10478864568745669, + "system_effective_conductivity_u": 0.10478864568745319 } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 75c39130..715d3499 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.16006623044795132, - "U": 3.326210188269284, + "SHGC": 0.16006623044793694, + "U": 3.326210188271486, "gap_layer_effective_conductivities_shgc": [ - 0.08072439000379106 + 0.08072439000378806 ], "gap_layer_effective_conductivities_u": [ - 0.1008952899279433 + 0.10089528992794808 ], "layer_temperatures_shgc": [ - 328.72627922106864, - 328.7683055808525, - 310.7754087049881, - 310.4565507074831 + 328.72627922106756, + 328.76830558085135, + 310.77540870498586, + 310.45655070748086 ], "layer_temperatures_u": [ - 304.2304568918024, - 304.2259206173552, - 300.97720596329145, - 300.8960996514721 + 304.2304568918089, + 304.2259206173616, + 300.97720596329424, + 300.8960996514749 ], - "relative_heat_gain": 141.95352996531457, + "relative_heat_gain": 141.9535299653198, "solid_layer_effective_conductivities_shgc": [ - 1.931376083653689, + 1.9313760836535712, 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.3951488111593537, + 2.395148811166921, 1.0 ], - "system_effective_conductivity_shgc": 0.09554285520236096, - "system_effective_conductivity_u": 0.12929166678559442 + "system_effective_conductivity_shgc": 0.09554285520234924, + "system_effective_conductivity_u": 0.12929166678556556 } diff --git a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index 3cbc5eb1..7da39b02 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.209880295838021, + "U": 3.209880295837857, "gap_layer_effective_conductivities_shgc": [ - 0.07505053254323311 + 0.07505053254323499 ], "gap_layer_effective_conductivities_u": [ - 0.07505053254323187 + 0.07505053254323318 ], "layer_temperatures_shgc": [ - 257.8755631530691, - 257.8954386985279, - 276.84850920410065, - 277.23007410680486 + 257.87556315307177, + 257.8954386985306, + 276.8485092041025, + 277.23007410680674 ], "layer_temperatures_u": [ - 257.875563153067, - 257.89543869852577, - 276.84850920409883, - 277.230074106803 + 257.87556315307035, + 257.8954386985292, + 276.8485092041017, + 277.23007410680583 ], - "relative_heat_gain": 24.972868701619674, + "relative_heat_gain": 24.972868701616765, "solid_layer_effective_conductivities_shgc": [ - 2.2684945092047846, + 2.2684945092033666, 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.2684945092047766, + 2.268494509204789, 1.0 ], - "system_effective_conductivity_shgc": 0.10478864568746597, - "system_effective_conductivity_u": 0.10478864568747101 + "system_effective_conductivity_shgc": 0.10478864568745669, + "system_effective_conductivity_u": 0.10478864568745319 } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 38cc73dd..06f506fa 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -2,16 +2,16 @@ "SHGC": 0.29501525851476657, "U": 3.1992390387594654, "gap_layer_effective_conductivities_shgc": [ - 0.07734694898920759 + 0.07734694898922599 ], "gap_layer_effective_conductivities_u": [ 0.09385627861928467 ], "layer_temperatures_shgc": [ - 325.4147189442151, - 325.4511539324846, - 310.10179046115405, - 309.8196564997721 + 325.41471894421056, + 325.45115393248005, + 310.1017904611521, + 309.8196564997702 ], "layer_temperatures_u": [ 304.1952685045735, @@ -19,15 +19,15 @@ 300.8419435019547, 300.76393325474476 ], - "relative_heat_gain": 238.82700684423915, + "relative_heat_gain": 238.82700684424194, "solid_layer_effective_conductivities_shgc": [ - 1.9283655164751488, + 1.9283655164755458, 1.0 ], "solid_layer_effective_conductivities_u": [ 2.394869018261466, 1.0 ], - "system_effective_conductivity_shgc": 0.10591161263651824, + "system_effective_conductivity_shgc": 0.10591161263648241, "system_effective_conductivity_u": 0.12084161244323674 } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index 701a78f8..1d2692ef 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -2,16 +2,16 @@ "SHGC": 0.0, "U": 3.2216743786432445, "gap_layer_effective_conductivities_shgc": [ - 0.07556478810875464 + 0.07556478810876192 ], "gap_layer_effective_conductivities_u": [ 0.07556478810876094 ], "layer_temperatures_shgc": [ - 257.8559292635023, - 257.8756705756647, - 276.7878516728553, - 277.1708185618175 + 257.8559292635022, + 257.8756705756646, + 276.7878516728522, + 277.1708185618143 ], "layer_temperatures_u": [ 257.85592926350216, @@ -21,7 +21,7 @@ ], "relative_heat_gain": 25.064626665972646, "solid_layer_effective_conductivities_shgc": [ - 2.2652738114197843, + 2.2652738114198026, 1.0 ], "solid_layer_effective_conductivities_u": [ diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index 701a78f8..1d2692ef 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -2,16 +2,16 @@ "SHGC": 0.0, "U": 3.2216743786432445, "gap_layer_effective_conductivities_shgc": [ - 0.07556478810875464 + 0.07556478810876192 ], "gap_layer_effective_conductivities_u": [ 0.07556478810876094 ], "layer_temperatures_shgc": [ - 257.8559292635023, - 257.8756705756647, - 276.7878516728553, - 277.1708185618175 + 257.8559292635022, + 257.8756705756646, + 276.7878516728522, + 277.1708185618143 ], "layer_temperatures_u": [ 257.85592926350216, @@ -21,7 +21,7 @@ ], "relative_heat_gain": 25.064626665972646, "solid_layer_effective_conductivities_shgc": [ - 2.2652738114197843, + 2.2652738114198026, 1.0 ], "solid_layer_effective_conductivities_u": [ diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index c25bcd1a..fed2ddeb 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,17 +1,17 @@ { - "SHGC": 0.2954064807309276, + "SHGC": 0.29540648073088444, "U": 3.199239038728343, "gap_layer_effective_conductivities_shgc": [ - 0.0773661741456406 + 0.07736617414564986 ], "gap_layer_effective_conductivities_u": [ 0.09385627861934363 ], "layer_temperatures_shgc": [ - 325.3723409986676, - 325.40868163836564, - 310.0633077250988, - 309.7816233456282 + 325.3723409986651, + 325.4086816383631, + 310.0633077250966, + 309.781623345626 ], "layer_temperatures_u": [ 304.19526850458794, @@ -19,15 +19,15 @@ 300.8419435019598, 300.76393325474976 ], - "relative_heat_gain": 239.11071040299692, + "relative_heat_gain": 239.11071040301533, "solid_layer_effective_conductivities_shgc": [ - 1.9278812769125215, + 1.927881276912346, 1.0 ], "solid_layer_effective_conductivities_u": [ 2.3948690182765127, 1.0 ], - "system_effective_conductivity_shgc": 0.1055832767955728, + "system_effective_conductivity_shgc": 0.10558327679558173, "system_effective_conductivity_u": 0.12084161244040957 } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index 1e70d675..004c35f0 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -2,16 +2,16 @@ "SHGC": 0.0, "U": 3.2216743786598907, "gap_layer_effective_conductivities_shgc": [ - 0.07556478810875998 + 0.07556478810876263 ], "gap_layer_effective_conductivities_u": [ 0.07556478810876119 ], "layer_temperatures_shgc": [ - 257.8559292635, - 257.87567057566235, - 276.78785167285, - 277.1708185618122 + 257.8559292635026, + 257.875670575665, + 276.78785167285423, + 277.1708185618164 ], "layer_temperatures_u": [ 257.85592926350205, @@ -21,13 +21,13 @@ ], "relative_heat_gain": 25.06462666597348, "solid_layer_effective_conductivities_shgc": [ - 2.2652738114197586, + 2.265273811418358, 1.0 ], "solid_layer_effective_conductivities_u": [ 2.2652738114197972, 1.0 ], - "system_effective_conductivity_shgc": 0.10538941957214815, + "system_effective_conductivity_shgc": 0.10538941957215436, "system_effective_conductivity_u": 0.10538941957214448 } diff --git a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index 1e70d675..004c35f0 100644 --- a/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/IGSDB_14684_NFRC_102_Flipped_shade/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -2,16 +2,16 @@ "SHGC": 0.0, "U": 3.2216743786598907, "gap_layer_effective_conductivities_shgc": [ - 0.07556478810875998 + 0.07556478810876263 ], "gap_layer_effective_conductivities_u": [ 0.07556478810876119 ], "layer_temperatures_shgc": [ - 257.8559292635, - 257.87567057566235, - 276.78785167285, - 277.1708185618122 + 257.8559292635026, + 257.875670575665, + 276.78785167285423, + 277.1708185618164 ], "layer_temperatures_u": [ 257.85592926350205, @@ -21,13 +21,13 @@ ], "relative_heat_gain": 25.06462666597348, "solid_layer_effective_conductivities_shgc": [ - 2.2652738114197586, + 2.265273811418358, 1.0 ], "solid_layer_effective_conductivities_u": [ 2.2652738114197972, 1.0 ], - "system_effective_conductivity_shgc": 0.10538941957214815, + "system_effective_conductivity_shgc": 0.10538941957215436, "system_effective_conductivity_u": 0.10538941957214448 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index e957f630..f38d813d 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7630000081499313, - "U": 2.523457981054221, + "SHGC": 0.7629243745367038, + "U": 2.5412920075673457, "gap_layer_effective_conductivities_shgc": [ - 0.0005301289999530104 + 0.0005371016233149971 ], "gap_layer_effective_conductivities_u": [ - 0.0005065639259034637 + 0.0005136093721398108 ], "layer_temperatures_shgc": [ - 308.3472813233453, - 308.4285921130241, - 306.1298049267892, - 306.00709008721117 + 308.34322731729713, + 308.42428374805326, + 306.1398019896183, + 306.0168327911176 ], "layer_temperatures_u": [ - 304.1597643211673, - 304.09823231978817, - 300.113016867425, - 300.0514848660458 + 304.15275695078174, + 304.090790084496, + 300.13246355052905, + 300.0704966842434 ], - "relative_heat_gain": 572.939060729268, + "relative_heat_gain": 573.022962040463, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.9999999999999999, + 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.18092697618042497, - "system_effective_conductivity_u": 0.030446509417147275 + "system_effective_conductivity_shgc": 0.18222222508699912, + "system_effective_conductivity_u": 0.030857112965140026 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index ce141a4f..6ae17c82 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.2621443383111557, + "U": 2.288245011837356, "gap_layer_effective_conductivities_shgc": [ - 0.0003784977644116286 + 0.00038573774474077733 ], "gap_layer_effective_conductivities_u": [ - 0.00037849776441167533 + 0.00038573774474076 ], "layer_temperatures_shgc": [ - 258.16918877956454, - 258.43809440993243, - 281.74698484208113, - 282.0158904724489 + 258.20395557687743, + 258.4759638466038, + 281.6112563290793, + 281.8832645988056 ], "layer_temperatures_u": [ - 258.16918877956385, - 258.4380944099317, - 281.74698484208216, - 282.01589047245 + 258.2039555768774, + 258.47596384660375, + 281.61125632908045, + 281.8832645988068 ], - "relative_heat_gain": 17.599482952193966, + "relative_heat_gain": 17.80254619198635, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.022922818874289406, - "system_effective_conductivity_u": 0.02292281887416025 + "system_effective_conductivity_shgc": 0.023351217490624993, + "system_effective_conductivity_u": 0.0233512174907243 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index d05e54a2..9a78d9f7 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7616982216001456, - "U": 2.523457981054221, + "SHGC": 0.7616219113840017, + "U": 2.5412920075673457, "gap_layer_effective_conductivities_shgc": [ - 0.0005304152305669647 + 0.000537387054035077 ], "gap_layer_effective_conductivities_u": [ - 0.0005065639259034637 + 0.0005136093721398108 ], "layer_temperatures_shgc": [ - 308.39996238383435, - 308.48303413892427, - 306.198868745599, - 306.075370330857 + 308.3959346745277, + 308.4787536854647, + 306.2087915876969, + 306.085040428802 ], "layer_temperatures_u": [ - 304.1597643211673, - 304.09823231978817, - 300.113016867425, - 300.0514848660458 + 304.15275695078174, + 304.090790084496, + 300.13246355052905, + 300.0704966842434 ], - "relative_heat_gain": 571.9950410347199, + "relative_heat_gain": 572.0784516921434, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.9999999999999999, + 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.1837007097769792, - "system_effective_conductivity_u": 0.030446509417147275 + "system_effective_conductivity_shgc": 0.18501192397724875, + "system_effective_conductivity_u": 0.030857112965140026 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index ce141a4f..6ae17c82 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.2621443383111557, + "U": 2.288245011837356, "gap_layer_effective_conductivities_shgc": [ - 0.0003784977644116286 + 0.00038573774474077733 ], "gap_layer_effective_conductivities_u": [ - 0.00037849776441167533 + 0.00038573774474076 ], "layer_temperatures_shgc": [ - 258.16918877956454, - 258.43809440993243, - 281.74698484208113, - 282.0158904724489 + 258.20395557687743, + 258.4759638466038, + 281.6112563290793, + 281.8832645988056 ], "layer_temperatures_u": [ - 258.16918877956385, - 258.4380944099317, - 281.74698484208216, - 282.01589047245 + 258.2039555768774, + 258.47596384660375, + 281.61125632908045, + 281.8832645988068 ], - "relative_heat_gain": 17.599482952193966, + "relative_heat_gain": 17.80254619198635, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.022922818874289406, - "system_effective_conductivity_u": 0.02292281887416025 + "system_effective_conductivity_shgc": 0.023351217490624993, + "system_effective_conductivity_u": 0.0233512174907243 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 69c4139e..e3da71ed 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7647611440303165, - "U": 2.523457981286831, + "SHGC": 0.7646816559120603, + "U": 2.54129200737631, "gap_layer_effective_conductivities_shgc": [ - 0.0005299253032221497 + 0.0005368979482842536 ], "gap_layer_effective_conductivities_u": [ - 0.0005065639258878485 + 0.0005136093721511187 ], "layer_temperatures_shgc": [ - 308.2636463181945, - 308.3430148244204, - 306.12768961398876, - 306.00567443271444 + 308.2597380666833, + 308.33886141308017, + 306.1373253690879, + 306.0150650279845 ], "layer_temperatures_u": [ - 304.15976432116406, - 304.0982323197848, - 300.11301686749806, - 300.0514848661188 + 304.15275695078316, + 304.09079008449754, + 300.13246355047636, + 300.07049668419074 ], - "relative_heat_gain": 574.2161878855277, + "relative_heat_gain": 574.2972940179847, "solid_layer_effective_conductivities_shgc": [ 1.0, 0.9999999999999999 ], "solid_layer_effective_conductivities_u": [ 0.9999999999999999, - 0.9999999999999999 + 1.0 ], - "system_effective_conductivity_shgc": 0.187481784983331, - "system_effective_conductivity_u": 0.030446509423953973 + "system_effective_conductivity_shgc": 0.1888145646090988, + "system_effective_conductivity_u": 0.030857112959593796 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index ebbda1ba..2520b4d6 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.262144338329179, + "U": 2.288245011822537, "gap_layer_effective_conductivities_shgc": [ - 0.0003784977644116743 + 0.00038573774474079733 ], "gap_layer_effective_conductivities_u": [ - 0.00037849776441164866 + 0.00038573774474079246 ], "layer_temperatures_shgc": [ - 258.16918877956454, - 258.43809440993243, - 281.74698484207846, - 282.01589047244624 + 258.20395557687783, + 258.4759638466042, + 281.6112563290789, + 281.8832645988053 ], "layer_temperatures_u": [ - 258.16918877956454, - 258.43809440993243, - 281.74698484208113, - 282.0158904724489 + 258.20395557687743, + 258.4759638466038, + 281.6112563290793, + 281.8832645988056 ], - "relative_heat_gain": 17.599482952200024, + "relative_heat_gain": 17.802546191979523, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.022922818874284153, - "system_effective_conductivity_u": 0.02292281887428448 + "system_effective_conductivity_shgc": 0.023351217490628438, + "system_effective_conductivity_u": 0.023351217490624937 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index f3e1af40..d85085fb 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7634504521822366, - "U": 2.523457981286831, + "SHGC": 0.7633703191322366, + "U": 2.54129200737631, "gap_layer_effective_conductivities_shgc": [ - 0.0005302115066145238 + 0.0005371833561554372 ], "gap_layer_effective_conductivities_u": [ - 0.0005065639258878485 + 0.0005136093721511187 ], "layer_temperatures_shgc": [ - 308.31667670821173, - 308.3978115286872, - 306.19641953043606, - 306.0736199243356 + 308.31279353744753, + 308.3936847372778, + 306.2059844713629, + 306.08294124461725 ], "layer_temperatures_u": [ - 304.15976432116406, - 304.0982323197848, - 300.11301686749806, - 300.0514848661188 + 304.15275695078316, + 304.09079008449754, + 300.13246355047636, + 300.07049668419074 ], - "relative_heat_gain": 573.2657103143357, + "relative_heat_gain": 573.3463487600841, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 ], "solid_layer_effective_conductivities_u": [ 0.9999999999999999, - 0.9999999999999999 + 1.0 ], - "system_effective_conductivity_shgc": 0.19033678558780245, - "system_effective_conductivity_u": 0.030446509423953973 + "system_effective_conductivity_shgc": 0.19168599355350746, + "system_effective_conductivity_u": 0.030857112959593796 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index ebbda1ba..2520b4d6 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/annulus_cylinder/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.262144338329179, + "U": 2.288245011822537, "gap_layer_effective_conductivities_shgc": [ - 0.0003784977644116743 + 0.00038573774474079733 ], "gap_layer_effective_conductivities_u": [ - 0.00037849776441164866 + 0.00038573774474079246 ], "layer_temperatures_shgc": [ - 258.16918877956454, - 258.43809440993243, - 281.74698484207846, - 282.01589047244624 + 258.20395557687783, + 258.4759638466042, + 281.6112563290789, + 281.8832645988053 ], "layer_temperatures_u": [ - 258.16918877956454, - 258.43809440993243, - 281.74698484208113, - 282.0158904724489 + 258.20395557687743, + 258.4759638466038, + 281.6112563290793, + 281.8832645988056 ], - "relative_heat_gain": 17.599482952200024, + "relative_heat_gain": 17.802546191979523, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.022922818874284153, - "system_effective_conductivity_u": 0.02292281887428448 + "system_effective_conductivity_shgc": 0.023351217490628438, + "system_effective_conductivity_u": 0.023351217490624937 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 771b9a3b..acfa8c37 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7629908972661572, - "U": 2.525631112474417, + "SHGC": 0.7629153966243978, + "U": 2.543436259285044, "gap_layer_effective_conductivities_shgc": [ - 0.0005309808649067588 + 0.0005379534640775176 ], "gap_layer_effective_conductivities_u": [ - 0.0005074174267695594 + 0.0005144628185464245 ], "layer_temperatures_shgc": [ - 308.3467833268503, - 308.4280628707823, - 306.1310330611486, - 306.0082869758239 + 308.3427354812204, + 308.4237610530823, + 306.141014730634, + 306.0180146732391 ], "layer_temperatures_u": [ - 304.15891045817796, - 304.09732546716145, - 300.115387158349, - 300.0538021673325 + 304.15191441981165, + 304.0898952680898, + 300.13480087857675, + 300.0727817268549 ], - "relative_heat_gain": 572.9493607297097, + "relative_heat_gain": 573.0331337848723, "solid_layer_effective_conductivities_shgc": [ - 0.9999999999999998, - 0.9999999999999999 + 1.0, + 1.0 ], "solid_layer_effective_conductivities_u": [ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.18108526894535415, - "system_effective_conductivity_u": 0.030496269046469893 + "system_effective_conductivity_shgc": 0.1823804027366845, + "system_effective_conductivity_u": 0.030906827984862616 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index 4353b072..d3b5eab7 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.265152770034837, + "U": 2.291210674382775, "gap_layer_effective_conductivities_shgc": [ - 0.0003793268105889458 + 0.0003865671960896077 ], "gap_layer_effective_conductivities_u": [ - 0.0003793268105889651 + 0.0003865671960896331 ], "layer_temperatures_shgc": [ - 258.1731961715186, - 258.44245942019353, - 281.7313373918896, - 282.0006006405644 + 258.20790581950047, + 258.4802666234813, + 281.59583804442883, + 281.86819884840963 ], "layer_temperatures_u": [ - 258.1731961715183, - 258.4424594201932, - 281.73133739189177, - 282.0006006405666 + 258.2079058195004, + 258.4802666234812, + 281.5958380444284, + 281.8681988484092 ], - "relative_heat_gain": 17.62288855098791, + "relative_heat_gain": 17.82561904691138, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.022971893303107796, - "system_effective_conductivity_u": 0.022971893302997426 + "system_effective_conductivity_shgc": 0.023400273568691482, + "system_effective_conductivity_u": 0.023400273568504795 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 61dbd3f8..ea23edbc 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.761689028853747, - "U": 2.525631112474417, + "SHGC": 0.7616128527435954, + "U": 2.543436259285044, "gap_layer_effective_conductivities_shgc": [ - 0.0005312670832704456 + 0.0005382388827537726 ], "gap_layer_effective_conductivities_u": [ - 0.0005074174267695594 + 0.0005144628185464245 ], "layer_temperatures_shgc": [ - 308.39946757001246, - 308.48250827472765, - 306.20008787830693, - 306.0765584131903 + 308.39544597718503, + 308.47823432189216, + 306.209995453462, + 306.0862136283373 ], "layer_temperatures_u": [ - 304.15891045817796, - 304.09732546716145, - 300.115387158349, - 300.0538021673325 + 304.15191441981165, + 304.0898952680898, + 300.13480087857675, + 300.0727817268549 ], - "relative_heat_gain": 572.0052816706564, + "relative_heat_gain": 572.0885648947601, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.9999999999999999 + 1.0 ], "solid_layer_effective_conductivities_u": [ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.18386096945740643, - "system_effective_conductivity_u": 0.030496269046469893 + "system_effective_conductivity_shgc": 0.18517206780484274, + "system_effective_conductivity_u": 0.030906827984862616 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index 4353b072..d3b5eab7 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.265152770034837, + "U": 2.291210674382775, "gap_layer_effective_conductivities_shgc": [ - 0.0003793268105889458 + 0.0003865671960896077 ], "gap_layer_effective_conductivities_u": [ - 0.0003793268105889651 + 0.0003865671960896331 ], "layer_temperatures_shgc": [ - 258.1731961715186, - 258.44245942019353, - 281.7313373918896, - 282.0006006405644 + 258.20790581950047, + 258.4802666234813, + 281.59583804442883, + 281.86819884840963 ], "layer_temperatures_u": [ - 258.1731961715183, - 258.4424594201932, - 281.73133739189177, - 282.0006006405666 + 258.2079058195004, + 258.4802666234812, + 281.5958380444284, + 281.8681988484092 ], - "relative_heat_gain": 17.62288855098791, + "relative_heat_gain": 17.82561904691138, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.022971893303107796, - "system_effective_conductivity_u": 0.022971893302997426 + "system_effective_conductivity_shgc": 0.023400273568691482, + "system_effective_conductivity_u": 0.023400273568504795 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 1e506dd6..629cc6f6 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7647515587739153, - "U": 2.5256311126678934, + "SHGC": 0.7646722094555976, + "U": 2.5434362591224127, "gap_layer_effective_conductivities_shgc": [ - 0.0005307771095770797 + 0.000537749731335648 ], "gap_layer_effective_conductivities_u": [ - 0.0005074174267567903 + 0.0005144628185555757 ], "layer_temperatures_shgc": [ - 308.2631662597034, - 308.342504652312, - 306.12887327633644, - 306.0068279814449 + 308.2592639486121, + 308.3383575543351, + 306.138494197795, + 306.0162041160179 ], "layer_temperatures_u": [ - 304.1589104581754, - 304.0973254671588, - 300.1153871584093, - 300.0538021673927 + 304.15191441981324, + 304.0898952680913, + 300.1348008785382, + 300.07278172681634 ], - "relative_heat_gain": 574.2261438842118, + "relative_heat_gain": 574.3071259869937, "solid_layer_effective_conductivities_shgc": [ 1.0, - 1.0000000000000002 + 1.0 ], "solid_layer_effective_conductivities_u": [ - 1.0, - 1.0 + 0.9999999999999999, + 0.9999999999999999 ], - "system_effective_conductivity_shgc": 0.18764465365192365, - "system_effective_conductivity_u": 0.03049626905217623 + "system_effective_conductivity_shgc": 0.18897731278642277, + "system_effective_conductivity_u": 0.030906827980134423 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index 66bdf375..51e7f33e 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.2651527700508876, + "U": 2.2912106744112997, "gap_layer_effective_conductivities_shgc": [ - 0.00037932681058892853 + 0.0003865671960895625 ], "gap_layer_effective_conductivities_u": [ - 0.0003793268105888715 + 0.0003865671960895942 ], "layer_temperatures_shgc": [ - 258.1731961715185, - 258.44245942019336, - 281.7313373918901, - 282.000600640565 + 258.20790581950007, + 258.48026662348093, + 281.59583804442957, + 281.8681988484103 ], "layer_temperatures_u": [ - 258.1731961715186, - 258.44245942019353, - 281.7313373918896, - 282.0006006405644 + 258.20790581950047, + 258.4802666234813, + 281.59583804442883, + 281.86819884840963 ], - "relative_heat_gain": 17.622888550996187, + "relative_heat_gain": 17.82561904691922, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.02297189330310799, - "system_effective_conductivity_u": 0.0229718933031056 + "system_effective_conductivity_shgc": 0.023400273568687183, + "system_effective_conductivity_u": 0.02340027356869046 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 18adf7f2..94c9ab66 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7634407889130123, - "U": 2.5256311126678934, + "SHGC": 0.7633607957469848, + "U": 2.5434362591224127, "gap_layer_effective_conductivities_shgc": [ - 0.0005310633012872805 + 0.0005380351277193765 ], "gap_layer_effective_conductivities_u": [ - 0.0005074174267567903 + 0.0005144628185555757 ], "layer_temperatures_shgc": [ - 308.3161996845017, - 308.3973045775408, - 306.1975946061401, - 306.0747650726031 + 308.31232241220243, + 308.3931840549559, + 306.2071448340039, + 306.0840720501814 ], "layer_temperatures_u": [ - 304.1589104581754, - 304.0973254671588, - 300.1153871584093, - 300.0538021673927 + 304.15191441981324, + 304.0898952680913, + 300.1348008785382, + 300.07278172681634 ], - "relative_heat_gain": 573.2756097412575, + "relative_heat_gain": 573.3561249424506, "solid_layer_effective_conductivities_shgc": [ 1.0, 0.9999999999999999 ], "solid_layer_effective_conductivities_u": [ - 1.0, - 1.0 + 0.9999999999999999, + 0.9999999999999999 ], - "system_effective_conductivity_shgc": 0.19050167807299478, - "system_effective_conductivity_u": 0.03049626905217623 + "system_effective_conductivity_shgc": 0.19185076479204113, + "system_effective_conductivity_u": 0.030906827980134423 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index 66bdf375..51e7f33e 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/cylindrical/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.2651527700508876, + "U": 2.2912106744112997, "gap_layer_effective_conductivities_shgc": [ - 0.00037932681058892853 + 0.0003865671960895625 ], "gap_layer_effective_conductivities_u": [ - 0.0003793268105888715 + 0.0003865671960895942 ], "layer_temperatures_shgc": [ - 258.1731961715185, - 258.44245942019336, - 281.7313373918901, - 282.000600640565 + 258.20790581950007, + 258.48026662348093, + 281.59583804442957, + 281.8681988484103 ], "layer_temperatures_u": [ - 258.1731961715186, - 258.44245942019353, - 281.7313373918896, - 282.0006006405644 + 258.20790581950047, + 258.4802666234813, + 281.59583804442883, + 281.86819884840963 ], - "relative_heat_gain": 17.622888550996187, + "relative_heat_gain": 17.82561904691922, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.02297189330310799, - "system_effective_conductivity_u": 0.0229718933031056 + "system_effective_conductivity_shgc": 0.023400273568687183, + "system_effective_conductivity_u": 0.02340027356869046 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 80b8bcef..2598fff3 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7632570691469664, - "U": 2.4622708110918703, + "SHGC": 0.7631776332803317, + "U": 2.4809280423478843, "gap_layer_effective_conductivities_shgc": [ - 0.0005066982465579012 + 0.0005136715568589004 ], "gap_layer_effective_conductivities_u": [ - 0.0004830869124149841 + 0.0004901339126352255 ], "layer_temperatures_shgc": [ - 308.36128248448483, - 308.44347176449867, - 306.095265707428, - 305.97342935818517 + 308.3570533355683, + 308.43897725799275, + 306.1057006086446, + 305.98359890181246 ], "layer_temperatures_u": [ - 304.1838051002338, - 304.12376508686714, - 300.04620347674944, - 299.98616346338275 + 304.17647472931367, + 304.11597977799255, + 300.06659167595717, + 300.0060967246361 ], - "relative_heat_gain": 572.6494380851526, + "relative_heat_gain": 572.7369866521283, "solid_layer_effective_conductivities_shgc": [ - 0.9999999999999998, - 0.9999999999999999 + 1.0, + 1.0 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.9999999999999999 + 1.0 ], - "system_effective_conductivity_shgc": 0.1765677783239868, - "system_effective_conductivity_u": 0.029075813033599397 + "system_effective_conductivity_shgc": 0.17786620910691428, + "system_effective_conductivity_u": 0.02948764953954247 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index c919eba8..810c8629 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.177402624629615, + "U": 2.2047210114545988, "gap_layer_effective_conductivities_shgc": [ - 0.00035571103863338836 + 0.00036293946160126264 ], "gap_layer_effective_conductivities_u": [ - 0.0003557110386335049 + 0.0003629394616013781 ], "layer_temperatures_shgc": [ - 258.05629970269644, - 258.3151319157556, - 282.1880774076958, - 282.44690962075487 + 258.0926938318937, + 258.354773436336, + 282.0458096959053, + 282.3078893003476 ], "layer_temperatures_u": [ - 258.05629970269626, - 258.31513191575544, - 282.18807740769756, - 282.4469096207566 + 258.0926938318936, + 258.35477343633596, + 282.0458096959082, + 282.30788930035055 ], - "relative_heat_gain": 16.94019241984329, + "relative_heat_gain": 17.15272946939801, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.021572084426023208, - "system_effective_conductivity_u": 0.02157208442578532 + "system_effective_conductivity_shgc": 0.022000963053292907, + "system_effective_conductivity_u": 0.02200096305300382 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 4b42ea9d..710f0b1d 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7619575895471986, - "U": 2.4622708110918703, + "SHGC": 0.7618774447117812, + "U": 2.4809280423478843, "gap_layer_effective_conductivities_shgc": [ - 0.0005069848226069674 + 0.0005139573271422726 ], "gap_layer_effective_conductivities_u": [ - 0.0004830869124149841 + 0.0004901339126352255 ], "layer_temperatures_shgc": [ - 308.413873862733, - 308.49781860242797, - 306.1645832969082, - 306.04195786677127 + 308.4096722639251, + 308.49335333804424, + 306.17494036937046, + 306.05205127365787 ], "layer_temperatures_u": [ - 304.1838051002338, - 304.12376508686714, - 300.04620347674944, - 299.98616346338275 + 304.17647472931367, + 304.11597977799255, + 300.06659167595717, + 300.0060967246361 ], - "relative_heat_gain": 571.7070913271142, + "relative_heat_gain": 571.7941257694894, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.9999999999999999 + 1.0 ], - "system_effective_conductivity_shgc": 0.17928737793834462, - "system_effective_conductivity_u": 0.029075813033599397 + "system_effective_conductivity_shgc": 0.1806017943381998, + "system_effective_conductivity_u": 0.02948764953954247 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index c919eba8..810c8629 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.177402624629615, + "U": 2.2047210114545988, "gap_layer_effective_conductivities_shgc": [ - 0.00035571103863338836 + 0.00036293946160126264 ], "gap_layer_effective_conductivities_u": [ - 0.0003557110386335049 + 0.0003629394616013781 ], "layer_temperatures_shgc": [ - 258.05629970269644, - 258.3151319157556, - 282.1880774076958, - 282.44690962075487 + 258.0926938318937, + 258.354773436336, + 282.0458096959053, + 282.3078893003476 ], "layer_temperatures_u": [ - 258.05629970269626, - 258.31513191575544, - 282.18807740769756, - 282.4469096207566 + 258.0926938318936, + 258.35477343633596, + 282.0458096959082, + 282.30788930035055 ], - "relative_heat_gain": 16.94019241984329, + "relative_heat_gain": 17.15272946939801, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.021572084426023208, - "system_effective_conductivity_u": 0.02157208442578532 + "system_effective_conductivity_shgc": 0.022000963053292907, + "system_effective_conductivity_u": 0.02200096305300382 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index da9bedc3..de926b19 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,25 +1,25 @@ { - "SHGC": 0.7650315404623101, - "U": 2.4622708107673543, + "SHGC": 0.7649480843984541, + "U": 2.4809280426069478, "gap_layer_effective_conductivities_shgc": [ - 0.0005064961984100286 + 0.0005134695052279694 ], "gap_layer_effective_conductivities_u": [ - 0.000483086912449141 + 0.000490133912610894 ], "layer_temperatures_shgc": [ - 308.2771432301536, - 308.357358400574, - 306.094401261531, - 305.9732327444512 + 308.2730660902755, + 308.35302549765424, + 306.10445892851345, + 305.98303464839205 ], "layer_temperatures_u": [ - 304.1838051002411, - 304.1237650868747, - 300.046203476568, - 299.9861634632016 + 304.17647472930923, + 304.115979777988, + 300.0665916760847, + 300.00609672476344 ], - "relative_heat_gain": 573.9362357322658, + "relative_heat_gain": 574.0208689603737, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.18299647320144577, - "system_effective_conductivity_u": 0.029075813023703077 + "system_effective_conductivity_shgc": 0.18433258294693858, + "system_effective_conductivity_u": 0.02948764954738934 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index de2d211d..f9de43d8 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.177402624660582, + "U": 2.204721011493435, "gap_layer_effective_conductivities_shgc": [ - 0.00035571103863340977 + 0.00036293946160125196 ], "gap_layer_effective_conductivities_u": [ - 0.00035571103863338554 + 0.00036293946160123407 ], "layer_temperatures_shgc": [ - 258.0562997026966, - 258.3151319157558, - 282.18807740769444, - 282.4469096207535 + 258.0926938318939, + 258.35477343633625, + 282.0458096959061, + 282.3078893003484 ], "layer_temperatures_u": [ - 258.05629970269644, - 258.3151319157556, - 282.1880774076958, - 282.44690962075487 + 258.0926938318937, + 258.354773436336, + 282.0458096959053, + 282.3078893003476 ], - "relative_heat_gain": 16.94019241985802, + "relative_heat_gain": 17.15272946941995, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.0215720844260206, - "system_effective_conductivity_u": 0.021572084426016658 + "system_effective_conductivity_shgc": 0.022000963053281204, + "system_effective_conductivity_u": 0.022000963053285683 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index c647caf3..46b17bd6 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,25 +1,25 @@ { - "SHGC": 0.7637230470962132, - "U": 2.4622708107673543, + "SHGC": 0.7636389152148285, + "U": 2.4809280426069478, "gap_layer_effective_conductivities_shgc": [ - 0.0005067827312481764 + 0.0005137552369450881 ], "gap_layer_effective_conductivities_u": [ - 0.000483086912449141 + 0.000490133912610894 ], "layer_temperatures_shgc": [ - 308.3300881028418, - 308.41206434064964, - 306.16337324852407, - 306.04141505975593 + 308.32603724048147, + 308.407759328143, + 306.17335665936974, + 306.05114432045525 ], "layer_temperatures_u": [ - 304.1838051002411, - 304.1237650868747, - 300.046203476568, - 299.9861634632016 + 304.17647472930923, + 304.115979777988, + 300.0665916760847, + 300.00609672476344 ], - "relative_heat_gain": 572.9873524395691, + "relative_heat_gain": 573.0714955834507, "solid_layer_effective_conductivities_shgc": [ 1.0, 0.9999999999999999 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.18579577332284086, - "system_effective_conductivity_u": 0.029075813023703077 + "system_effective_conductivity_shgc": 0.18714833244426776, + "system_effective_conductivity_u": 0.02948764954738934 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index de2d211d..f9de43d8 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/hexagon/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.177402624660582, + "U": 2.204721011493435, "gap_layer_effective_conductivities_shgc": [ - 0.00035571103863340977 + 0.00036293946160125196 ], "gap_layer_effective_conductivities_u": [ - 0.00035571103863338554 + 0.00036293946160123407 ], "layer_temperatures_shgc": [ - 258.0562997026966, - 258.3151319157558, - 282.18807740769444, - 282.4469096207535 + 258.0926938318939, + 258.35477343633625, + 282.0458096959061, + 282.3078893003484 ], "layer_temperatures_u": [ - 258.05629970269644, - 258.3151319157556, - 282.1880774076958, - 282.44690962075487 + 258.0926938318937, + 258.354773436336, + 282.0458096959053, + 282.3078893003476 ], - "relative_heat_gain": 16.94019241985802, + "relative_heat_gain": 17.15272946941995, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.0215720844260206, - "system_effective_conductivity_u": 0.021572084426016658 + "system_effective_conductivity_shgc": 0.022000963053281204, + "system_effective_conductivity_u": 0.022000963053285683 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 80584273..c247cbc6 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,25 +1,25 @@ { - "SHGC": 0.7633442097970484, - "U": 2.4415847296387447, + "SHGC": 0.7632634628375852, + "U": 2.4605246766595537, "gap_layer_effective_conductivities_shgc": [ - 0.0004990118078408722 + 0.0005059853529148342 ], "gap_layer_effective_conductivities_u": [ - 0.00047538474656134787 + 0.0004824322810452587 ], "layer_temperatures_shgc": [ - 308.36600696945277, - 308.44849269037763, - 306.0836064857479, - 305.9620665774161 + 308.36171787397234, + 308.4439344726307, + 306.0941913350775, + 305.9723823044792 ], "layer_temperatures_u": [ - 304.1919324367916, - 304.13239683283604, - 300.02358223917054, - 299.96404663521497 + 304.18449114391007, + 304.1244937082733, + 300.04429464390876, + 299.98429720827187 ], - "relative_heat_gain": 572.5516923754956, + "relative_heat_gain": 572.640489693288, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.17513550473199394, - "system_effective_conductivity_u": 0.028625294375865723 + "system_effective_conductivity_shgc": 0.1764349860808109, + "system_effective_conductivity_u": 0.02903753799339 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index 2a94a0fa..3de3360d 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.148738878922525, + "U": 2.1764748110516408, "gap_layer_effective_conductivities_shgc": [ - 0.0003482430051083695 + 0.00035546745492740563 ], "gap_layer_effective_conductivities_u": [ - 0.0003482430051084832 + 0.00035546745492748906 ], "layer_temperatures_shgc": [ - 258.01811140674096, - 258.27353630291145, - 282.3374270486927, - 282.5928519448631 + 258.0550636197065, + 258.31378554170664, + 282.19291046738505, + 282.45163238938505 ], "layer_temperatures_u": [ - 258.018111406741, - 258.27353630291145, - 282.3374270486966, - 282.592851944867 + 258.05506361970663, + 258.3137855417067, + 282.19291046738994, + 282.45163238938994 ], - "relative_heat_gain": 16.717188478223875, + "relative_heat_gain": 16.932974030211618, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.021128600449047803, - "system_effective_conductivity_u": 0.021128600448813734 + "system_effective_conductivity_shgc": 0.02155762561238335, + "system_effective_conductivity_u": 0.021557625612137983 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 209ed090..108b04b7 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7620455109974572, - "U": 2.4415847296387447, + "SHGC": 0.7619640439420802, + "U": 2.4605246766595537, "gap_layer_effective_conductivities_shgc": [ - 0.0004992985008975609 + 0.0005062712381896901 ], "gap_layer_effective_conductivities_u": [ - 0.00047538474656134787 + 0.0004824322810452587 ], "layer_temperatures_shgc": [ - 308.4185679976814, - 308.50280731484213, - 306.1530100079216, - 306.03067915525054 + 308.41430688314193, + 308.49827879660546, + 306.1635157871914, + 306.0409175308231 ], "layer_temperatures_u": [ - 304.1919324367916, - 304.13239683283604, - 300.02358223917054, - 299.96404663521497 + 304.18449114391007, + 304.1244937082733, + 300.04429464390876, + 299.98429720827187 ], - "relative_heat_gain": 571.6099118321808, + "relative_heat_gain": 571.6981869563188, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.9999999999999999 + 1.0 ], "solid_layer_effective_conductivities_u": [ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.17783733167004862, - "system_effective_conductivity_u": 0.028625294375865723 + "system_effective_conductivity_shgc": 0.17915280531837313, + "system_effective_conductivity_u": 0.02903753799339 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index 2a94a0fa..3de3360d 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.148738878922525, + "U": 2.1764748110516408, "gap_layer_effective_conductivities_shgc": [ - 0.0003482430051083695 + 0.00035546745492740563 ], "gap_layer_effective_conductivities_u": [ - 0.0003482430051084832 + 0.00035546745492748906 ], "layer_temperatures_shgc": [ - 258.01811140674096, - 258.27353630291145, - 282.3374270486927, - 282.5928519448631 + 258.0550636197065, + 258.31378554170664, + 282.19291046738505, + 282.45163238938505 ], "layer_temperatures_u": [ - 258.018111406741, - 258.27353630291145, - 282.3374270486966, - 282.592851944867 + 258.05506361970663, + 258.3137855417067, + 282.19291046738994, + 282.45163238938994 ], - "relative_heat_gain": 16.717188478223875, + "relative_heat_gain": 16.932974030211618, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.021128600449047803, - "system_effective_conductivity_u": 0.021128600448813734 + "system_effective_conductivity_shgc": 0.02155762561238335, + "system_effective_conductivity_u": 0.021557625612137983 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 7ff2881a..86d232de 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7651231803182329, - "U": 2.4415847300157116, + "SHGC": 0.7650383564372456, + "U": 2.4605246769514615, "gap_layer_effective_conductivities_shgc": [ - 0.0004988103164675271 + 0.0005057838494437278 ], "gap_layer_effective_conductivities_u": [ - 0.00047538474651539597 + 0.0004824322810142263 ], "layer_temperatures_shgc": [ - 308.28169759657453, - 308.3621984701863, - 306.08316436328425, - 305.96228154939587 + 308.2775626508381, + 308.3578041320915, + 306.09336652090053, + 305.97222431465366 ], "layer_temperatures_u": [ - 304.1919324367791, - 304.1323968328231, - 300.02358223942736, - 299.96404663547133 + 304.1844911439018, + 304.1244937082646, + 300.04429464407394, + 299.98429720843683 ], - "relative_heat_gain": 573.8417527185974, + "relative_heat_gain": 573.9275935676015, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 ], "solid_layer_effective_conductivities_u": [ 1.0, - 1.0 + 0.9999999999999999 ], - "system_effective_conductivity_shgc": 0.18152272169090694, - "system_effective_conductivity_u": 0.0286252943875561 + "system_effective_conductivity_shgc": 0.18285993077828328, + "system_effective_conductivity_u": 0.0290375380022171 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index 1ddbcdb3..3ffeda32 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.1487388789513524, + "U": 2.1764748110833376, "gap_layer_effective_conductivities_shgc": [ - 0.0003482430051083227 + 0.00035546745492738796 ], "gap_layer_effective_conductivities_u": [ - 0.00034824300510831864 + 0.0003554674549273489 ], "layer_temperatures_shgc": [ - 258.0181114067409, - 258.27353630291134, - 282.33742704869553, - 282.59285194486597 + 258.05506361970606, + 258.31378554170607, + 282.1929104673859, + 282.4516323893859 ], "layer_temperatures_u": [ - 258.01811140674096, - 258.27353630291145, - 282.3374270486927, - 282.5928519448631 + 258.0550636197065, + 258.31378554170664, + 282.19291046738505, + 282.45163238938505 ], - "relative_heat_gain": 16.71718847824373, + "relative_heat_gain": 16.9329740302294, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.02112860044903418, - "system_effective_conductivity_u": 0.021128600449039414 + "system_effective_conductivity_shgc": 0.021557625612372892, + "system_effective_conductivity_u": 0.02155762561237149 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index dd2dc1c2..73114949 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7638154310675828, - "U": 2.4415847300157116, + "SHGC": 0.7637299207505928, + "U": 2.4605246769514615, "gap_layer_effective_conductivities_shgc": [ - 0.0004990969608948412 + 0.0005060696908280243 ], "gap_layer_effective_conductivities_u": [ - 0.00047538474651539597 + 0.0004824322810142263 ], "layer_temperatures_shgc": [ - 308.33461352767904, - 308.4168736927842, - 306.1522183207549, - 306.03054405928407 + 308.3305052708444, + 308.4125076818283, + 306.1623450381003, + 306.04041302250823 ], "layer_temperatures_u": [ - 304.1919324367791, - 304.1323968328231, - 300.02358223942736, - 299.96404663547133 + 304.1844911439018, + 304.1244937082646, + 300.04429464407394, + 299.98429720843683 ], - "relative_heat_gain": 572.8934090378964, + "relative_heat_gain": 572.9787521024499, "solid_layer_effective_conductivities_shgc": [ 1.0, - 1.0 + 0.9999999999999999 ], "solid_layer_effective_conductivities_u": [ 1.0, - 1.0 + 0.9999999999999999 ], - "system_effective_conductivity_shgc": 0.18430373474535133, - "system_effective_conductivity_u": 0.0286252943875561 + "system_effective_conductivity_shgc": 0.18565740012515217, + "system_effective_conductivity_u": 0.0290375380022171 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index 1ddbcdb3..3ffeda32 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/linear_bearing/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.1487388789513524, + "U": 2.1764748110833376, "gap_layer_effective_conductivities_shgc": [ - 0.0003482430051083227 + 0.00035546745492738796 ], "gap_layer_effective_conductivities_u": [ - 0.00034824300510831864 + 0.0003554674549273489 ], "layer_temperatures_shgc": [ - 258.0181114067409, - 258.27353630291134, - 282.33742704869553, - 282.59285194486597 + 258.05506361970606, + 258.31378554170607, + 282.1929104673859, + 282.4516323893859 ], "layer_temperatures_u": [ - 258.01811140674096, - 258.27353630291145, - 282.3374270486927, - 282.5928519448631 + 258.0550636197065, + 258.31378554170664, + 282.19291046738505, + 282.45163238938505 ], - "relative_heat_gain": 16.71718847824373, + "relative_heat_gain": 16.9329740302294, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.02112860044903418, - "system_effective_conductivity_u": 0.021128600449039414 + "system_effective_conductivity_shgc": 0.021557625612372892, + "system_effective_conductivity_u": 0.02155762561237149 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 98517cb3..20175267 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7632769441879876, - "U": 2.4575502521786343, + "SHGC": 0.7631972102797064, + "U": 2.476271803058257, "gap_layer_effective_conductivities_shgc": [ - 0.0005049339926601853 + 0.0005119073564234898 ], "gap_layer_effective_conductivities_u": [ - 0.0004813190735033689 + 0.0004883661952033457 ], "layer_temperatures_shgc": [ - 308.3623610131056, - 308.44461796578014, - 306.0926042820926, - 305.9708356055105 + 308.3581182169673, + 308.4401089550056, + 306.10307331604054, + 305.9810384248221 ], "layer_temperatures_u": [ - 304.1856597716695, - 304.1257348644143, - 300.0410427972229, - 299.9811178899676 + 304.1783041651558, + 304.1179227515895, + 300.0615047162931, + 300.00112330272674 ], - "relative_heat_gain": 572.6271249669786, + "relative_heat_gain": 572.7149578023339, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.9999999999999999, + 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.17623912948108444, - "system_effective_conductivity_u": 0.02897244412559167 + "system_effective_conductivity_shgc": 0.1775378010871962, + "system_effective_conductivity_u": 0.029384373970711027 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index fc649a0a..8dc4dd9d 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 2.1708621623367246, + "U": 2.198275573294621, "gap_layer_effective_conductivities_shgc": [ - 0.00035399659473049784 + 0.00036122411398021426 ], "gap_layer_effective_conductivities_u": [ - 0.0003539965947306659 + 0.00036122411398011365 ], "layer_temperatures_shgc": [ - 258.04758610584406, - 258.3056408410459, - 282.22214896372265, - 282.48020369892436 + 258.0841072388363, + 258.3454206611216, + 282.0793697634787, + 282.3406831857641 ], "layer_temperatures_u": [ - 258.0475861058444, - 258.3056408410462, - 282.22214896372697, - 282.4802036989288 + 258.08410723883594, + 258.3454206611213, + 282.0793697634755, + 282.3406831857608 ], - "relative_heat_gain": 16.889307623271367, + "relative_heat_gain": 17.10258396004958, "solid_layer_effective_conductivities_shgc": [ - 1.0, + 0.9999999999999998, 1.0 ], "solid_layer_effective_conductivities_u": [ 1.0, - 1.0 + 0.9999999999999998 ], - "system_effective_conductivity_shgc": 0.02147030832200375, - "system_effective_conductivity_u": 0.02147030832168897 + "system_effective_conductivity_shgc": 0.02189922108002614, + "system_effective_conductivity_u": 0.021899221080218412 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 3e985d56..9acf91e7 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.761977642728196, - "U": 2.4575502521786343, + "SHGC": 0.7618971973180815, + "U": 2.476271803058257, "gap_layer_effective_conductivities_shgc": [ - 0.0005052205954009114 + 0.000512193152938791 ], "gap_layer_effective_conductivities_u": [ - 0.0004813190735033689 + 0.0004883661952033457 ], "layer_temperatures_shgc": [ - 308.4149454668262, - 308.4989574540358, - 306.1619414752725, - 306.0393832926502 + 308.41073031879614, + 308.4944777894234, + 306.17233239815187, + 306.0495096989472 ], "layer_temperatures_u": [ - 304.1856597716695, - 304.1257348644143, - 300.0410427972229, - 299.9811178899676 + 304.1783041651558, + 304.1179227515895, + 300.0615047162931, + 300.00112330272674 ], - "relative_heat_gain": 571.6849073911388, + "relative_heat_gain": 571.7722242663872, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.9999999999999999, + 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.1789546503805072, - "system_effective_conductivity_u": 0.02897244412559167 + "system_effective_conductivity_shgc": 0.18026930912280895, + "system_effective_conductivity_u": 0.029384373970711027 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index fc649a0a..8dc4dd9d 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 2.1708621623367246, + "U": 2.198275573294621, "gap_layer_effective_conductivities_shgc": [ - 0.00035399659473049784 + 0.00036122411398021426 ], "gap_layer_effective_conductivities_u": [ - 0.0003539965947306659 + 0.00036122411398011365 ], "layer_temperatures_shgc": [ - 258.04758610584406, - 258.3056408410459, - 282.22214896372265, - 282.48020369892436 + 258.0841072388363, + 258.3454206611216, + 282.0793697634787, + 282.3406831857641 ], "layer_temperatures_u": [ - 258.0475861058444, - 258.3056408410462, - 282.22214896372697, - 282.4802036989288 + 258.08410723883594, + 258.3454206611213, + 282.0793697634755, + 282.3406831857608 ], - "relative_heat_gain": 16.889307623271367, + "relative_heat_gain": 17.10258396004958, "solid_layer_effective_conductivities_shgc": [ - 1.0, + 0.9999999999999998, 1.0 ], "solid_layer_effective_conductivities_u": [ 1.0, - 1.0 + 0.9999999999999998 ], - "system_effective_conductivity_shgc": 0.02147030832200375, - "system_effective_conductivity_u": 0.02147030832168897 + "system_effective_conductivity_shgc": 0.02189922108002614, + "system_effective_conductivity_u": 0.021899221080218412 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index ee532bc9..4dbe5c00 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7650524426286605, - "U": 2.4575502518879158, + "SHGC": 0.7649686756077497, + "U": 2.4762718027660964, "gap_layer_effective_conductivities_shgc": [ - 0.00050473207159428 + 0.0005117054299130223 ], "gap_layer_effective_conductivities_u": [ - 0.00048131907353433906 + 0.0004883661952311758 ], "layer_temperatures_shgc": [ - 308.27818292184486, - 308.3584633136, - 306.0918362356424, - 305.9707329398973 + 308.2740926220906, + 308.3541164245724, + 306.1019267932023, + 305.98056690818396 ], "layer_temperatures_u": [ - 304.1856597716774, - 304.1257348644224, - 300.0410427970529, - 299.9811178897979 + 304.17830416516153, + 304.1179227515954, + 300.0615047161442, + 300.0011233025781 ], - "relative_heat_gain": 573.9146674584141, + "relative_heat_gain": 573.9995755915838, "solid_layer_effective_conductivities_shgc": [ 1.0, - 1.0 + 0.9999999999999999 ], "solid_layer_effective_conductivities_u": [ 0.9999999999999999, - 1.0 + 0.9999999999999999 ], - "system_effective_conductivity_shgc": 0.18265830864366622, - "system_effective_conductivity_u": 0.028972444116719488 + "system_effective_conductivity_shgc": 0.18399467041082385, + "system_effective_conductivity_u": 0.029384373961925576 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index 8de1ae4a..2f623c70 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 2.1708621623773268, + "U": 2.1982755732692816, "gap_layer_effective_conductivities_shgc": [ - 0.0003539965947304735 + 0.00036122411398019106 ], "gap_layer_effective_conductivities_u": [ - 0.0003539965947304969 + 0.00036122411398022526 ], "layer_temperatures_shgc": [ - 258.04758610584406, - 258.30564084104583, - 282.22214896372407, - 282.4802036989258 + 258.08410723883605, + 258.34542066112135, + 282.0793697634803, + 282.34068318576567 ], "layer_temperatures_u": [ - 258.04758610584406, - 258.3056408410459, - 282.22214896372265, - 282.48020369892436 + 258.0841072388363, + 258.3454206611216, + 282.0793697634787, + 282.3406831857641 ], - "relative_heat_gain": 16.889307623294812, + "relative_heat_gain": 17.10258396003605, "solid_layer_effective_conductivities_shgc": [ - 1.0, - 1.0 + 0.9999999999999998, + 0.9999999999999998 ], "solid_layer_effective_conductivities_u": [ - 1.0, + 0.9999999999999998, 1.0 ], - "system_effective_conductivity_shgc": 0.021470308321994112, - "system_effective_conductivity_u": 0.02147030832199076 + "system_effective_conductivity_shgc": 0.021899221080030302, + "system_effective_conductivity_u": 0.021899221080032505 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index c530d5be..f8f616a4 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7637441190317291, - "U": 2.4575502518879158, + "SHGC": 0.7636596737780587, + "U": 2.4762718027660964, "gap_layer_effective_conductivities_shgc": [ - 0.000505018629887159 + 0.0005119911866477204 ], "gap_layer_effective_conductivities_u": [ - 0.00048131907353433906 + 0.0004883661952311758 ], "layer_temperatures_shgc": [ - 308.33112119139514, - 308.4131622453692, - 306.16082692245, - 306.03893354984814 + 308.32705726273304, + 308.4088433460933, + 306.1708429545677, + 306.0486946113522 ], "layer_temperatures_u": [ - 304.1856597716774, - 304.1257348644224, - 300.0410427970529, - 299.9811178897979 + 304.17830416516153, + 304.1179227515954, + 300.0615047161442, + 300.0011233025781 ], - "relative_heat_gain": 572.965907277654, + "relative_heat_gain": 573.0503235751008, "solid_layer_effective_conductivities_shgc": [ - 0.9999999999999998, - 0.9999999999999999 + 1.0, + 1.0 ], "solid_layer_effective_conductivities_u": [ 0.9999999999999999, - 1.0 + 0.9999999999999999 ], - "system_effective_conductivity_shgc": 0.18545341200515897, - "system_effective_conductivity_u": 0.028972444116719488 + "system_effective_conductivity_shgc": 0.186806224734984, + "system_effective_conductivity_u": 0.029384373961925576 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index 8de1ae4a..2f623c70 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/pentagon/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 2.1708621623773268, + "U": 2.1982755732692816, "gap_layer_effective_conductivities_shgc": [ - 0.0003539965947304735 + 0.00036122411398019106 ], "gap_layer_effective_conductivities_u": [ - 0.0003539965947304969 + 0.00036122411398022526 ], "layer_temperatures_shgc": [ - 258.04758610584406, - 258.30564084104583, - 282.22214896372407, - 282.4802036989258 + 258.08410723883605, + 258.34542066112135, + 282.0793697634803, + 282.34068318576567 ], "layer_temperatures_u": [ - 258.04758610584406, - 258.3056408410459, - 282.22214896372265, - 282.48020369892436 + 258.0841072388363, + 258.3454206611216, + 282.0793697634787, + 282.3406831857641 ], - "relative_heat_gain": 16.889307623294812, + "relative_heat_gain": 17.10258396003605, "solid_layer_effective_conductivities_shgc": [ - 1.0, - 1.0 + 0.9999999999999998, + 0.9999999999999998 ], "solid_layer_effective_conductivities_u": [ - 1.0, + 0.9999999999999998, 1.0 ], - "system_effective_conductivity_shgc": 0.021470308321994112, - "system_effective_conductivity_u": 0.02147030832199076 + "system_effective_conductivity_shgc": 0.021899221080030302, + "system_effective_conductivity_u": 0.021899221080032505 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 80584273..c247cbc6 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,25 +1,25 @@ { - "SHGC": 0.7633442097970484, - "U": 2.4415847296387447, + "SHGC": 0.7632634628375852, + "U": 2.4605246766595537, "gap_layer_effective_conductivities_shgc": [ - 0.0004990118078408722 + 0.0005059853529148342 ], "gap_layer_effective_conductivities_u": [ - 0.00047538474656134787 + 0.0004824322810452587 ], "layer_temperatures_shgc": [ - 308.36600696945277, - 308.44849269037763, - 306.0836064857479, - 305.9620665774161 + 308.36171787397234, + 308.4439344726307, + 306.0941913350775, + 305.9723823044792 ], "layer_temperatures_u": [ - 304.1919324367916, - 304.13239683283604, - 300.02358223917054, - 299.96404663521497 + 304.18449114391007, + 304.1244937082733, + 300.04429464390876, + 299.98429720827187 ], - "relative_heat_gain": 572.5516923754956, + "relative_heat_gain": 572.640489693288, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.17513550473199394, - "system_effective_conductivity_u": 0.028625294375865723 + "system_effective_conductivity_shgc": 0.1764349860808109, + "system_effective_conductivity_u": 0.02903753799339 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index 2a94a0fa..3de3360d 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.148738878922525, + "U": 2.1764748110516408, "gap_layer_effective_conductivities_shgc": [ - 0.0003482430051083695 + 0.00035546745492740563 ], "gap_layer_effective_conductivities_u": [ - 0.0003482430051084832 + 0.00035546745492748906 ], "layer_temperatures_shgc": [ - 258.01811140674096, - 258.27353630291145, - 282.3374270486927, - 282.5928519448631 + 258.0550636197065, + 258.31378554170664, + 282.19291046738505, + 282.45163238938505 ], "layer_temperatures_u": [ - 258.018111406741, - 258.27353630291145, - 282.3374270486966, - 282.592851944867 + 258.05506361970663, + 258.3137855417067, + 282.19291046738994, + 282.45163238938994 ], - "relative_heat_gain": 16.717188478223875, + "relative_heat_gain": 16.932974030211618, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.021128600449047803, - "system_effective_conductivity_u": 0.021128600448813734 + "system_effective_conductivity_shgc": 0.02155762561238335, + "system_effective_conductivity_u": 0.021557625612137983 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 209ed090..108b04b7 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7620455109974572, - "U": 2.4415847296387447, + "SHGC": 0.7619640439420802, + "U": 2.4605246766595537, "gap_layer_effective_conductivities_shgc": [ - 0.0004992985008975609 + 0.0005062712381896901 ], "gap_layer_effective_conductivities_u": [ - 0.00047538474656134787 + 0.0004824322810452587 ], "layer_temperatures_shgc": [ - 308.4185679976814, - 308.50280731484213, - 306.1530100079216, - 306.03067915525054 + 308.41430688314193, + 308.49827879660546, + 306.1635157871914, + 306.0409175308231 ], "layer_temperatures_u": [ - 304.1919324367916, - 304.13239683283604, - 300.02358223917054, - 299.96404663521497 + 304.18449114391007, + 304.1244937082733, + 300.04429464390876, + 299.98429720827187 ], - "relative_heat_gain": 571.6099118321808, + "relative_heat_gain": 571.6981869563188, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.9999999999999999 + 1.0 ], "solid_layer_effective_conductivities_u": [ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.17783733167004862, - "system_effective_conductivity_u": 0.028625294375865723 + "system_effective_conductivity_shgc": 0.17915280531837313, + "system_effective_conductivity_u": 0.02903753799339 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index 2a94a0fa..3de3360d 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.148738878922525, + "U": 2.1764748110516408, "gap_layer_effective_conductivities_shgc": [ - 0.0003482430051083695 + 0.00035546745492740563 ], "gap_layer_effective_conductivities_u": [ - 0.0003482430051084832 + 0.00035546745492748906 ], "layer_temperatures_shgc": [ - 258.01811140674096, - 258.27353630291145, - 282.3374270486927, - 282.5928519448631 + 258.0550636197065, + 258.31378554170664, + 282.19291046738505, + 282.45163238938505 ], "layer_temperatures_u": [ - 258.018111406741, - 258.27353630291145, - 282.3374270486966, - 282.592851944867 + 258.05506361970663, + 258.3137855417067, + 282.19291046738994, + 282.45163238938994 ], - "relative_heat_gain": 16.717188478223875, + "relative_heat_gain": 16.932974030211618, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.021128600449047803, - "system_effective_conductivity_u": 0.021128600448813734 + "system_effective_conductivity_shgc": 0.02155762561238335, + "system_effective_conductivity_u": 0.021557625612137983 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 7ff2881a..86d232de 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7651231803182329, - "U": 2.4415847300157116, + "SHGC": 0.7650383564372456, + "U": 2.4605246769514615, "gap_layer_effective_conductivities_shgc": [ - 0.0004988103164675271 + 0.0005057838494437278 ], "gap_layer_effective_conductivities_u": [ - 0.00047538474651539597 + 0.0004824322810142263 ], "layer_temperatures_shgc": [ - 308.28169759657453, - 308.3621984701863, - 306.08316436328425, - 305.96228154939587 + 308.2775626508381, + 308.3578041320915, + 306.09336652090053, + 305.97222431465366 ], "layer_temperatures_u": [ - 304.1919324367791, - 304.1323968328231, - 300.02358223942736, - 299.96404663547133 + 304.1844911439018, + 304.1244937082646, + 300.04429464407394, + 299.98429720843683 ], - "relative_heat_gain": 573.8417527185974, + "relative_heat_gain": 573.9275935676015, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 ], "solid_layer_effective_conductivities_u": [ 1.0, - 1.0 + 0.9999999999999999 ], - "system_effective_conductivity_shgc": 0.18152272169090694, - "system_effective_conductivity_u": 0.0286252943875561 + "system_effective_conductivity_shgc": 0.18285993077828328, + "system_effective_conductivity_u": 0.0290375380022171 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index 1ddbcdb3..3ffeda32 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.1487388789513524, + "U": 2.1764748110833376, "gap_layer_effective_conductivities_shgc": [ - 0.0003482430051083227 + 0.00035546745492738796 ], "gap_layer_effective_conductivities_u": [ - 0.00034824300510831864 + 0.0003554674549273489 ], "layer_temperatures_shgc": [ - 258.0181114067409, - 258.27353630291134, - 282.33742704869553, - 282.59285194486597 + 258.05506361970606, + 258.31378554170607, + 282.1929104673859, + 282.4516323893859 ], "layer_temperatures_u": [ - 258.01811140674096, - 258.27353630291145, - 282.3374270486927, - 282.5928519448631 + 258.0550636197065, + 258.31378554170664, + 282.19291046738505, + 282.45163238938505 ], - "relative_heat_gain": 16.71718847824373, + "relative_heat_gain": 16.9329740302294, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.02112860044903418, - "system_effective_conductivity_u": 0.021128600449039414 + "system_effective_conductivity_shgc": 0.021557625612372892, + "system_effective_conductivity_u": 0.02155762561237149 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index dd2dc1c2..73114949 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7638154310675828, - "U": 2.4415847300157116, + "SHGC": 0.7637299207505928, + "U": 2.4605246769514615, "gap_layer_effective_conductivities_shgc": [ - 0.0004990969608948412 + 0.0005060696908280243 ], "gap_layer_effective_conductivities_u": [ - 0.00047538474651539597 + 0.0004824322810142263 ], "layer_temperatures_shgc": [ - 308.33461352767904, - 308.4168736927842, - 306.1522183207549, - 306.03054405928407 + 308.3305052708444, + 308.4125076818283, + 306.1623450381003, + 306.04041302250823 ], "layer_temperatures_u": [ - 304.1919324367791, - 304.1323968328231, - 300.02358223942736, - 299.96404663547133 + 304.1844911439018, + 304.1244937082646, + 300.04429464407394, + 299.98429720843683 ], - "relative_heat_gain": 572.8934090378964, + "relative_heat_gain": 572.9787521024499, "solid_layer_effective_conductivities_shgc": [ 1.0, - 1.0 + 0.9999999999999999 ], "solid_layer_effective_conductivities_u": [ 1.0, - 1.0 + 0.9999999999999999 ], - "system_effective_conductivity_shgc": 0.18430373474535133, - "system_effective_conductivity_u": 0.0286252943875561 + "system_effective_conductivity_shgc": 0.18565740012515217, + "system_effective_conductivity_u": 0.0290375380022171 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index 1ddbcdb3..3ffeda32 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/rectangular/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.1487388789513524, + "U": 2.1764748110833376, "gap_layer_effective_conductivities_shgc": [ - 0.0003482430051083227 + 0.00035546745492738796 ], "gap_layer_effective_conductivities_u": [ - 0.00034824300510831864 + 0.0003554674549273489 ], "layer_temperatures_shgc": [ - 258.0181114067409, - 258.27353630291134, - 282.33742704869553, - 282.59285194486597 + 258.05506361970606, + 258.31378554170607, + 282.1929104673859, + 282.4516323893859 ], "layer_temperatures_u": [ - 258.01811140674096, - 258.27353630291145, - 282.3374270486927, - 282.5928519448631 + 258.0550636197065, + 258.31378554170664, + 282.19291046738505, + 282.45163238938505 ], - "relative_heat_gain": 16.71718847824373, + "relative_heat_gain": 16.9329740302294, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.02112860044903418, - "system_effective_conductivity_u": 0.021128600449039414 + "system_effective_conductivity_shgc": 0.021557625612372892, + "system_effective_conductivity_u": 0.02155762561237149 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index a6844ecf..80fe9199 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.763437717033908, - "U": 2.41941859571808, + "SHGC": 0.7633555506568916, + "U": 2.4386639650431765, "gap_layer_effective_conductivities_shgc": [ - 0.0004909023674520638 + 0.0004978761655090085 ], "gap_layer_effective_conductivities_u": [ - 0.0004672584039768526 + 0.0004743065160418783 ], "layer_temperatures_shgc": [ - 308.3710644039332, - 308.45386746100223, - 306.0711230959728, - 305.9499005237851 + 308.366710663169, + 308.4492405381346, + 306.0818696964905, + 305.96037394219934 ], "layer_temperatures_u": [ - 304.2006410797435, - 304.14164597481516, - 299.9993237378963, - 299.94032863296786 + 304.19307995992443, + 304.13361557591145, + 300.02038688214003, + 299.96092249812705 ], - "relative_heat_gain": 572.447048722253, + "relative_heat_gain": 572.5371928963319, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 ], "solid_layer_effective_conductivities_u": [ - 1.0, - 0.9999999999999999 + 0.9999999999999999, + 1.0 ], - "system_effective_conductivity_shgc": 0.17362320401679898, - "system_effective_conductivity_u": 0.028149518655283708 + "system_effective_conductivity_shgc": 0.17492379745827158, + "system_effective_conductivity_u": 0.028562193237921796 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index 5c4bb4a8..9cc2e296 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 2.1180170620389127, + "U": 2.146203678124785, "gap_layer_effective_conductivities_shgc": [ - 0.0003403679753019183 + 0.0003475881302989927 ], "gap_layer_effective_conductivities_u": [ - 0.0003403679753020971 + 0.00034758813029913457 ], "layer_temperatures_shgc": [ - 257.97717906754434, - 258.2289519997822, - 282.49758812735865, - 282.7493610595965 + 258.0147337039541, + 258.269857235726, + 282.3506402521386, + 282.6057637839105 ], "layer_temperatures_u": [ - 257.97717906754355, - 258.2289519997813, - 282.4975881273643, - 282.74936105960205 + 258.01473370395377, + 258.2698572357257, + 282.350640252142, + 282.6057637839139 ], - "relative_heat_gain": 16.47817274289778, + "relative_heat_gain": 16.697464616038218, "solid_layer_effective_conductivities_shgc": [ - 0.9999999999999998, + 1.0, 1.0 ], "solid_layer_effective_conductivities_u": [ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.020660518769894172, - "system_effective_conductivity_u": 0.020660518769611554 + "system_effective_conductivity_shgc": 0.02108969230661053, + "system_effective_conductivity_u": 0.02108969230635452 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 3e78dc59..c172351e 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7621398553847004, - "U": 2.41941859571808, + "SHGC": 0.7620569568815067, + "U": 2.4386639650431765, "gap_layer_effective_conductivities_shgc": [ - 0.0004911891860147552 + 0.0004981621741104576 ], "gap_layer_effective_conductivities_u": [ - 0.0004672584039768526 + 0.0004743065160418783 ], "layer_temperatures_shgc": [ - 308.423592893835, - 308.50814754921754, - 306.1406187761674, - 306.01860326171817 + 308.41926759965855, + 308.5035508202109, + 306.1512849643964, + 306.0289980151168 ], "layer_temperatures_u": [ - 304.2006410797435, - 304.14164597481516, - 299.9993237378963, - 299.94032863296786 + 304.19307995992443, + 304.13361557591145, + 300.02038688214003, + 299.96092249812705 ], - "relative_heat_gain": 571.5058752552823, + "relative_heat_gain": 571.595488513679, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 ], "solid_layer_effective_conductivities_u": [ - 1.0, - 0.9999999999999999 + 0.9999999999999999, + 1.0 ], - "system_effective_conductivity_shgc": 0.17630627270462215, - "system_effective_conductivity_u": 0.028149518655283708 + "system_effective_conductivity_shgc": 0.17762286547906905, + "system_effective_conductivity_u": 0.028562193237921796 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index 5c4bb4a8..9cc2e296 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 2.1180170620389127, + "U": 2.146203678124785, "gap_layer_effective_conductivities_shgc": [ - 0.0003403679753019183 + 0.0003475881302989927 ], "gap_layer_effective_conductivities_u": [ - 0.0003403679753020971 + 0.00034758813029913457 ], "layer_temperatures_shgc": [ - 257.97717906754434, - 258.2289519997822, - 282.49758812735865, - 282.7493610595965 + 258.0147337039541, + 258.269857235726, + 282.3506402521386, + 282.6057637839105 ], "layer_temperatures_u": [ - 257.97717906754355, - 258.2289519997813, - 282.4975881273643, - 282.74936105960205 + 258.01473370395377, + 258.2698572357257, + 282.350640252142, + 282.6057637839139 ], - "relative_heat_gain": 16.47817274289778, + "relative_heat_gain": 16.697464616038218, "solid_layer_effective_conductivities_shgc": [ - 0.9999999999999998, + 1.0, 1.0 ], "solid_layer_effective_conductivities_u": [ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.020660518769894172, - "system_effective_conductivity_u": 0.020660518769611554 + "system_effective_conductivity_shgc": 0.02108969230661053, + "system_effective_conductivity_u": 0.02108969230635452 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index d34eb5f9..682d6305 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7652215034796761, - "U": 2.419418596093161, + "SHGC": 0.7651351990140252, + "U": 2.4386639646429966, "gap_layer_effective_conductivities_shgc": [ - 0.000490701472361632 + 0.0004976752490366507 ], "gap_layer_effective_conductivities_u": [ - 0.00046725840392365675 + 0.00047430651609204466 ], "layer_temperatures_shgc": [ - 308.2865729415181, - 308.36737965765826, - 306.07113319376157, - 305.95055622240153 + 308.28237565898917, + 308.36291906890915, + 306.08149121373674, + 305.96065093615647 ], "layer_temperatures_u": [ - 304.2006410797272, - 304.14164597479817, - 299.99932373820513, - 299.94032863327607 + 304.1930799599371, + 304.13361557592475, + 300.0203868818585, + 299.96092249784607 ], - "relative_heat_gain": 573.7406014429013, + "relative_heat_gain": 573.8277447932071, "solid_layer_effective_conductivities_shgc": [ 1.0, - 1.0000000000000002 + 0.9999999999999999 ], "solid_layer_effective_conductivities_u": [ - 0.9999999999999999, - 0.9999999999999999 + 1.0, + 1.0 ], - "system_effective_conductivity_shgc": 0.17996660334628, - "system_effective_conductivity_u": 0.028149518667054518 + "system_effective_conductivity_shgc": 0.18130497610986496, + "system_effective_conductivity_u": 0.02856219322546675 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index 09e6f335..815cb876 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 2.118017062072488, + "U": 2.1462036781565117, "gap_layer_effective_conductivities_shgc": [ - 0.000340367975301885 + 0.00034758813029896294 ], "gap_layer_effective_conductivities_u": [ - 0.00034036797530186027 + 0.0003475881302990164 ], "layer_temperatures_shgc": [ - 257.97717906754417, - 258.228951999782, - 282.4975881273598, - 282.7493610595976 + 258.0147337039541, + 258.269857235726, + 282.35064025214035, + 282.60576378391227 ], "layer_temperatures_u": [ - 257.97717906754434, - 258.2289519997822, - 282.49758812735865, - 282.7493610595965 + 258.0147337039541, + 258.269857235726, + 282.3506402521386, + 282.6057637839105 ], - "relative_heat_gain": 16.478172742925327, + "relative_heat_gain": 16.697464616056827, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.9999999999999998 + 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.9999999999999998, - 0.9999999999999998 + 1.0, + 1.0 ], - "system_effective_conductivity_shgc": 0.020660518769882043, - "system_effective_conductivity_u": 0.02066051876988461 + "system_effective_conductivity_shgc": 0.02108969230660122, + "system_effective_conductivity_u": 0.02108969230659851 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index d83a81d2..afe07ff4 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7639145520589894, - "U": 2.419418596093161, + "SHGC": 0.7638275496825517, + "U": 2.4386639646429966, "gap_layer_effective_conductivities_shgc": [ - 0.0004909882364802248 + 0.0004979612080368039 ], "gap_layer_effective_conductivities_u": [ - 0.00046725840392365675 + 0.00047430651609204466 ], "layer_temperatures_shgc": [ - 308.33945784370815, - 308.4220219472536, - 306.1402750597955, - 306.01890473676497 + 308.33528769471275, + 308.41759015766723, + 306.15055635912444, + 306.028924395503 ], "layer_temperatures_u": [ - 304.2006410797272, - 304.14164597479817, - 299.99932373820513, - 299.94032863327607 + 304.1930799599371, + 304.13361557592475, + 300.0203868818585, + 299.96092249784607 ], - "relative_heat_gain": 572.7928363264223, + "relative_heat_gain": 572.8794735693067, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.9999999999999999, - 0.9999999999999999 + 1.0, + 1.0 ], - "system_effective_conductivity_shgc": 0.182728315158349, - "system_effective_conductivity_u": 0.028149518667054518 + "system_effective_conductivity_shgc": 0.1840831515417286, + "system_effective_conductivity_u": 0.02856219322546675 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index 09e6f335..815cb876 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/spherical/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 2.118017062072488, + "U": 2.1462036781565117, "gap_layer_effective_conductivities_shgc": [ - 0.000340367975301885 + 0.00034758813029896294 ], "gap_layer_effective_conductivities_u": [ - 0.00034036797530186027 + 0.0003475881302990164 ], "layer_temperatures_shgc": [ - 257.97717906754417, - 258.228951999782, - 282.4975881273598, - 282.7493610595976 + 258.0147337039541, + 258.269857235726, + 282.35064025214035, + 282.60576378391227 ], "layer_temperatures_u": [ - 257.97717906754434, - 258.2289519997822, - 282.49758812735865, - 282.7493610595965 + 258.0147337039541, + 258.269857235726, + 282.3506402521386, + 282.6057637839105 ], - "relative_heat_gain": 16.478172742925327, + "relative_heat_gain": 16.697464616056827, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.9999999999999998 + 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.9999999999999998, - 0.9999999999999998 + 1.0, + 1.0 ], - "system_effective_conductivity_shgc": 0.020660518769882043, - "system_effective_conductivity_u": 0.02066051876988461 + "system_effective_conductivity_shgc": 0.02108969230660122, + "system_effective_conductivity_u": 0.02108969230659851 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 34c8a942..7672cf47 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7633935420659257, - "U": 2.429886353693191, + "SHGC": 0.7633120478632672, + "U": 2.448987169204577, "gap_layer_effective_conductivities_shgc": [ - 0.0004947157996268652 + 0.00050168947803231 ], "gap_layer_effective_conductivities_u": [ - 0.00047107982440589024 + 0.000478127663187018 ], "layer_temperatures_shgc": [ - 308.3686767318636, - 308.4513299704188, - 306.07701696863427, - 305.95564457793273 + 308.3643535719733, + 308.44673554896735, + 306.08768704526665, + 305.966043393004 ], "layer_temperatures_u": [ - 304.19652852599097, - 304.13727817525944, - 300.0107820239627, - 299.9515316732311 + 304.1890241183955, + 304.1293080133494, + 300.0316791023931, + 299.9719629973471 ], - "relative_heat_gain": 572.4964534020106, + "relative_heat_gain": 572.5859604074346, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.9999999999999999 + 1.0 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.9999999999999999 + 1.0 ], - "system_effective_conductivity_shgc": 0.17433451185933402, - "system_effective_conductivity_u": 0.02837330974797139 + "system_effective_conductivity_shgc": 0.1756345818512362, + "system_effective_conductivity_u": 0.028785781451437138 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index 94afe388..3bdfa6a1 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.1325260623001006, + "U": 2.1604994271261115, "gap_layer_effective_conductivities_shgc": [ - 0.00034407066028330793 + 0.0003512928483127553 ], "gap_layer_effective_conductivities_u": [ - 0.00034407066028314205 + 0.0003512928483126351 ], "layer_temperatures_shgc": [ - 257.9965104650263, - 258.2500081111905, - 282.4219373189825, - 282.6754349651467 + 258.0337800451425, + 258.29060294123633, + 282.27614038139575, + 282.53296327748956 ], "layer_temperatures_u": [ - 257.9965104650262, - 258.25000811119037, - 282.4219373189775, - 282.6754349651417 + 258.03378004514326, + 258.2906029412371, + 282.2761403813927, + 282.53296327748654 ], - "relative_heat_gain": 16.591052764470057, + "relative_heat_gain": 16.80868554280962, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.02088065644709883, - "system_effective_conductivity_u": 0.020880656447350165 + "system_effective_conductivity_shgc": 0.021309761023532155, + "system_effective_conductivity_u": 0.02130976102378341 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 17227e84..191929d4 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7620952850164245, - "U": 2.429886353693191, + "SHGC": 0.7620130643838223, + "U": 2.448987169204577, "gap_layer_effective_conductivities_shgc": [ - 0.000495002558904819 + 0.0005019754283803133 ], "gap_layer_effective_conductivities_u": [ - 0.00047107982440589024 + 0.000478127663187018 ], "layer_temperatures_shgc": [ - 308.42122058985854, - 308.5056263703758, - 306.1464691181344, - 306.0243047288199 + 308.4169256561406, + 308.5010619087828, + 306.15705941789076, + 306.03462550070117 ], "layer_temperatures_u": [ - 304.19652852599097, - 304.13727817525944, - 300.0107820239627, - 299.9515316732311 + 304.1890241183955, + 304.1293080133494, + 300.0316791023931, + 299.9719629973471 ], - "relative_heat_gain": 571.5549932036535, + "relative_heat_gain": 571.6439734221632, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.9999999999999999 + 1.0 ], - "system_effective_conductivity_shgc": 0.17702640248949872, - "system_effective_conductivity_u": 0.02837330974797139 + "system_effective_conductivity_shgc": 0.17834246851956195, + "system_effective_conductivity_u": 0.028785781451437138 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index 94afe388..3bdfa6a1 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.1325260623001006, + "U": 2.1604994271261115, "gap_layer_effective_conductivities_shgc": [ - 0.00034407066028330793 + 0.0003512928483127553 ], "gap_layer_effective_conductivities_u": [ - 0.00034407066028314205 + 0.0003512928483126351 ], "layer_temperatures_shgc": [ - 257.9965104650263, - 258.2500081111905, - 282.4219373189825, - 282.6754349651467 + 258.0337800451425, + 258.29060294123633, + 282.27614038139575, + 282.53296327748956 ], "layer_temperatures_u": [ - 257.9965104650262, - 258.25000811119037, - 282.4219373189775, - 282.6754349651417 + 258.03378004514326, + 258.2906029412371, + 282.2761403813927, + 282.53296327748654 ], - "relative_heat_gain": 16.591052764470057, + "relative_heat_gain": 16.80868554280962, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.02088065644709883, - "system_effective_conductivity_u": 0.020880656447350165 + "system_effective_conductivity_shgc": 0.021309761023532155, + "system_effective_conductivity_u": 0.02130976102378341 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index c951c19c..b70b30e3 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7651750548986932, - "U": 2.429886353315449, + "SHGC": 0.7650894515505019, + "U": 2.4489871695048975, "gap_layer_effective_conductivities_shgc": [ - 0.0004945146229904342 + 0.0005014882844049094 ], "gap_layer_effective_conductivities_u": [ - 0.00047107982445607715 + 0.0004781276631525428 ], "layer_temperatures_shgc": [ - 308.28427123370886, - 308.36493355749633, - 306.07681355074016, - 305.9560921870275 + 308.28010344000626, + 308.3605043090607, + 306.08709783304124, + 305.9661150145955 ], "layer_temperatures_u": [ - 304.196528526005, - 304.13727817527405, - 300.01078202368103, - 299.95153167295 + 304.1890241183871, + 304.1293080133406, + 300.031679102583, + 299.97196299753654 ], - "relative_heat_gain": 573.7883573635676, + "relative_heat_gain": 573.8748845278627, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.9999999999999999 + 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.9999999999999999, - 0.9999999999999999 + 1.0, + 1.0 ], - "system_effective_conductivity_shgc": 0.18069852357083918, - "system_effective_conductivity_u": 0.028373309736142382 + "system_effective_conductivity_shgc": 0.1820363486027939, + "system_effective_conductivity_u": 0.028785781460665613 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index a37d7c75..acbc02eb 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.132526062268414, + "U": 2.160499427093698, "gap_layer_effective_conductivities_shgc": [ - 0.00034407066028326397 + 0.00035129284831277155 ], "gap_layer_effective_conductivities_u": [ - 0.00034407066028329953 + 0.0003512928483127793 ], "layer_temperatures_shgc": [ - 257.99651046502635, - 258.2500081111905, - 282.4219373189868, - 282.675434965151 + 258.0337800451432, + 258.29060294123707, + 282.27614038139654, + 282.5329632774904 ], "layer_temperatures_u": [ - 257.9965104650263, - 258.2500081111905, - 282.4219373189825, - 282.6754349651467 + 258.0337800451425, + 258.29060294123633, + 282.27614038139575, + 282.53296327748956 ], - "relative_heat_gain": 16.59105276444818, + "relative_heat_gain": 16.808685542789146, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.020880656447110266, - "system_effective_conductivity_u": 0.02088065644710831 + "system_effective_conductivity_shgc": 0.02130976102354288, + "system_effective_conductivity_u": 0.021309761023542727 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index e63bbd50..47324a19 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7638677266490245, - "U": 2.429886353315449, + "SHGC": 0.763781430820366, + "U": 2.4489871695048975, "gap_layer_effective_conductivities_shgc": [ - 0.0004948013305710512 + 0.0005017741878477931 ], "gap_layer_effective_conductivities_u": [ - 0.00047107982445607715 + 0.0004781276631525428 ], "layer_temperatures_shgc": [ - 308.33717079115775, - 308.41959140168444, - 306.14591389332907, - 306.02440007727967 + 308.33302992052495, + 308.41519072898154, + 306.156122061111, + 306.0343484429916 ], "layer_temperatures_u": [ - 304.196528526005, - 304.13727817527405, - 300.01078202368103, - 299.95153167295 + 304.1890241183871, + 304.1293080133406, + 300.031679102583, + 299.97196299753654 ], - "relative_heat_gain": 572.8403189811818, + "relative_heat_gain": 572.9263439776778, "solid_layer_effective_conductivities_shgc": [ - 1.0, + 0.9999999999999998, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.9999999999999999, - 0.9999999999999999 + 1.0, + 1.0 ], - "system_effective_conductivity_shgc": 0.18346931271185168, - "system_effective_conductivity_u": 0.028373309736142382 + "system_effective_conductivity_shgc": 0.18482359790593728, + "system_effective_conductivity_u": 0.028785781460665613 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index a37d7c75..acbc02eb 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/triangular/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,25 +1,25 @@ { "SHGC": 0.0, - "U": 2.132526062268414, + "U": 2.160499427093698, "gap_layer_effective_conductivities_shgc": [ - 0.00034407066028326397 + 0.00035129284831277155 ], "gap_layer_effective_conductivities_u": [ - 0.00034407066028329953 + 0.0003512928483127793 ], "layer_temperatures_shgc": [ - 257.99651046502635, - 258.2500081111905, - 282.4219373189868, - 282.675434965151 + 258.0337800451432, + 258.29060294123707, + 282.27614038139654, + 282.5329632774904 ], "layer_temperatures_u": [ - 257.9965104650263, - 258.2500081111905, - 282.4219373189825, - 282.6754349651467 + 258.0337800451425, + 258.29060294123633, + 282.27614038139575, + 282.53296327748956 ], - "relative_heat_gain": 16.59105276444818, + "relative_heat_gain": 16.808685542789146, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.020880656447110266, - "system_effective_conductivity_u": 0.02088065644710831 + "system_effective_conductivity_shgc": 0.02130976102354288, + "system_effective_conductivity_u": 0.021309761023542727 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 8f757528..412c1a98 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7631519515868148, - "U": 2.4872618555500385, + "SHGC": 0.7630740823382742, + "U": 2.5055805098211628, "gap_layer_effective_conductivities_shgc": [ - 0.0005161406180590323 + 0.000523113646434025 ], "gap_layer_effective_conductivities_u": [ - 0.0004925482248335116 + 0.000499594585544765 ], "layer_temperatures_shgc": [ - 308.3555687071471, - 308.43739947739004, - 306.10936331660594, - 305.9871684575922 + 308.3514114861345, + 308.43298141580783, + 306.1196183591554, + 305.9971626595719 ], "layer_temperatures_u": [ - 304.17398616119175, - 304.1133367661641, - 300.07351003552867, - 300.01286064050106 + 304.16678863409646, + 304.10569255698994, + 300.09351054753245, + 300.032414470426 ], - "relative_heat_gain": 572.7676400621426, + "relative_heat_gain": 572.853690560922, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.9999999999999999, + 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.17832572989534914, - "system_effective_conductivity_u": 0.029628666306163943 + "system_effective_conductivity_shgc": 0.17962287474100697, + "system_effective_conductivity_u": 0.030040004527992745 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index 9e837f48..d85ceecf 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 2.212022218785785, + "U": 2.2388401067433126, "gap_layer_effective_conductivities_shgc": [ - 0.00036489000702712366 + 0.0003721231854187356 ], "gap_layer_effective_conductivities_u": [ - 0.0003648900070271895 + 0.0003721231854187515 ], "layer_temperatures_shgc": [ - 258.102420362107, - 258.3653678756939, - 282.00779843625315, - 282.27074594984 + 258.13814558891005, + 258.4042809985699, + 281.86822186103433, + 282.1343572706942 ], "layer_temperatures_u": [ - 258.1024203621072, - 258.3653678756941, - 282.00779843625634, - 282.27074594984316 + 258.13814558891005, + 258.4042809985699, + 281.8682218610342, + 282.13435727069407 ], - "relative_heat_gain": 17.20953286237146, + "relative_heat_gain": 17.41817603030919, "solid_layer_effective_conductivities_shgc": [ - 1.0, - 1.0 + 0.9999999999999998, + 0.9999999999999998 ], "solid_layer_effective_conductivities_u": [ 1.0, - 1.0 + 0.9999999999999998 ], - "system_effective_conductivity_shgc": 0.022116629962086926, - "system_effective_conductivity_u": 0.022116629961871893 + "system_effective_conductivity_shgc": 0.022545321024427516, + "system_effective_conductivity_u": 0.022545321024568556 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 72193024..4df09a80 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7618515292788591, - "U": 2.4872618555500385, + "SHGC": 0.7617729643795491, + "U": 2.5055805098211628, "gap_layer_effective_conductivities_shgc": [ - 0.0005164270528994415 + 0.000523399277924729 ], "gap_layer_effective_conductivities_u": [ - 0.0004925482248335116 + 0.000499594585544765 ], "layer_temperatures_shgc": [ - 308.4081967311582, - 308.4917852109345, - 306.17857718294704, - 306.05559549289154 + 308.40406654454557, + 308.4873958439812, + 306.1887558818612, + 306.065515011465 ], "layer_temperatures_u": [ - 304.17398616119175, - 304.1133367661641, - 300.07351003552867, - 300.01286064050106 + 304.16678863409646, + 304.10569255698994, + 300.09351054753245, + 300.032414470426 ], - "relative_heat_gain": 571.8246096781463, + "relative_heat_gain": 571.9101557101593, "solid_layer_effective_conductivities_shgc": [ 1.0, 0.9999999999999999 ], "solid_layer_effective_conductivities_u": [ - 0.9999999999999999, + 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.18106715276209115, - "system_effective_conductivity_u": 0.029628666306163943 + "system_effective_conductivity_shgc": 0.18238027502679374, + "system_effective_conductivity_u": 0.030040004527992745 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index 9e837f48..d85ceecf 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 2.212022218785785, + "U": 2.2388401067433126, "gap_layer_effective_conductivities_shgc": [ - 0.00036489000702712366 + 0.0003721231854187356 ], "gap_layer_effective_conductivities_u": [ - 0.0003648900070271895 + 0.0003721231854187515 ], "layer_temperatures_shgc": [ - 258.102420362107, - 258.3653678756939, - 282.00779843625315, - 282.27074594984 + 258.13814558891005, + 258.4042809985699, + 281.86822186103433, + 282.1343572706942 ], "layer_temperatures_u": [ - 258.1024203621072, - 258.3653678756941, - 282.00779843625634, - 282.27074594984316 + 258.13814558891005, + 258.4042809985699, + 281.8682218610342, + 282.13435727069407 ], - "relative_heat_gain": 17.20953286237146, + "relative_heat_gain": 17.41817603030919, "solid_layer_effective_conductivities_shgc": [ - 1.0, - 1.0 + 0.9999999999999998, + 0.9999999999999998 ], "solid_layer_effective_conductivities_u": [ 1.0, - 1.0 + 0.9999999999999998 ], - "system_effective_conductivity_shgc": 0.022116629962086926, - "system_effective_conductivity_u": 0.022116629961871893 + "system_effective_conductivity_shgc": 0.022545321024427516, + "system_effective_conductivity_u": 0.022545321024568556 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 7cc5c3db..bfd855d9 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7649209811547549, - "U": 2.4872618558313673, + "SHGC": 0.7648391597557764, + "U": 2.5055805100510424, "gap_layer_effective_conductivities_shgc": [ - 0.0005159378968770335 + 0.0005229109321088954 ], "gap_layer_effective_conductivities_u": [ - 0.0004925482248093489 + 0.0004995945855267514 ], "layer_temperatures_shgc": [ - 308.27163521558253, - 308.35150486342025, - 306.1079882745545, - 305.986474234892 + 308.26762743502513, + 308.3472456744318, + 306.1178726268879, + 305.9961071787943 ], "layer_temperatures_u": [ - 304.1739861611881, - 304.1133367661602, - 300.0735100356544, - 300.0128606406265 + 304.1667886340939, + 304.10569255698726, + 300.0935105476226, + 300.0324144705159 ], - "relative_heat_gain": 574.0504915038266, + "relative_heat_gain": 574.1336760123055, "solid_layer_effective_conductivities_shgc": [ - 1.0, - 1.0 + 0.9999999999999998, + 0.9999999999999999 ], "solid_layer_effective_conductivities_u": [ - 0.9999999999999999, - 0.9999999999999999 + 1.0, + 1.0 ], - "system_effective_conductivity_shgc": 0.18480530614683183, - "system_effective_conductivity_u": 0.02962866631458635 + "system_effective_conductivity_shgc": 0.18614007013234515, + "system_effective_conductivity_u": 0.030040004534754878 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index d0c5a7cf..8ecc7b19 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 2.212022218815426, + "U": 2.238840106722484, "gap_layer_effective_conductivities_shgc": [ - 0.00036489000702709466 + 0.00037212318541874316 ], "gap_layer_effective_conductivities_u": [ - 0.0003648900070271327 + 0.0003721231854187213 ], "layer_temperatures_shgc": [ - 258.1024203621066, - 258.36536787569344, - 282.00779843625514, - 282.27074594984197 + 258.13814558891033, + 258.4042809985702, + 281.8682218610337, + 282.1343572706935 ], "layer_temperatures_u": [ - 258.102420362107, - 258.3653678756939, - 282.00779843625315, - 282.27074594984 + 258.13814558891005, + 258.4042809985699, + 281.86822186103433, + 282.1343572706942 ], - "relative_heat_gain": 17.209532862383938, + "relative_heat_gain": 17.418176030303464, "solid_layer_effective_conductivities_shgc": [ - 1.0, + 0.9999999999999998, 1.0 ], "solid_layer_effective_conductivities_u": [ 1.0, - 1.0 + 0.9999999999999998 ], - "system_effective_conductivity_shgc": 0.02211662996208157, - "system_effective_conductivity_u": 0.022116629962087825 + "system_effective_conductivity_shgc": 0.022545321024427734, + "system_effective_conductivity_u": 0.022545321024428387 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 262b3ec3..b9ed684d 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.7636115893902787, - "U": 2.4872618558313673, + "SHGC": 0.7635291048828974, + "U": 2.5055805100510424, "gap_layer_effective_conductivities_shgc": [ - 0.0005162242950449037 + 0.0005231965314581029 ], "gap_layer_effective_conductivities_u": [ - 0.0004925482248093489 + 0.0004995945855267514 ], "layer_temperatures_shgc": [ - 308.32461503273674, - 308.4062478920653, - 306.17686132071265, - 306.05455975346524 + 308.32063303727455, + 308.40201607073607, + 306.186672833652, + 306.06412144053763 ], "layer_temperatures_u": [ - 304.1739861611881, - 304.1133367661602, - 300.0735100356544, - 300.0128606406265 + 304.1667886340939, + 304.10569255698726, + 300.0935105476226, + 300.0324144705159 ], - "relative_heat_gain": 573.1009567173443, + "relative_heat_gain": 573.1836603579028, "solid_layer_effective_conductivities_shgc": [ - 0.9999999999999998, + 1.0, 0.9999999999999999 ], "solid_layer_effective_conductivities_u": [ - 0.9999999999999999, - 0.9999999999999999 + 1.0, + 1.0 ], - "system_effective_conductivity_shgc": 0.18762706108415206, - "system_effective_conductivity_u": 0.02962866631458635 + "system_effective_conductivity_shgc": 0.18897826596014103, + "system_effective_conductivity_u": 0.030040004534754878 } diff --git a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index d0c5a7cf..8ecc7b19 100644 --- a/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_102_NFRC_102_vacuum/truncated_cone/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 2.212022218815426, + "U": 2.238840106722484, "gap_layer_effective_conductivities_shgc": [ - 0.00036489000702709466 + 0.00037212318541874316 ], "gap_layer_effective_conductivities_u": [ - 0.0003648900070271327 + 0.0003721231854187213 ], "layer_temperatures_shgc": [ - 258.1024203621066, - 258.36536787569344, - 282.00779843625514, - 282.27074594984197 + 258.13814558891033, + 258.4042809985702, + 281.8682218610337, + 282.1343572706935 ], "layer_temperatures_u": [ - 258.102420362107, - 258.3653678756939, - 282.00779843625315, - 282.27074594984 + 258.13814558891005, + 258.4042809985699, + 281.86822186103433, + 282.1343572706942 ], - "relative_heat_gain": 17.209532862383938, + "relative_heat_gain": 17.418176030303464, "solid_layer_effective_conductivities_shgc": [ - 1.0, + 0.9999999999999998, 1.0 ], "solid_layer_effective_conductivities_u": [ 1.0, - 1.0 + 0.9999999999999998 ], - "system_effective_conductivity_shgc": 0.02211662996208157, - "system_effective_conductivity_u": 0.022116629962087825 + "system_effective_conductivity_shgc": 0.022545321024427734, + "system_effective_conductivity_u": 0.022545321024428387 } diff --git a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index 95c1f16e..fcf60e2e 100644 --- a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.2275086104959607, + "U": 3.2275086104960797, "gap_layer_effective_conductivities_shgc": [ - 0.07594394698258718 + 0.07594394698258415 ], "gap_layer_effective_conductivities_u": [ - 0.07594394698259048 + 0.07594394698258924 ], "layer_temperatures_shgc": [ - 257.60570684547054, - 257.91091512981427, - 276.75784800024655, - 277.14150841604 + 257.6057068454707, + 257.9109151298144, + 276.7578480002485, + 277.141508416042 ], "layer_temperatures_u": [ - 257.60570684547076, - 257.91091512981444, - 276.75784800024974, - 277.14150841604317 + 257.60570684547065, + 257.9109151298144, + 276.75784800024786, + 277.14150841604135 ], - "relative_heat_gain": 25.110016989804702, + "relative_heat_gain": 25.110016989804688, "solid_layer_effective_conductivities_shgc": [ - 0.5020877735343855, + 0.5020877735344186, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.5020877735343872, + 0.5020877735343876, 1.0 ], - "system_effective_conductivity_shgc": 0.11128235759534554, - "system_effective_conductivity_u": 0.11128235759501741 + "system_effective_conductivity_shgc": 0.11128235759534262, + "system_effective_conductivity_u": 0.1112823575950168 } diff --git a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 73eb3d9c..8ca3c459 100644 --- a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,17 +1,17 @@ { - "SHGC": 0.4006485987092683, + "SHGC": 0.40064859870925895, "U": 3.4119858135834864, "gap_layer_effective_conductivities_shgc": [ - 0.06715461753533031 + 0.06715461753532748 ], "gap_layer_effective_conductivities_u": [ 0.10573601232800196 ], "layer_temperatures_shgc": [ - 322.32086551856037, - 322.82816503881884, - 309.15829747739167, - 308.9176147341875 + 322.3208655185602, + 322.8281650388187, + 309.158297477391, + 308.9176147341868 ], "layer_temperatures_u": [ 304.3216690864252, @@ -19,15 +19,15 @@ 301.0683027154551, 300.98510485072075 ], - "relative_heat_gain": 317.08456103879314, + "relative_heat_gain": 317.08456103878376, "solid_layer_effective_conductivities_shgc": [ - 0.39061866543992857, - 1.0 + 0.3906186654399284, + 0.9999999999999999 ], "solid_layer_effective_conductivities_u": [ 0.5468818226315201, 1.0 ], - "system_effective_conductivity_shgc": 0.12090853199817693, + "system_effective_conductivity_shgc": 0.12090853199817814, "system_effective_conductivity_u": 0.14129384711529624 } diff --git a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index 95c1f16e..fcf60e2e 100644 --- a/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/User_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.2275086104959607, + "U": 3.2275086104960797, "gap_layer_effective_conductivities_shgc": [ - 0.07594394698258718 + 0.07594394698258415 ], "gap_layer_effective_conductivities_u": [ - 0.07594394698259048 + 0.07594394698258924 ], "layer_temperatures_shgc": [ - 257.60570684547054, - 257.91091512981427, - 276.75784800024655, - 277.14150841604 + 257.6057068454707, + 257.9109151298144, + 276.7578480002485, + 277.141508416042 ], "layer_temperatures_u": [ - 257.60570684547076, - 257.91091512981444, - 276.75784800024974, - 277.14150841604317 + 257.60570684547065, + 257.9109151298144, + 276.75784800024786, + 277.14150841604135 ], - "relative_heat_gain": 25.110016989804702, + "relative_heat_gain": 25.110016989804688, "solid_layer_effective_conductivities_shgc": [ - 0.5020877735343855, + 0.5020877735344186, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.5020877735343872, + 0.5020877735343876, 1.0 ], - "system_effective_conductivity_shgc": 0.11128235759534554, - "system_effective_conductivity_u": 0.11128235759501741 + "system_effective_conductivity_shgc": 0.11128235759534262, + "system_effective_conductivity_u": 0.1112823575950168 } diff --git a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index ca0375ad..04abab1e 100644 --- a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.2275086105150854, + "U": 3.2275086105154496, "gap_layer_effective_conductivities_shgc": [ - 0.07594394698258289 + 0.07594394698258783 ], "gap_layer_effective_conductivities_u": [ - 0.07594394698258779 + 0.0759439469825814 ], "layer_temperatures_shgc": [ - 257.6057068454707, - 257.9109151298144, - 276.7578480002488, - 277.14150841604226 + 257.6057068454705, + 257.91091512981416, + 276.75784800024553, + 277.14150841603896 ], "layer_temperatures_u": [ - 257.6057068454706, - 257.9109151298143, - 276.7578480002478, - 277.14150841604123 + 257.60570684547065, + 257.9109151298144, + 276.75784800024746, + 277.1415084160409 ], - "relative_heat_gain": 25.110016989808987, + "relative_heat_gain": 25.110016989809626, "solid_layer_effective_conductivities_shgc": [ - 0.5020877735343798, + 0.5020877735343626, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.5020877735343522, + 0.5020877735343807, 1.0 ], - "system_effective_conductivity_shgc": 0.1112823575953517, - "system_effective_conductivity_u": 0.11128235759536129 + "system_effective_conductivity_shgc": 0.11128235759533162, + "system_effective_conductivity_u": 0.11128235759535648 } diff --git a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index b5209ae1..90c88c2c 100644 --- a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,17 +1,17 @@ { - "SHGC": 0.4012215390177919, + "SHGC": 0.40122153901779567, "U": 3.4119858136166505, "gap_layer_effective_conductivities_shgc": [ - 0.0672471713918365 + 0.06724717139183657 ], "gap_layer_effective_conductivities_u": [ 0.1057360123278273 ], "layer_temperatures_shgc": [ - 322.27569453250555, - 322.7812067669305, + 322.2756945325059, + 322.78120676693095, 309.1009137710485, - 308.86067851597045 + 308.8606785159704 ], "layer_temperatures_u": [ 304.3216690864255, @@ -19,15 +19,15 @@ 301.06830271545897, 300.9851048507245 ], - "relative_heat_gain": 317.5000415453465, + "relative_heat_gain": 317.50004154533735, "solid_layer_effective_conductivities_shgc": [ - 0.39032970884800383, + 0.3903297088480047, 0.9999999999999999 ], "solid_layer_effective_conductivities_u": [ 0.5468818226313974, 1.0 ], - "system_effective_conductivity_shgc": 0.12014693449641556, + "system_effective_conductivity_shgc": 0.12014693449642241, "system_effective_conductivity_u": 0.14129384711859103 } diff --git a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index ca0375ad..04abab1e 100644 --- a/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/User_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 3.2275086105150854, + "U": 3.2275086105154496, "gap_layer_effective_conductivities_shgc": [ - 0.07594394698258289 + 0.07594394698258783 ], "gap_layer_effective_conductivities_u": [ - 0.07594394698258779 + 0.0759439469825814 ], "layer_temperatures_shgc": [ - 257.6057068454707, - 257.9109151298144, - 276.7578480002488, - 277.14150841604226 + 257.6057068454705, + 257.91091512981416, + 276.75784800024553, + 277.14150841603896 ], "layer_temperatures_u": [ - 257.6057068454706, - 257.9109151298143, - 276.7578480002478, - 277.14150841604123 + 257.60570684547065, + 257.9109151298144, + 276.75784800024746, + 277.1415084160409 ], - "relative_heat_gain": 25.110016989808987, + "relative_heat_gain": 25.110016989809626, "solid_layer_effective_conductivities_shgc": [ - 0.5020877735343798, + 0.5020877735343626, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.5020877735343522, + 0.5020877735343807, 1.0 ], - "system_effective_conductivity_shgc": 0.1112823575953517, - "system_effective_conductivity_u": 0.11128235759536129 + "system_effective_conductivity_shgc": 0.11128235759533162, + "system_effective_conductivity_u": 0.11128235759535648 } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 3a413291..6578f7f9 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,17 +1,17 @@ { - "SHGC": 0.6868042697778004, + "SHGC": 0.6868042697778229, "U": 3.512139090921914, "gap_layer_effective_conductivities_shgc": [ - 0.041034646774867366 + 0.04103464677486898 ], "gap_layer_effective_conductivities_u": [ 0.10679983500182168 ], "layer_temperatures_shgc": [ - 313.1341295412933, - 313.2919105636493, - 306.8840815131101, - 306.7423120519067 + 313.13412954129336, + 313.29191056364937, + 306.8840815131106, + 306.7423120519073 ], "layer_temperatures_u": [ 304.4672993159638, @@ -19,15 +19,15 @@ 301.174390431332, 301.0887504290042 ], - "relative_heat_gain": 525.3759522462203, + "relative_heat_gain": 525.3759522462149, "solid_layer_effective_conductivities_shgc": [ - 0.3564972160130334, + 0.3564972160130539, 1.0 ], "solid_layer_effective_conductivities_u": [ 0.6800728735557491, 1.0 ], - "system_effective_conductivity_shgc": 0.1946600837013564, + "system_effective_conductivity_shgc": 0.1946600837014382, "system_effective_conductivity_u": 0.13857666725702927 } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 56cc1a01..fc2ad699 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -2,16 +2,16 @@ "SHGC": 0.6187819699442215, "U": 3.512139090921914, "gap_layer_effective_conductivities_shgc": [ - 0.04302476960704847 + 0.04302476960704495 ], "gap_layer_effective_conductivities_u": [ 0.10679983500182168 ], "layer_temperatures_shgc": [ - 315.1650548788804, - 315.3605167583377, - 307.0640435054074, - 306.91018170360445 + 315.1650548788799, + 315.3605167583372, + 307.06404350540464, + 306.91018170360167 ], "layer_temperatures_u": [ 304.4672993159638, @@ -19,9 +19,9 @@ 301.174390431332, 301.0887504290042 ], - "relative_heat_gain": 476.0480568841209, + "relative_heat_gain": 476.04805688412205, "solid_layer_effective_conductivities_shgc": [ - 0.35282604296290937, + 0.35282604296289644, 1.0 ], "solid_layer_effective_conductivities_u": [ diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index fd839a67..fc7748ea 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,17 +1,17 @@ { - "SHGC": 0.6877111307421748, + "SHGC": 0.6877111307421737, "U": 3.512139090988507, "gap_layer_effective_conductivities_shgc": [ - 0.04186522044737555 + 0.041865220447362794 ], "gap_layer_effective_conductivities_u": [ 0.10679983500162636 ], "layer_temperatures_shgc": [ - 313.0973861988161, - 313.25394552495857, - 306.7782697690466, - 306.6368282383135 + 313.097386198817, + 313.2539455249595, + 306.77826976904385, + 306.63682823831084 ], "layer_temperatures_u": [ 304.4672993159637, @@ -19,15 +19,15 @@ 301.1743904313363, 301.0887504290084 ], - "relative_heat_gain": 526.033582800497, + "relative_heat_gain": 526.0335828005042, "solid_layer_effective_conductivities_shgc": [ - 0.35455739231214134, - 0.9999999999999998 + 0.3545573923121366, + 1.0 ], "solid_layer_effective_conductivities_u": [ 0.6800728735550791, 1.0 ], - "system_effective_conductivity_shgc": 0.19023316165477908, + "system_effective_conductivity_shgc": 0.19023316165480153, "system_effective_conductivity_u": 0.13857666726344045 } diff --git a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 526b96dd..7f192588 100644 --- a/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/User_Vertical_Venetian_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,17 +1,17 @@ { - "SHGC": 0.6195983970694802, + "SHGC": 0.619598397069481, "U": 3.512139090988507, "gap_layer_effective_conductivities_shgc": [ - 0.043573793486924375 + 0.04357379348692639 ], "gap_layer_effective_conductivities_u": [ 0.10679983500162636 ], "layer_temperatures_shgc": [ - 315.12266996918754, - 315.3168760948229, - 306.96934244030615, - 306.81582440068087 + 315.1226699691886, + 315.316876094824, + 306.96934244031, + 306.8158244006848 ], "layer_temperatures_u": [ 304.4672993159637, @@ -19,15 +19,15 @@ 301.1743904313363, 301.0887504290084 ], - "relative_heat_gain": 476.6401073130134, + "relative_heat_gain": 476.6401073130116, "solid_layer_effective_conductivities_shgc": [ - 0.35142576067500225, + 0.35142576067499093, 1.0 ], "solid_layer_effective_conductivities_u": [ 0.6800728735550791, 1.0 ], - "system_effective_conductivity_shgc": 0.15106251759010023, + "system_effective_conductivity_shgc": 0.15106251759006883, "system_effective_conductivity_u": 0.13857666726344045 } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 370a989c..0d60b038 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,10 +1,10 @@ { - "SHGC": 0.14914749525993493, + "SHGC": 0.1491474952599054, "U": 0.9236681868308737, "gap_layer_effective_conductivities_shgc": [ - 0.10190367053542271, - 0.024196524024018343, - 0.11076597312328632 + 0.10190367053544434, + 0.024196524024018548, + 0.11076597312328174 ], "gap_layer_effective_conductivities_u": [ 0.0773552018108165, @@ -12,14 +12,14 @@ 0.09273589449601922 ], "layer_temperatures_shgc": [ - 339.7810871078548, - 341.3411349423401, - 336.69751600373104, - 336.56935132754006, - 311.98577398521206, - 311.720145226784, - 306.5612550252955, - 306.262920966499 + 339.7810871078543, + 341.34113494233964, + 336.6975160037316, + 336.5693513275407, + 311.9857739852148, + 311.7201452267867, + 306.56125502529807, + 306.2629209665015 ], "layer_temperatures_u": [ 304.69079233195237, @@ -31,12 +31,12 @@ 298.0772319213014, 298.0391300630777 ], - "relative_heat_gain": 115.34378765637024, + "relative_heat_gain": 115.34378765640359, "solid_layer_effective_conductivities_shgc": [ - 0.9999999999999999, + 1.0, 1.0, 1.000344821148416, - 0.17569138154745453 + 0.17569138154744415 ], "solid_layer_effective_conductivities_u": [ 1.0, @@ -44,6 +44,6 @@ 1.000344832952456, 0.17349344944757428 ], - "system_effective_conductivity_shgc": 0.12243296033270315, + "system_effective_conductivity_shgc": 0.12243296033269695, "system_effective_conductivity_u": 0.0525913065484085 } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index 7bbb77f9..de0e1502 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,49 +1,49 @@ { "SHGC": 0.0, - "U": 0.9150662116930626, + "U": 0.9150662116935239, "gap_layer_effective_conductivities_shgc": [ - 0.05390132823666392, - 0.0216180794391176, - 0.08683764219990903 + 0.05390132823666048, + 0.021618079439117702, + 0.08683764219991606 ], "gap_layer_effective_conductivities_u": [ - 0.053901328237860514, - 0.021618079439099984, - 0.08683764219891985 + 0.053901328237853346, + 0.021618079439099956, + 0.08683764219894333 ], "layer_temperatures_shgc": [ 256.48939392979423, - 256.7006644195453, - 265.10921963764986, - 265.2179953918751, - 286.183423707721, - 286.3564987661871, - 290.7963149143998, - 290.9405817014992 + 256.7006644195452, + 265.1092196376501, + 265.2179953918753, + 286.1834237077219, + 286.35649876618805, + 290.7963149144001, + 290.94058170149947 ], "layer_temperatures_u": [ - 256.48939392980606, - 256.70066441955885, - 265.1092196379194, - 265.21799539214555, - 286.18342370821244, - 286.3564987666801, - 290.7963149147862, - 290.9405817018813 + 256.4893939298058, + 256.7006644195585, + 265.10921963791407, + 265.21799539214015, + 286.1834237082074, + 286.3564987666751, + 290.7963149147844, + 290.9405817018795 ], - "relative_heat_gain": 7.119215128178993, + "relative_heat_gain": 7.119215128174528, "solid_layer_effective_conductivities_shgc": [ - 1.0000000000000002, 1.0, + 1.0000000000000002, 1.0003447898816213, - 0.17348329068022617 + 0.1734832906802519 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.9999999999999999, + 1.0, 1.0003447898816216, - 0.1734832906789804 + 0.17348329067895418 ], - "system_effective_conductivity_shgc": 0.038444544865306636, - "system_effective_conductivity_u": 0.03844454485919372 + "system_effective_conductivity_shgc": 0.03844454486529774, + "system_effective_conductivity_u": 0.03844454485920177 } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 4be60a72..5d9bb69b 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,10 +1,10 @@ { - "SHGC": 0.15084671096255498, + "SHGC": 0.15084671096256427, "U": 0.9236681868308737, "gap_layer_effective_conductivities_shgc": [ - 0.10211283490769152, - 0.024217701813438384, - 0.11088135068770498 + 0.10211283490771075, + 0.024217701813438443, + 0.1108813506876928 ], "gap_layer_effective_conductivities_u": [ 0.0773552018108165, @@ -12,14 +12,14 @@ 0.09273589449601922 ], "layer_temperatures_shgc": [ - 340.0486625046289, - 341.6211004300303, - 336.95809057591396, - 336.8291126447964, - 312.1090583824323, - 311.841149651003, - 306.64189998311826, - 306.34104730624324 + 340.04866250462896, + 341.6211004300304, + 336.95809057591464, + 336.8291126447971, + 312.1090583824338, + 311.84114965100446, + 306.64189998311883, + 306.3410473062438 ], "layer_temperatures_u": [ 304.69079233195237, @@ -31,12 +31,12 @@ 298.0772319213014, 298.0391300630777 ], - "relative_heat_gain": 116.57601200990491, + "relative_heat_gain": 116.57601200991833, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0, 1.0003448209691828, - 0.1757068086828251 + 0.17570680868282396 ], "solid_layer_effective_conductivities_u": [ 1.0, @@ -44,6 +44,6 @@ 1.000344832952456, 0.17349344944757428 ], - "system_effective_conductivity_shgc": 0.12289845894702796, + "system_effective_conductivity_shgc": 0.12289845894703531, "system_effective_conductivity_u": 0.0525913065484085 } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index 7bbb77f9..de0e1502 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,49 +1,49 @@ { "SHGC": 0.0, - "U": 0.9150662116930626, + "U": 0.9150662116935239, "gap_layer_effective_conductivities_shgc": [ - 0.05390132823666392, - 0.0216180794391176, - 0.08683764219990903 + 0.05390132823666048, + 0.021618079439117702, + 0.08683764219991606 ], "gap_layer_effective_conductivities_u": [ - 0.053901328237860514, - 0.021618079439099984, - 0.08683764219891985 + 0.053901328237853346, + 0.021618079439099956, + 0.08683764219894333 ], "layer_temperatures_shgc": [ 256.48939392979423, - 256.7006644195453, - 265.10921963764986, - 265.2179953918751, - 286.183423707721, - 286.3564987661871, - 290.7963149143998, - 290.9405817014992 + 256.7006644195452, + 265.1092196376501, + 265.2179953918753, + 286.1834237077219, + 286.35649876618805, + 290.7963149144001, + 290.94058170149947 ], "layer_temperatures_u": [ - 256.48939392980606, - 256.70066441955885, - 265.1092196379194, - 265.21799539214555, - 286.18342370821244, - 286.3564987666801, - 290.7963149147862, - 290.9405817018813 + 256.4893939298058, + 256.7006644195585, + 265.10921963791407, + 265.21799539214015, + 286.1834237082074, + 286.3564987666751, + 290.7963149147844, + 290.9405817018795 ], - "relative_heat_gain": 7.119215128178993, + "relative_heat_gain": 7.119215128174528, "solid_layer_effective_conductivities_shgc": [ - 1.0000000000000002, 1.0, + 1.0000000000000002, 1.0003447898816213, - 0.17348329068022617 + 0.1734832906802519 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.9999999999999999, + 1.0, 1.0003447898816216, - 0.1734832906789804 + 0.17348329067895418 ], - "system_effective_conductivity_shgc": 0.038444544865306636, - "system_effective_conductivity_u": 0.03844454485919372 + "system_effective_conductivity_shgc": 0.03844454486529774, + "system_effective_conductivity_u": 0.03844454485920177 } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 3394f1e4..70ac2212 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,10 +1,10 @@ { - "SHGC": 0.14886450500575868, + "SHGC": 0.1488645050057632, "U": 0.9236681873532367, "gap_layer_effective_conductivities_shgc": [ - 0.10179552252502559, - 0.024183991412734064, - 0.11083814902274466 + 0.10179552252502662, + 0.02418399141273416, + 0.11083814902274934 ], "gap_layer_effective_conductivities_u": [ 0.07735520179460614, @@ -12,14 +12,14 @@ 0.09273589449739761 ], "layer_temperatures_shgc": [ - 339.6573643897051, - 341.21100873088255, - 336.54739240125974, - 336.41935072310764, - 311.9288239399351, - 311.66476588309723, - 306.5515157196638, - 306.25431833886324 + 339.6573643897055, + 341.2110087308831, + 336.54739240126094, + 336.41935072310883, + 311.9288239399373, + 311.66476588309934, + 306.5515157196654, + 306.25431833886466 ], "layer_temperatures_u": [ 304.6907923319632, @@ -31,12 +31,12 @@ 298.07723192164406, 298.0391300634195 ], - "relative_heat_gain": 115.1385709237742, + "relative_heat_gain": 115.13857092378385, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0, 1.0003448212694523, - 0.17569135774075678 + 0.17569135774075897 ], "solid_layer_effective_conductivities_u": [ 1.0, @@ -44,6 +44,6 @@ 1.0003448329524562, 0.1734934494508696 ], - "system_effective_conductivity_shgc": 0.1226842571263138, + "system_effective_conductivity_shgc": 0.12268425712632333, "system_effective_conductivity_u": 0.052591306566518906 } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index d439a2b0..cc3b2234 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,49 +1,49 @@ { "SHGC": 0.0, - "U": 0.9150662120763855, + "U": 0.915066212075617, "gap_layer_effective_conductivities_shgc": [ - 0.05390132823661328, - 0.021618079439118677, - 0.0868376421999598 + 0.05390132823661225, + 0.021618079439119132, + 0.08683764219995264 ], "gap_layer_effective_conductivities_u": [ - 0.053901328236316146, - 0.021618079439123004, - 0.08683764220020487 + 0.053901328236320135, + 0.021618079439123073, + 0.08683764220020597 ], "layer_temperatures_shgc": [ - 256.48939392979446, + 256.4893939297945, 256.70066441954555, - 265.10921963765986, - 265.2179953918852, - 286.1834237077425, - 286.35649876620874, - 290.7963149144157, - 290.9405817015149 + 265.1092196376602, + 265.21799539188544, + 286.183423707746, + 286.3564987662123, + 290.79631491441967, + 290.9405817015189 ], "layer_temperatures_u": [ 256.4893939297925, - 256.70066441954333, - 265.1092196376105, - 265.2179953918356, - 286.1834237076458, - 286.3564987661117, - 290.79631491433963, - 290.9405817014398 + 256.7006644195433, + 265.109219637611, + 265.2179953918361, + 286.18342370765004, + 286.35649876611603, + 290.7963149143425, + 290.9405817014426 ], - "relative_heat_gain": 7.11921512969292, + "relative_heat_gain": 7.119215129690146, "solid_layer_effective_conductivities_shgc": [ 1.0, - 1.0, + 0.9999999999999999, 1.0003447898816213, - 0.17348329068046273 + 0.17348329068045368 ], "solid_layer_effective_conductivities_u": [ - 1.0000000000000002, + 1.0, 0.9999999999999999, 1.0003447898816213, - 0.17348329068078128 + 0.17348329068077833 ], - "system_effective_conductivity_shgc": 0.03844454486379668, - "system_effective_conductivity_u": 0.03844454486476857 + "system_effective_conductivity_shgc": 0.038444544863786866, + "system_effective_conductivity_u": 0.038444544864744135 } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 724782d5..9614524f 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,10 +1,10 @@ { - "SHGC": 0.15056122878069628, + "SHGC": 0.1505612287807067, "U": 0.9236681873532367, "gap_layer_effective_conductivities_shgc": [ - 0.10200381134026996, - 0.024205087484447576, - 0.11095347726511937 + 0.10200381134025363, + 0.024205087484447493, + 0.11095347726512307 ], "gap_layer_effective_conductivities_u": [ 0.07735520179460614, @@ -12,14 +12,14 @@ 0.09273589449739761 ], "layer_temperatures_shgc": [ - 339.92412647699257, - 341.4901170849534, - 336.806973769269, - 336.67811982389276, - 312.0517111402969, - 311.7853867395803, - 306.6321209116412, - 306.3324133929991 + 339.924126476993, + 341.4901170849538, + 336.8069737692691, + 336.67811982389287, + 312.0517111402958, + 311.78538673957917, + 306.6321209116405, + 306.33241339299843 ], "layer_temperatures_u": [ 304.6907923319632, @@ -31,12 +31,12 @@ 298.07723192164406, 298.0391300634195 ], - "relative_heat_gain": 116.36898819983224, + "relative_heat_gain": 116.36898819980159, "solid_layer_effective_conductivities_shgc": [ 0.9999999999999999, 0.9999999999999998, 1.0003448210887125, - 0.17570677546625585 + 0.17570677546626196 ], "solid_layer_effective_conductivities_u": [ 1.0, @@ -44,6 +44,6 @@ 1.0003448329524562, 0.1734934494508696 ], - "system_effective_conductivity_shgc": 0.12315179042850519, + "system_effective_conductivity_shgc": 0.1231517904284837, "system_effective_conductivity_u": 0.052591306566518906 } diff --git a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index d439a2b0..cc3b2234 100644 --- a/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/quad_layer_interior_xml_with_thermal_openings_10mm_all_sides/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,49 +1,49 @@ { "SHGC": 0.0, - "U": 0.9150662120763855, + "U": 0.915066212075617, "gap_layer_effective_conductivities_shgc": [ - 0.05390132823661328, - 0.021618079439118677, - 0.0868376421999598 + 0.05390132823661225, + 0.021618079439119132, + 0.08683764219995264 ], "gap_layer_effective_conductivities_u": [ - 0.053901328236316146, - 0.021618079439123004, - 0.08683764220020487 + 0.053901328236320135, + 0.021618079439123073, + 0.08683764220020597 ], "layer_temperatures_shgc": [ - 256.48939392979446, + 256.4893939297945, 256.70066441954555, - 265.10921963765986, - 265.2179953918852, - 286.1834237077425, - 286.35649876620874, - 290.7963149144157, - 290.9405817015149 + 265.1092196376602, + 265.21799539188544, + 286.183423707746, + 286.3564987662123, + 290.79631491441967, + 290.9405817015189 ], "layer_temperatures_u": [ 256.4893939297925, - 256.70066441954333, - 265.1092196376105, - 265.2179953918356, - 286.1834237076458, - 286.3564987661117, - 290.79631491433963, - 290.9405817014398 + 256.7006644195433, + 265.109219637611, + 265.2179953918361, + 286.18342370765004, + 286.35649876611603, + 290.7963149143425, + 290.9405817014426 ], - "relative_heat_gain": 7.11921512969292, + "relative_heat_gain": 7.119215129690146, "solid_layer_effective_conductivities_shgc": [ 1.0, - 1.0, + 0.9999999999999999, 1.0003447898816213, - 0.17348329068046273 + 0.17348329068045368 ], "solid_layer_effective_conductivities_u": [ - 1.0000000000000002, + 1.0, 0.9999999999999999, 1.0003447898816213, - 0.17348329068078128 + 0.17348329068077833 ], - "system_effective_conductivity_shgc": 0.03844454486379668, - "system_effective_conductivity_u": 0.03844454486476857 + "system_effective_conductivity_shgc": 0.038444544863786866, + "system_effective_conductivity_u": 0.038444544864744135 } diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 31c1fdf4..ab5784e2 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.40532797858075376, + "SHGC": 0.4053279785807639, "U": 3.721566952415843, "gap_layer_effective_conductivities_shgc": [ - 0.08217717560492016 + 0.08217717560492359 ], "gap_layer_effective_conductivities_u": [ - 0.09599999216191007 + 0.09599999216193492 ], "layer_temperatures_shgc": [ - 311.3133776937865, - 311.5409011043746, - 320.0177765462577, - 319.69705820692036 + 311.3133776937864, + 311.5409011043744, + 320.01777654625687, + 319.69705820691956 ], "layer_temperatures_u": [ 303.68871816235264, 303.59797147088176, - 300.115499879577, - 299.9838631640597 + 300.1154998795767, + 299.9838631640594 ], - "relative_heat_gain": 322.88645949500255, + "relative_heat_gain": 322.8864594950261, "solid_layer_effective_conductivities_shgc": [ - 0.9999999999999999, - 0.17734477149443462 + 1.0, + 0.17734477149443573 ], "solid_layer_effective_conductivities_u": [ 1.0, 0.17378016005377203 ], - "system_effective_conductivity_shgc": 0.40153810842628695, + "system_effective_conductivity_shgc": 0.401538108426194, "system_effective_conductivity_u": 0.10341153153561992 } diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index 3713979e..a3f13cd6 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 4.66778594546494, + "U": 4.667785945464796, "gap_layer_effective_conductivities_shgc": [ - 0.08232989929134857 + 0.08232989929134765 ], "gap_layer_effective_conductivities_u": [ - 0.08232989929140078 + 0.08232989929140304 ], "layer_temperatures_shgc": [ - 261.36693342644037, - 261.9218024950851, - 282.92489149820193, - 283.4447112102829 + 261.36693342643997, + 261.92180249508465, + 282.9248914982022, + 283.4447112102831 ], "layer_temperatures_u": [ - 261.3669334264431, - 261.92180249508806, - 282.9248914982122, - 283.44471121029306 + 261.36693342644264, + 261.9218024950876, + 282.9248914982118, + 283.4447112102926 ], - "relative_heat_gain": 36.315374657303515, + "relative_heat_gain": 36.31537465730443, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.17365348770675207 + 0.17365348770675612 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17365348770672842 + 0.17365348770673167 ], - "system_effective_conductivity_shgc": 0.06847686219886846, - "system_effective_conductivity_u": 0.06847686219771058 + "system_effective_conductivity_shgc": 0.06847686219885994, + "system_effective_conductivity_u": 0.06847686219771126 } diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index f1d05db4..294efb5f 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.40368319547340115, + "SHGC": 0.40368319547337594, "U": 3.721566952415843, "gap_layer_effective_conductivities_shgc": [ - 0.08213181540977786 + 0.08213181540978041 ], "gap_layer_effective_conductivities_u": [ - 0.09599999216191007 + 0.09599999216193492 ], "layer_temperatures_shgc": [ - 311.3302501215479, - 311.5580193783355, - 320.0128394607264, - 319.69179089901024 + 311.3302501215466, + 311.55801937833405, + 320.012839460725, + 319.69179089900877 ], "layer_temperatures_u": [ 303.68871816235264, 303.59797147088176, - 300.115499879577, - 299.9838631640597 + 300.1154998795767, + 299.9838631640594 ], - "relative_heat_gain": 321.6937081588844, + "relative_heat_gain": 321.69370815888306, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.17734278503520146 + 0.17734278503519632 ], "solid_layer_effective_conductivities_u": [ 1.0, 0.17378016005377203 ], - "system_effective_conductivity_shgc": 0.4025187520779878, + "system_effective_conductivity_shgc": 0.4025187520779976, "system_effective_conductivity_u": 0.10341153153561992 } diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index 3713979e..a3f13cd6 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 4.66778594546494, + "U": 4.667785945464796, "gap_layer_effective_conductivities_shgc": [ - 0.08232989929134857 + 0.08232989929134765 ], "gap_layer_effective_conductivities_u": [ - 0.08232989929140078 + 0.08232989929140304 ], "layer_temperatures_shgc": [ - 261.36693342644037, - 261.9218024950851, - 282.92489149820193, - 283.4447112102829 + 261.36693342643997, + 261.92180249508465, + 282.9248914982022, + 283.4447112102831 ], "layer_temperatures_u": [ - 261.3669334264431, - 261.92180249508806, - 282.9248914982122, - 283.44471121029306 + 261.36693342644264, + 261.9218024950876, + 282.9248914982118, + 283.4447112102926 ], - "relative_heat_gain": 36.315374657303515, + "relative_heat_gain": 36.31537465730443, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.17365348770675207 + 0.17365348770675612 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17365348770672842 + 0.17365348770673167 ], - "system_effective_conductivity_shgc": 0.06847686219886846, - "system_effective_conductivity_u": 0.06847686219771058 + "system_effective_conductivity_shgc": 0.06847686219885994, + "system_effective_conductivity_u": 0.06847686219771126 } diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 504cbe60..bd4df54e 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.40447569974780156, - "U": 3.7215669527056905, + "SHGC": 0.4044756997477991, + "U": 3.721566952705226, "gap_layer_effective_conductivities_shgc": [ - 0.0823815927133878 + 0.08238159271337644 ], "gap_layer_effective_conductivities_u": [ - 0.0959999921617648 + 0.09599999216176586 ], "layer_temperatures_shgc": [ - 311.26227462656004, - 311.4894026979646, - 320.0687107232132, - 319.74891388195385 + 311.2622746265606, + 311.48940269796515, + 320.06871072321536, + 319.748913881956 ], "layer_temperatures_u": [ - 303.68871816235423, - 303.5979714708834, - 300.1154998795796, - 299.98386316406226 + 303.6887181623538, + 303.5979714708829, + 300.11549987957966, + 299.9838631640623 ], - "relative_heat_gain": 322.26841039547685, + "relative_heat_gain": 322.2684103954643, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.1773552669894795 + 0.17735526698948093 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17378016005379646 + 0.17378016005379793 ], - "system_effective_conductivity_shgc": 0.3976156783930549, - "system_effective_conductivity_u": 0.10341153154072101 + "system_effective_conductivity_shgc": 0.39761567839302236, + "system_effective_conductivity_u": 0.10341153154078857 } diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index c03dc784..4f290119 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 4.667785945694922, + "U": 4.6677859456951, "gap_layer_effective_conductivities_shgc": [ - 0.0823298992913517 + 0.08232989929135047 ], "gap_layer_effective_conductivities_u": [ - 0.08232989929134749 + 0.08232989929135137 ], "layer_temperatures_shgc": [ - 261.3669334264398, - 261.92180249508453, - 282.9248914982012, - 283.44471121028204 + 261.3669334264399, + 261.92180249508465, + 282.92489149820165, + 283.44471121028255 ], "layer_temperatures_u": [ - 261.36693342643997, - 261.92180249508465, - 282.92489149819966, - 283.4447112102806 + 261.36693342643963, + 261.9218024950843, + 282.924891498202, + 283.4447112102829 ], - "relative_heat_gain": 36.31537465749535, + "relative_heat_gain": 36.31537465749592, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.17365348770675582 + 0.17365348770675226 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17365348770675268 + 0.17365348770674918 ], - "system_effective_conductivity_shgc": 0.0684768621988141, - "system_effective_conductivity_u": 0.06847686219882514 + "system_effective_conductivity_shgc": 0.06847686219879752, + "system_effective_conductivity_u": 0.06847686219881348 } diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 0aed513e..f018e4b5 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.40282259377675544, - "U": 3.7215669527056905, + "SHGC": 0.4028225937767478, + "U": 3.721566952705226, "gap_layer_effective_conductivities_shgc": [ - 0.08233732149091252 + 0.08233732149091351 ], "gap_layer_effective_conductivities_u": [ - 0.0959999921617648 + 0.09599999216176586 ], "layer_temperatures_shgc": [ - 311.27932144405463, - 311.50670007019073, - 320.06394796537955, - 319.74381716872193 + 311.279321444054, + 311.50670007019005, + 320.06394796537904, + 319.7438171687215 ], "layer_temperatures_u": [ - 303.68871816235423, - 303.5979714708834, - 300.1154998795796, - 299.98386316406226 + 303.6887181623538, + 303.5979714708829, + 300.11549987957966, + 299.9838631640623 ], - "relative_heat_gain": 321.0696235481835, + "relative_heat_gain": 321.0696235481913, "solid_layer_effective_conductivities_shgc": [ - 0.9999999999999999, - 0.17735327139434878 + 1.0, + 0.1773532713943419 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17378016005379646 + 0.17378016005379793 ], - "system_effective_conductivity_shgc": 0.3985778217999976, - "system_effective_conductivity_u": 0.10341153154072101 + "system_effective_conductivity_shgc": 0.3985778217999452, + "system_effective_conductivity_u": 0.10341153154078857 } diff --git a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index c03dc784..4f290119 100644 --- a/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/thermal_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 4.667785945694922, + "U": 4.6677859456951, "gap_layer_effective_conductivities_shgc": [ - 0.0823298992913517 + 0.08232989929135047 ], "gap_layer_effective_conductivities_u": [ - 0.08232989929134749 + 0.08232989929135137 ], "layer_temperatures_shgc": [ - 261.3669334264398, - 261.92180249508453, - 282.9248914982012, - 283.44471121028204 + 261.3669334264399, + 261.92180249508465, + 282.92489149820165, + 283.44471121028255 ], "layer_temperatures_u": [ - 261.36693342643997, - 261.92180249508465, - 282.92489149819966, - 283.4447112102806 + 261.36693342643963, + 261.9218024950843, + 282.924891498202, + 283.4447112102829 ], - "relative_heat_gain": 36.31537465749535, + "relative_heat_gain": 36.31537465749592, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.17365348770675582 + 0.17365348770675226 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17365348770675268 + 0.17365348770674918 ], - "system_effective_conductivity_shgc": 0.0684768621988141, - "system_effective_conductivity_u": 0.06847686219882514 + "system_effective_conductivity_shgc": 0.06847686219879752, + "system_effective_conductivity_u": 0.06847686219881348 } diff --git a/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index e15ced9f..3ce84002 100644 --- a/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.40437762227684615, - "U": 3.4274239622306673, + "SHGC": 0.4043776222768461, + "U": 3.4274239622312064, "gap_layer_effective_conductivities_shgc": [ - 0.08468420346526324 + 0.08468420346526306 ], "gap_layer_effective_conductivities_u": [ - 0.09912576819413957 + 0.09912576819413287 ], "layer_temperatures_shgc": [ - 311.46263079424386, - 311.6995946929742, - 321.1585844502313, - 318.30302895170524 + 311.46263079424534, + 311.6995946929757, + 321.1585844502323, + 318.30302895170604 ], "layer_temperatures_u": [ - 303.80441615673357, - 303.7208418481651, - 300.7440971486443, - 299.430292649702 + 303.8044161567331, + 303.7208418481646, + 300.74409714864385, + 299.4302926497016 ], - "relative_heat_gain": 319.90885485149016, + "relative_heat_gain": 319.90885485149266, "solid_layer_effective_conductivities_shgc": [ - 0.9999999999999999, - 0.18750379020281935 + 1.0, + 0.1875037902028189 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17833587354684924 + 0.17833587354685232 ], - "system_effective_conductivity_shgc": 0.7694468233058197, - "system_effective_conductivity_u": 0.12214486262527088 + "system_effective_conductivity_shgc": 0.7694468233059181, + "system_effective_conductivity_u": 0.12214486262527388 } diff --git a/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index 6ebd1582..9699935a 100644 --- a/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 4.622712676747116, + "U": 4.622712676747092, "gap_layer_effective_conductivities_shgc": [ 0.08372775448811047 ], "gap_layer_effective_conductivities_u": [ - 0.08372775448821662 + 0.08372775448821652 ], "layer_temperatures_shgc": [ - 261.3071427271341, - 261.85665384601316, - 280.9948925794412, + 261.30714272713413, + 261.8566538460132, + 280.9948925794413, 285.94191403663365 ], "layer_temperatures_u": [ - 261.3071427271388, - 261.8566538460182, - 280.99489257946135, - 285.9419140366521 + 261.30714272713874, + 261.85665384601816, + 280.99489257946124, + 285.941914036652 ], - "relative_heat_gain": 35.964704626850654, + "relative_heat_gain": 35.96470462685124, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.17916832408263675 + 0.17916832408263655 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17916832408257702 + 0.17916832408257669 ], - "system_effective_conductivity_shgc": 0.08204521913267153, - "system_effective_conductivity_u": 0.08204521913099126 + "system_effective_conductivity_shgc": 0.08204521913267007, + "system_effective_conductivity_u": 0.08204521913099296 } diff --git a/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 7ac80f74..f63c9b24 100644 --- a/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.4027284534034582, - "U": 3.4274239622306673, + "SHGC": 0.40272845340345864, + "U": 3.4274239622312064, "gap_layer_effective_conductivities_shgc": [ - 0.0846490156821535 + 0.08464901568215413 ], "gap_layer_effective_conductivities_u": [ - 0.09912576819413957 + 0.09912576819413287 ], "layer_temperatures_shgc": [ - 311.47966194030903, - 311.71688215223816, - 321.1550320360719, - 318.29640120760325 + 311.4796619403096, + 311.7168821522388, + 321.1550320360725, + 318.29640120760365 ], "layer_temperatures_u": [ - 303.80441615673357, - 303.7208418481651, - 300.7440971486443, - 299.430292649702 + 303.8044161567331, + 303.7208418481646, + 300.74409714864385, + 299.4302926497016 ], - "relative_heat_gain": 318.7129230788367, + "relative_heat_gain": 318.7129230788269, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.18749897581660666 + 0.1874989758166088 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17833587354684924 + 0.17833587354685232 ], - "system_effective_conductivity_shgc": 0.7718977198508438, - "system_effective_conductivity_u": 0.12214486262527088 + "system_effective_conductivity_shgc": 0.7718977198509304, + "system_effective_conductivity_u": 0.12214486262527388 } diff --git a/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index 6ebd1582..9699935a 100644 --- a/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 4.622712676747116, + "U": 4.622712676747092, "gap_layer_effective_conductivities_shgc": [ 0.08372775448811047 ], "gap_layer_effective_conductivities_u": [ - 0.08372775448821662 + 0.08372775448821652 ], "layer_temperatures_shgc": [ - 261.3071427271341, - 261.85665384601316, - 280.9948925794412, + 261.30714272713413, + 261.8566538460132, + 280.9948925794413, 285.94191403663365 ], "layer_temperatures_u": [ - 261.3071427271388, - 261.8566538460182, - 280.99489257946135, - 285.9419140366521 + 261.30714272713874, + 261.85665384601816, + 280.99489257946124, + 285.941914036652 ], - "relative_heat_gain": 35.964704626850654, + "relative_heat_gain": 35.96470462685124, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.17916832408263675 + 0.17916832408263655 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17916832408257702 + 0.17916832408257669 ], - "system_effective_conductivity_shgc": 0.08204521913267153, - "system_effective_conductivity_u": 0.08204521913099126 + "system_effective_conductivity_shgc": 0.08204521913267007, + "system_effective_conductivity_u": 0.08204521913099296 } diff --git a/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index f27494ef..f9b57c8b 100644 --- a/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.40354147163779697, - "U": 3.4274239624871052, + "SHGC": 0.4035414716377996, + "U": 3.4274239624875733, "gap_layer_effective_conductivities_shgc": [ - 0.08484897735260143 + 0.08484897735259835 ], "gap_layer_effective_conductivities_u": [ - 0.09912576819390809 + 0.09912576819391294 ], "layer_temperatures_shgc": [ - 311.4109395844324, - 311.64746965268205, + 311.41093958443173, + 311.64746965268137, 321.20496539016244, - 318.35854739586995 + 318.35854739587 ], "layer_temperatures_u": [ - 303.80441615673385, - 303.72084184816526, + 303.8044161567337, + 303.72084184816515, 300.7440971486491, 299.43029264970676 ], - "relative_heat_gain": 319.3025014750005, + "relative_heat_gain": 319.30250147498595, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.1875327502645166 + 0.18753275026451582 ], "solid_layer_effective_conductivities_u": [ - 0.9999999999999999, - 0.17833587354687064 + 1.0, + 0.17833587354686845 ], - "system_effective_conductivity_shgc": 0.759625588124601, - "system_effective_conductivity_u": 0.12214486263003084 + "system_effective_conductivity_shgc": 0.7596255881245073, + "system_effective_conductivity_u": 0.12214486263004634 } diff --git a/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index b7195c88..8eefe6b6 100644 --- a/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 4.622712677015873, + "U": 4.62271267701584, "gap_layer_effective_conductivities_shgc": [ - 0.08372775448810982 + 0.08372775448810987 ], "gap_layer_effective_conductivities_u": [ - 0.0837277544881086 + 0.08372775448810875 ], "layer_temperatures_shgc": [ - 261.3071427271339, - 261.856653846013, - 280.9948925794413, - 285.94191403663376 + 261.3071427271341, + 261.85665384601316, + 280.9948925794414, + 285.9419140366338 ], "layer_temperatures_u": [ - 261.3071427271341, + 261.30714272713413, 261.8566538460132, - 280.99489257944106, - 285.9419140366335 + 280.99489257944117, + 285.94191403663365 ], - "relative_heat_gain": 35.96470462716036, + "relative_heat_gain": 35.96470462715988, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.17916832408263772 + 0.17916832408263791 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17916832408263922 + 0.1791683240826387 ], - "system_effective_conductivity_shgc": 0.08204521913254008, - "system_effective_conductivity_u": 0.08204521913255904 + "system_effective_conductivity_shgc": 0.0820452191325381, + "system_effective_conductivity_u": 0.08204521913255872 } diff --git a/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 82231fda..ed6ed682 100644 --- a/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.40188394802079325, - "U": 3.4274239624871052, + "SHGC": 0.40188394802079397, + "U": 3.4274239624875733, "gap_layer_effective_conductivities_shgc": [ - 0.08481458030603752 + 0.08481458030603718 ], "gap_layer_effective_conductivities_u": [ - 0.09912576819390809 + 0.09912576819391294 ], "layer_temperatures_shgc": [ 311.4281463043251, - 311.6649374703899, - 321.20159864859517, - 318.3520744939194 + 311.66493747038993, + 321.2015986485951, + 318.35207449391936 ], "layer_temperatures_u": [ - 303.80441615673385, - 303.72084184816526, + 303.8044161567337, + 303.72084184816515, 300.7440971486491, 299.43029264970676 ], - "relative_heat_gain": 318.10051107271, + "relative_heat_gain": 318.10051107271704, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.18752793827439773 + 0.1875279382743966 ], "solid_layer_effective_conductivities_u": [ - 0.9999999999999999, - 0.17833587354687064 + 1.0, + 0.17833587354686845 ], - "system_effective_conductivity_shgc": 0.7620137001505243, - "system_effective_conductivity_u": 0.12214486263003084 + "system_effective_conductivity_shgc": 0.7620137001504015, + "system_effective_conductivity_u": 0.12214486263004634 } diff --git a/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index b7195c88..8eefe6b6 100644 --- a/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/thermal_user_defined_openings_xml_shade_10mm_top_and_bottom/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 4.622712677015873, + "U": 4.62271267701584, "gap_layer_effective_conductivities_shgc": [ - 0.08372775448810982 + 0.08372775448810987 ], "gap_layer_effective_conductivities_u": [ - 0.0837277544881086 + 0.08372775448810875 ], "layer_temperatures_shgc": [ - 261.3071427271339, - 261.856653846013, - 280.9948925794413, - 285.94191403663376 + 261.3071427271341, + 261.85665384601316, + 280.9948925794414, + 285.9419140366338 ], "layer_temperatures_u": [ - 261.3071427271341, + 261.30714272713413, 261.8566538460132, - 280.99489257944106, - 285.9419140366335 + 280.99489257944117, + 285.94191403663365 ], - "relative_heat_gain": 35.96470462716036, + "relative_heat_gain": 35.96470462715988, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.17916832408263772 + 0.17916832408263791 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17916832408263922 + 0.1791683240826387 ], - "system_effective_conductivity_shgc": 0.08204521913254008, - "system_effective_conductivity_u": 0.08204521913255904 + "system_effective_conductivity_shgc": 0.0820452191325381, + "system_effective_conductivity_u": 0.08204521913255872 } From 3b364342ec84446d4c4a7e9cf94650477b6e984f Mon Sep 17 00:00:00 2001 From: Simon Vidanovic Date: Thu, 27 Jun 2024 10:00:44 -0700 Subject: [PATCH 15/19] Pointing to tagged version of WCE. --- CMakeLists-Windows-CalcEngine.txt.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists-Windows-CalcEngine.txt.in b/CMakeLists-Windows-CalcEngine.txt.in index 11261243..032a7ad9 100644 --- a/CMakeLists-Windows-CalcEngine.txt.in +++ b/CMakeLists-Windows-CalcEngine.txt.in @@ -4,7 +4,7 @@ include(ExternalProject) ExternalProject_Add(Windows-CalcEngine GIT_REPOSITORY https://github.com/LBNL-ETA/Windows-CalcEngine.git - GIT_TAG "VacuumDec2023" + GIT_TAG "Version_1.0.47" UPDATE_COMMAND "" PATCH_COMMAND "" From d3c079542d833d414d0072da56dc46d70c835b34 Mon Sep 17 00:00:00 2001 From: StephenCzarnecki Date: Thu, 18 Jul 2024 15:29:53 -0400 Subject: [PATCH 16/19] Updating the targeted version of OpticalMeasurementParser to v2.2.0 --- CMakeLists-OpticalMeasurementParser.txt.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists-OpticalMeasurementParser.txt.in b/CMakeLists-OpticalMeasurementParser.txt.in index 4e44d20f..44564628 100644 --- a/CMakeLists-OpticalMeasurementParser.txt.in +++ b/CMakeLists-OpticalMeasurementParser.txt.in @@ -4,7 +4,7 @@ include(ExternalProject) ExternalProject_Add(OpticalMeasurementParser GIT_REPOSITORY https://github.com/LBNL-ETA/OpticalMeasurementParser.git - GIT_TAG "v2.1.0" + GIT_TAG "v2.2.0" UPDATE_COMMAND "" PATCH_COMMAND "" From e3ac993191ce452a2eb609ebf5e299d4bfe825e8 Mon Sep 17 00:00:00 2001 From: StephenCzarnecki Date: Fri, 19 Jul 2024 12:55:31 -0400 Subject: [PATCH 17/19] Update build.yml Trying new build images for mac in github actions --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8de7186e..b4263693 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - os: [windows-2019, windows-2022, macos-11.0, ubuntu-latest] + os: [windows-2019, windows-2022, macos-12.0, macos-14.0, ubuntu-latest] # arch: [x86, x64] steps: From cb694d485e75d09ab01ca359ca7b0a5fc384f87f Mon Sep 17 00:00:00 2001 From: StephenCzarnecki Date: Mon, 22 Jul 2024 12:21:35 -0400 Subject: [PATCH 18/19] Update readme.md noop to trigger github actions From 7adfca6cf61f579b7689c716ae1377ea50cf50b5 Mon Sep 17 00:00:00 2001 From: StephenCzarnecki Date: Mon, 22 Jul 2024 12:38:41 -0400 Subject: [PATCH 19/19] Update build.yml Trying to get macos actions to run --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b4263693..9bae8c81 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - os: [windows-2019, windows-2022, macos-12.0, macos-14.0, ubuntu-latest] + os: [windows-2019, windows-2022, macos-12, macos-14, ubuntu-latest] # arch: [x86, x64] steps: