diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9bae8c81..22325dcd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. @@ -31,4 +31,4 @@ jobs: - name: Test working-directory: ${{github.workspace}}/build - run: ctest -C RELEASE -V + run: ctest -C RELEASE -V \ No newline at end of file diff --git a/CMakeLists-Windows-CalcEngine.txt.in b/CMakeLists-Windows-CalcEngine.txt.in index 032a7ad9..beac13b2 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.47" + GIT_TAG "Version_1.0.48" UPDATE_COMMAND "" PATCH_COMMAND "" diff --git a/CMakeLists.txt b/CMakeLists.txt index cf98acc3..1661d515 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -49,5 +49,13 @@ Option(BUILD_WinCalc_tests "Build WinCalc tests." ON) if(BUILD_WinCalc_tests) enable_testing() add_subdirectory( test ) + + # Set the path to the test directory + set(TEST_DATA_DIR "${CMAKE_CURRENT_SOURCE_DIR}/test") + target_compile_definitions(wincalc-test PRIVATE TEST_DATA_DIR="${TEST_DATA_DIR}") + + # Add the test with the specified arguments + add_test(NAME wincalc-test + COMMAND ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/wincalc-test --gtest_catch_exceptions=0) endif() diff --git a/src/convert_optics_parser.cpp b/src/convert_optics_parser.cpp index 7c71e62f..ee3ed1d7 100644 --- a/src/convert_optics_parser.cpp +++ b/src/convert_optics_parser.cpp @@ -263,6 +263,10 @@ namespace wincalc auto thermal_data = wincalc::Product_Data_Thermal( data.conductivity, data.thickness.value() * length_conversion, false); + if(data.permeabilityFactor.has_value()) + { + thermal_data.permeability_factor = data.permeabilityFactor.value(); + } thermal_data.density = data.density; thermal_data.youngs_modulus = data.youngsModulus; diff --git a/src/create_wce_objects.cpp b/src/create_wce_objects.cpp index 578955eb..fd3f784b 100644 --- a/src/create_wce_objects.cpp +++ b/src/create_wce_objects.cpp @@ -1071,13 +1071,15 @@ namespace wincalc } auto ir_results = calc_thermal_ir(standard, layer); - auto effective_thermal_values = - layer.optical_data->effective_thermal_values(width, - height, - layer.thermal_data->opening_top, - layer.thermal_data->opening_bottom, - layer.thermal_data->opening_left, - layer.thermal_data->opening_right); + auto effective_thermal_values = layer.optical_data->effective_thermal_values( + width, + height, + layer.thermal_data->opening_top, + layer.thermal_data->opening_bottom, + layer.thermal_data->opening_left, + layer.thermal_data->opening_right, + layer.thermal_data->effective_front_thermal_openness_area, + layer.thermal_data->permeability_factor); auto tarcog_layer = Tarcog::ISO15099::Layers::shading(effective_thermal_values->effectiveThickness(), diff --git a/src/glazing_system.cpp b/src/glazing_system.cpp index 8597831f..238580a7 100644 --- a/src/glazing_system.cpp +++ b/src/glazing_system.cpp @@ -95,8 +95,7 @@ namespace wincalc Tarcog::ISO15099::CIGU & Glazing_System::get_igu(double theta, double phi) { - if(current_igu.has_value() && FenestrationCommon::isEqual(theta, last_theta) - && FenestrationCommon::isEqual(phi, last_phi)) + if(current_igu.has_value() && is_current_igu_calculated(theta, phi)) { return current_igu.value(); } @@ -113,8 +112,7 @@ namespace wincalc Tarcog::ISO15099::CSystem & Glazing_System::get_system(double theta, double phi) { - if(current_system.has_value() && FenestrationCommon::isEqual(theta, last_theta) - && FenestrationCommon::isEqual(phi, last_phi)) + if(current_system.has_value() && is_current_igu_calculated(theta, phi)) { return current_system.value(); } @@ -153,26 +151,7 @@ namespace wincalc double theta, double phi) { - // Don't do deflection updates if theta and phi are unchanged. If this check is not - // present then the CSystem m_solved value will get set to false causing the deflection - // solver to go through another iteration resulting in slightly differnt temperatures - // While these results are not incorrect they will not match the results from - // Windows-CalcEngine unit tests. And also if those temperates from the extra - // iteration are used in the Stephen Morse code it will not result in the same - // deflection values. - // - // The whole interaction involving do_deflection_updates needs to be refactored - // - // Doing deflection updates and creating the system before calculating the optical results - // because there are cases where the thermal system cannot be created. E.G. genSDF XML - // files do not have conductivity and so can be used in optical calcs but not thermal. - // Creating the system is much less expensive than doing the optical calcs so do that first - // to save time if there are any errors. - if(!FenestrationCommon::isEqual(theta, last_theta) - || !FenestrationCommon::isEqual(phi, last_phi)) - { - do_updates_for_thermal(theta, phi); - } + do_updates_for_thermal(theta, phi); auto & system = get_system(theta, phi); return system.getTemperatures(system_type); @@ -239,6 +218,15 @@ namespace wincalc } } + void Glazing_System::do_deflection_updates(std::optional theta, + std::optional phi) + { + if(theta.has_value() && phi.has_value()) + { + do_deflection_updates(theta.value(), phi.value()); + } + } + void Glazing_System::do_layer_absorptance_updates(double theta, double phi) { auto & system = get_system(theta, phi); @@ -310,7 +298,8 @@ namespace wincalc return product_data; } - void Glazing_System::gap_layers(std::vector> const & layers) + void Glazing_System::gap_layers( + std::vector> const & layers) { reset_igu(); gap_values = layers; @@ -510,6 +499,17 @@ namespace wincalc void Glazing_System::enable_deflection(bool enable) { model_deflection = enable; + + // If last theta and phi are not set then set them to 0.0 for the deflection updates + if(!last_theta.has_value()) + { + last_theta = 0.0; + } + if(!last_phi.has_value()) + { + last_phi = 0.0; + } + do_deflection_updates(last_theta, last_phi); } @@ -564,6 +564,12 @@ namespace wincalc phi); } + bool Glazing_System::is_current_igu_calculated(double theta, double phi) + { + return last_theta.has_value() && FenestrationCommon::isEqual(theta, last_theta.value()) + && last_phi.has_value() && FenestrationCommon::isEqual(phi, last_phi.value()); + } + std::vector Glazing_System::get_solar_abs_front(double theta, double phi) { auto & optical_system = get_optical_system_for_thermal_calcs(); @@ -581,5 +587,4 @@ namespace wincalc phi); } - } // namespace wincalc diff --git a/src/glazing_system.h b/src/glazing_system.h index 68f3f9f1..a5135856 100644 --- a/src/glazing_system.h +++ b/src/glazing_system.h @@ -155,6 +155,7 @@ namespace wincalc std::vector applied_loads; void do_deflection_updates(double theta, double phi); + void do_deflection_updates(std::optional theta, std::optional phi); void do_layer_absorptance_updates(double theta, double phi); void do_updates_for_thermal(double theta, double phi); @@ -164,14 +165,16 @@ namespace wincalc std::optional current_igu; std::optional current_system; + bool is_current_igu_calculated(double theta, double phi); + std::vector get_solar_abs_front(double theta, double phi); double get_solar_transmittance_front(double theta, double phi); SingleLayerOptics::IScatteringLayer & get_optical_system_for_thermal_calcs(); std::unique_ptr optical_system_for_thermal_calcs; - double last_theta = 0; - double last_phi = 0; + std::optional last_theta = std::nullopt; + std::optional last_phi = std::nullopt; void reset_system(); void reset_igu(); void sort_spectral_data(); diff --git a/src/product_data.cpp b/src/product_data.cpp index b26a8613..938cb5df 100644 --- a/src/product_data.cpp +++ b/src/product_data.cpp @@ -10,14 +10,12 @@ namespace wincalc std::optional ir_transmittance_back, std::optional emissivity_front, std::optional emissivity_back, - double permeability_factor, bool flipped) : Flippable_Solid_Layer(thickness_meters, flipped), ir_transmittance_front(ir_transmittance_front), ir_transmittance_back(ir_transmittance_back), emissivity_front(emissivity_front), - emissivity_back(emissivity_back), - permeability_factor(permeability_factor) + emissivity_back(emissivity_back) {} Product_Data_Optical::~Product_Data_Optical() @@ -34,13 +32,18 @@ namespace wincalc double gap_width_top, double gap_width_bottom, double gap_width_left, - double gap_width_right) const + double gap_width_right, + double effective_thermal_front_openness_area, + double permeability_factor) const { - EffectiveLayers::ShadeOpenness openness{ - permeability_factor, gap_width_left, gap_width_right, gap_width_top, gap_width_bottom}; + EffectiveLayers::ShadeOpenness openness{effective_thermal_front_openness_area, + gap_width_left, + gap_width_right, + gap_width_top, + gap_width_bottom}; return std::make_unique( - width, height, thickness_meters, openness); + width, height, thickness_meters, openness, permeability_factor); } @@ -53,14 +56,12 @@ namespace wincalc std::optional ir_transmittance_back, std::optional emissivity_front, std::optional emissivity_back, - double permeability_factor, bool flipped) : Product_Data_Optical(thickness_meters, ir_transmittance_front, ir_transmittance_back, emissivity_front, emissivity_back, - permeability_factor, flipped), material_type(material_type), wavelength_data(wavelength_data), @@ -89,16 +90,20 @@ namespace wincalc double opening_bottom, double opening_left, double opening_right, - double opening_front) : + double effective_front_thermal_openness_area, + double permeability_factor, + std::optional youngs_modulus, + std::optional density) : 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) + effective_front_thermal_openness_area(effective_front_thermal_openness_area), + permeability_factor(permeability_factor), + youngs_modulus(youngs_modulus), + density(density) {} Product_Data_Optical_With_Material::Product_Data_Optical_With_Material( @@ -119,9 +124,7 @@ namespace wincalc Product_Data_Optical_Perfectly_Diffuse::Product_Data_Optical_Perfectly_Diffuse( const std::shared_ptr & material_data) : Product_Data_Optical_With_Material(material_data) - { - permeability_factor = material_data->permeability_factor; - } + {} Product_Data_Optical_Venetian::Product_Data_Optical_Venetian( std::shared_ptr const & optical_data, @@ -130,22 +133,28 @@ namespace wincalc {} std::unique_ptr - Product_Data_Optical_Venetian::effective_thermal_values(double width, - double height, - double gap_width_top, - double gap_width_bottom, - double gap_width_left, - double gap_width_right) const + Product_Data_Optical_Venetian::effective_thermal_values( + double width, + double height, + double gap_width_top, + double gap_width_bottom, + double gap_width_left, + double gap_width_right, + double, + double ) const // Front openness is automatically calculated by the model { - double front_openness = + double front_openness_venetian = 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}; + EffectiveLayers::ShadeOpenness openness{front_openness_venetian, + gap_width_left, + gap_width_right, + gap_width_top, + gap_width_bottom}; return std::make_unique( width, @@ -163,12 +172,15 @@ namespace wincalc {} std::unique_ptr - Product_Data_Optical_Woven_Shade::effective_thermal_values(double width, - double height, - double gap_width_top, - double gap_width_bottom, - double gap_width_left, - double gap_width_right) const + Product_Data_Optical_Woven_Shade::effective_thermal_values( + double width, + double height, + double gap_width_top, + double gap_width_bottom, + double gap_width_left, + double gap_width_right, + double, + double ) const // calculated automatically by the code { double front_openness = ThermalPermeability::Woven::frontOpenness(geometry.thread_diameter, geometry.thread_spacing); @@ -192,12 +204,15 @@ namespace wincalc {} std::unique_ptr - Product_Data_Optical_Perforated_Screen::effective_thermal_values(double width, - double height, - double gap_width_top, - double gap_width_bottom, - double gap_width_left, - double gap_width_right) const + Product_Data_Optical_Perforated_Screen::effective_thermal_values( + double width, + double height, + double gap_width_top, + double gap_width_bottom, + double gap_width_left, + double gap_width_right, + double, + double) const // Calculated automatically by the code { std::map> front_openness_calcs; front_openness_calcs[Perforated_Geometry::Type::CIRCULAR] = [=]() { @@ -262,7 +277,6 @@ namespace wincalc std::optional ir_transmittance_back, std::optional emissivity_front, std::optional emissivity_back, - double permeability_factor, bool flipped, bool user_defined_effective_values) : Product_Data_Dual_Band_Optical(thickness_meteres, @@ -270,7 +284,6 @@ namespace wincalc ir_transmittance_back, emissivity_front, emissivity_back, - permeability_factor, flipped), bsdf_hemisphere(bsdf_hemisphere), tf_solar(tf_solar), @@ -290,19 +303,21 @@ namespace wincalc double gap_width_top, double gap_width_bottom, double gap_width_left, - double gap_width_right) const + double gap_width_right, + double front_openness, + double permeability_factor) const { EffectiveLayers::ShadeOpenness openness{ - permeability_factor, gap_width_left, gap_width_right, gap_width_top, gap_width_bottom}; + front_openness, gap_width_left, gap_width_right, gap_width_top, gap_width_bottom}; if(user_defined_effective_values) { return std::make_unique( - width, height, thickness_meters, openness); + width, height, thickness_meters, openness, permeability_factor); } else { return std::make_unique( - width, height, thickness_meters, openness); + width, height, thickness_meters, openness, permeability_factor); } } @@ -320,14 +335,12 @@ namespace wincalc std::optional ir_transmittance_back, std::optional emissivity_front, std::optional emissivity_back, - double permeability_factor, bool flipped) : Product_Data_Dual_Band_Optical(thickness_meteres, ir_transmittance_front, ir_transmittance_back, emissivity_front, emissivity_back, - permeability_factor, flipped), tf_solar(tf_solar), tb_solar(tb_solar), diff --git a/src/product_data.h b/src/product_data.h index 6217727e..4c7a4c49 100644 --- a/src/product_data.h +++ b/src/product_data.h @@ -25,14 +25,18 @@ namespace wincalc double opening_bottom = 0, double opening_left = 0, double opening_right = 0, - double opening_front = 0); + double effective_front_thermal_openness_area = 0, + double permeability_factor = 0, + std::optional youngs_modulus = Tarcog::DeflectionConstants::YOUNGSMODULUS, + std::optional density = Tarcog::MaterialConstants::GLASSDENSITY); std::optional conductivity; double opening_top; double opening_bottom; double opening_left; double opening_right; - double opening_front; + double effective_front_thermal_openness_area; + double permeability_factor; std::optional youngs_modulus; std::optional density; }; @@ -45,7 +49,6 @@ namespace wincalc std::optional ir_transmittance_back = std::optional(), std::optional emissivity_front = std::optional(), std::optional emissivity_back = std::optional(), - double permeability_factor = 0, bool flipped = false); virtual ~Product_Data_Optical(); virtual std::shared_ptr optical_data(); @@ -61,12 +64,13 @@ namespace wincalc double gap_width_top, double gap_width_bottom, double gap_width_left, - double gap_width_right) const; + double gap_width_right, + double effective_thermal_front_openness_area, + double permeability_factor) const; std::optional ir_transmittance_front; std::optional ir_transmittance_back; std::optional emissivity_front; std::optional emissivity_back; - double permeability_factor; virtual std::vector wavelengths() const = 0; std::optional pv_power_properties; }; @@ -80,14 +84,12 @@ namespace wincalc std::optional ir_transmittance_back = std::optional(), std::optional emissivity_front = std::optional(), std::optional emissivity_back = std::optional(), - double permeability_factor = 0, bool flipped = false) : Product_Data_Optical(thickness_meters, ir_transmittance_front, ir_transmittance_back, emissivity_front, emissivity_back, - permeability_factor, flipped) {} @@ -114,7 +116,6 @@ namespace wincalc std::optional ir_transmittance_back = std::optional(), std::optional emissivity_front = std::optional(), std::optional emissivity_back = std::optional(), - double permeability_factor = 0, bool flipped = false); double tf_solar; @@ -144,7 +145,6 @@ namespace wincalc std::optional ir_transmittance_back = std::optional(), std::optional emissivity_front = std::optional(), std::optional emissivity_back = std::optional(), - double permeability_factor = 0, bool flipped = false, bool user_defined_effective_values = false); @@ -165,7 +165,9 @@ namespace wincalc double gap_width_top, double gap_width_bottom, double gap_width_left, - double gap_width_right) const override; + double gap_width_right, + double front_openness, + double permeability_factor) const override; }; enum class CoatedSide @@ -187,7 +189,6 @@ namespace wincalc std::optional ir_transmittance_back = std::optional(), std::optional emissivity_front = std::optional(), std::optional emissivity_back = std::optional(), - double permeability_factor = 0, bool flipped = false); FenestrationCommon::MaterialType material_type; std::vector wavelength_data; @@ -256,7 +257,9 @@ namespace wincalc double gap_width_top, double gap_width_bottom, double gap_width_left, - double gap_width_right) const override; + double gap_width_right, + double front_openness, + double permeability_factor) const override; Venetian_Geometry geometry; }; @@ -282,7 +285,9 @@ namespace wincalc double gap_width_top, double gap_width_bottom, double gap_width_left, - double gap_width_right) const override; + double gap_width_right, + double front_openness, + double permeability_factor) const override; Woven_Geometry geometry; }; @@ -321,7 +326,9 @@ namespace wincalc double gap_width_top, double gap_width_bottom, double gap_width_left, - double gap_width_right) const override; + double gap_width_right, + double front_openness, + double permeability_factor) const override; Perforated_Geometry geometry; }; diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 8805c7b6..21f08b86 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -51,6 +51,7 @@ add_executable(${PROJECT_TEST_NAME} nfrc_102_as_bsdf.unit.cpp pv_single_layer.unit.cpp nfrc_102.unit.cpp + nfrc_102_102.unit.cpp nfrc_20748.unit.cpp nfrc_6046.unit.cpp nfrc_9023.unit.cpp diff --git a/test/bsdf_xml_thermal_openness.unit.cpp b/test/bsdf_xml_thermal_openness.unit.cpp index 27a19855..67db4e42 100644 --- a/test/bsdf_xml_thermal_openness.unit.cpp +++ b/test/bsdf_xml_thermal_openness.unit.cpp @@ -38,10 +38,11 @@ class TestBSDFThermalOpenness : public testing::Test 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; + converted_shade.thermal_data->opening_top = 0.01; // m + converted_shade.thermal_data->opening_bottom = 0.01; // m + converted_shade.thermal_data->opening_left = 0; // m + converted_shade.thermal_data->opening_right = 0; // m + converted_shade.thermal_data->effective_front_thermal_openness_area = 0; // m² products.push_back(clear_3); products.push_back(converted_shade); diff --git a/test/bsdf_xml_thermal_user_defined_openness.unit.cpp b/test/bsdf_xml_thermal_user_defined_openness.unit.cpp index 3d0711b9..6cebee98 100644 --- a/test/bsdf_xml_thermal_user_defined_openness.unit.cpp +++ b/test/bsdf_xml_thermal_user_defined_openness.unit.cpp @@ -42,10 +42,11 @@ class TestBSDFThermalUserDefinedOpenness : 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; + converted_shade.thermal_data->effective_front_thermal_openness_area = 0.222; + converted_shade.thermal_data->permeability_factor = 0.0789; 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); diff --git a/test/expected_results/CGDB_18000_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/CGDB_18000_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index ccc1c140..b29c68a7 100644 --- a/test/expected_results/CGDB_18000_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/CGDB_18000_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -8,16 +8,16 @@ 0.08412548292595676 ], "layer_temperatures_shgc": [ - 314.6134240872399, - 315.2520190510931, - 306.3161549484239, - 306.11411318935984 + 314.61342408724045, + 315.2520190510938, + 306.3161549484267, + 306.1141131893626 ], "layer_temperatures_u": [ - 304.04669637498756, - 303.8297386020612, - 300.4297071426056, - 300.36106011117727 + 304.04669637498785, + 303.8297386020615, + 300.4297071426101, + 300.3610601111817 ], "relative_heat_gain": 217.62641444122323, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/CGDB_18000_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/CGDB_18000_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index 8141bbf0..4e88f9bc 100644 --- a/test/expected_results/CGDB_18000_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/CGDB_18000_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -8,16 +8,16 @@ 0.06717799400298426 ], "layer_temperatures_shgc": [ - 258.73189819308146, - 259.74114540441377, - 279.5475578469716, - 279.8668910706718 + 258.7318981930817, + 259.741145404414, + 279.54755784697494, + 279.86689107067514 ], "layer_temperatures_u": [ - 258.73189819308163, - 259.74114540441394, - 279.547557846974, - 279.86689107067406 + 258.7318981930814, + 259.7411454044137, + 279.5475578469711, + 279.86689107067116 ], "relative_heat_gain": 20.89989569536292, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/CGDB_18000_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/CGDB_18000_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index ddc28932..f31afdb8 100644 --- a/test/expected_results/CGDB_18000_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/CGDB_18000_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -8,16 +8,16 @@ 0.08412548292595676 ], "layer_temperatures_shgc": [ - 314.81600974894957, - 315.4710195206146, - 306.4281869838427, - 306.22343380194593 + 314.8160097489499, + 315.47101952061496, + 306.42818698384417, + 306.22343380194746 ], "layer_temperatures_u": [ - 304.04669637498756, - 303.8297386020612, - 300.4297071426056, - 300.36106011117727 + 304.04669637498785, + 303.8297386020615, + 300.4297071426101, + 300.3610601111817 ], "relative_heat_gain": 217.74304314964212, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/CGDB_18000_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/CGDB_18000_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index 8141bbf0..4e88f9bc 100644 --- a/test/expected_results/CGDB_18000_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/CGDB_18000_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -8,16 +8,16 @@ 0.06717799400298426 ], "layer_temperatures_shgc": [ - 258.73189819308146, - 259.74114540441377, - 279.5475578469716, - 279.8668910706718 + 258.7318981930817, + 259.741145404414, + 279.54755784697494, + 279.86689107067514 ], "layer_temperatures_u": [ - 258.73189819308163, - 259.74114540441394, - 279.547557846974, - 279.86689107067406 + 258.7318981930814, + 259.7411454044137, + 279.5475578469711, + 279.86689107067116 ], "relative_heat_gain": 20.89989569536292, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/CGDB_18000_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/CGDB_18000_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index f078474f..2c4c8465 100644 --- a/test/expected_results/CGDB_18000_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/CGDB_18000_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,25 +1,25 @@ { - "SHGC": 0.2729876058291389, - "U": 2.8152489024601755, + "SHGC": 0.27298760582913373, + "U": 2.8152489024595444, "gap_layer_effective_conductivities_shgc": [ - 0.08986993060939777 + 0.0898699306094046 ], "gap_layer_effective_conductivities_u": [ - 0.08412548292599285 + 0.08412548292597945 ], "layer_temperatures_shgc": [ - 314.39233681701774, - 315.0132073997984, - 306.19978315384077, - 306.00067688171475 + 314.39233681701785, + 315.01320739979855, + 306.1997831538413, + 306.0006768817152 ], "layer_temperatures_u": [ - 304.0466963749877, - 303.82973860206135, - 300.42970714260844, - 300.3610601111801 + 304.0466963749882, + 303.8297386020619, + 300.4297071426086, + 300.3610601111802 ], - "relative_heat_gain": 219.8657175158355, + "relative_heat_gain": 219.86571751584262, "solid_layer_effective_conductivities_shgc": [ 0.7360000014305109, 0.9999999999999999 @@ -28,6 +28,6 @@ 0.736000001430511, 1.0 ], - "system_effective_conductivity_shgc": 0.1858250415391272, - "system_effective_conductivity_u": 0.13955724447175197 + "system_effective_conductivity_shgc": 0.1858250415390522, + "system_effective_conductivity_u": 0.1395572444718411 } diff --git a/test/expected_results/CGDB_18000_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/CGDB_18000_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index 8a2eca2b..a1349b58 100644 --- a/test/expected_results/CGDB_18000_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/CGDB_18000_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,17 +1,17 @@ { "SHGC": 0.0, - "U": 2.686361914571572, + "U": 2.686361914571387, "gap_layer_effective_conductivities_shgc": [ - 0.06717799400298706 + 0.06717799400298025 ], "gap_layer_effective_conductivities_u": [ - 0.06717799400298344 + 0.06717799400298025 ], "layer_temperatures_shgc": [ - 258.73189819308146, - 259.74114540441377, - 279.5475578469716, - 279.8668910706718 + 258.73189819308175, + 259.7411454044141, + 279.54755784697454, + 279.86689107067474 ], "layer_temperatures_u": [ 258.73189819308146, @@ -19,15 +19,15 @@ 279.5475578469716, 279.8668910706718 ], - "relative_heat_gain": 20.89989569536374, + "relative_heat_gain": 20.899895695363888, "solid_layer_effective_conductivities_shgc": [ 0.736000001430511, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.7360000014305111, + 0.736000001430511, 1.0 ], - "system_effective_conductivity_shgc": 0.11321007973976464, - "system_effective_conductivity_u": 0.11321007973978474 + "system_effective_conductivity_shgc": 0.11321007973979261, + "system_effective_conductivity_u": 0.11321007973976742 } diff --git a/test/expected_results/CGDB_18000_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/CGDB_18000_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 9b4f28f1..e66b6664 100644 --- a/test/expected_results/CGDB_18000_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/CGDB_18000_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.27312776649938175, - "U": 2.8152489024601755, + "SHGC": 0.27312776649937126, + "U": 2.8152489024595444, "gap_layer_effective_conductivities_shgc": [ - 0.08998539368151044 + 0.0899853936815246 ], "gap_layer_effective_conductivities_u": [ - 0.08412548292599285 + 0.08412548292597945 ], "layer_temperatures_shgc": [ - 314.5947889643446, - 315.23206005501936, - 306.31167447330677, - 306.10986476653295 + 314.59478896434507, + 315.2320600550198, + 306.31167447330967, + 306.1098647665359 ], "layer_temperatures_u": [ - 304.0466963749877, - 303.82973860206135, - 300.42970714260844, - 300.3610601111801 + 304.0466963749882, + 303.8297386020619, + 300.4297071426086, + 300.3610601111802 ], - "relative_heat_gain": 219.96735816739567, + "relative_heat_gain": 219.9673581673918, "solid_layer_effective_conductivities_shgc": [ 0.736000001430511, - 1.0000000000000002 + 1.0 ], "solid_layer_effective_conductivities_u": [ 0.736000001430511, 1.0 ], - "system_effective_conductivity_shgc": 0.1863015860332494, - "system_effective_conductivity_u": 0.13955724447175197 + "system_effective_conductivity_shgc": 0.18630158603316216, + "system_effective_conductivity_u": 0.1395572444718411 } diff --git a/test/expected_results/CGDB_18000_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/CGDB_18000_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index 8a2eca2b..a1349b58 100644 --- a/test/expected_results/CGDB_18000_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/CGDB_18000_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,17 +1,17 @@ { "SHGC": 0.0, - "U": 2.686361914571572, + "U": 2.686361914571387, "gap_layer_effective_conductivities_shgc": [ - 0.06717799400298706 + 0.06717799400298025 ], "gap_layer_effective_conductivities_u": [ - 0.06717799400298344 + 0.06717799400298025 ], "layer_temperatures_shgc": [ - 258.73189819308146, - 259.74114540441377, - 279.5475578469716, - 279.8668910706718 + 258.73189819308175, + 259.7411454044141, + 279.54755784697454, + 279.86689107067474 ], "layer_temperatures_u": [ 258.73189819308146, @@ -19,15 +19,15 @@ 279.5475578469716, 279.8668910706718 ], - "relative_heat_gain": 20.89989569536374, + "relative_heat_gain": 20.899895695363888, "solid_layer_effective_conductivities_shgc": [ 0.736000001430511, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.7360000014305111, + 0.736000001430511, 1.0 ], - "system_effective_conductivity_shgc": 0.11321007973976464, - "system_effective_conductivity_u": 0.11321007973978474 + "system_effective_conductivity_shgc": 0.11321007973979261, + "system_effective_conductivity_u": 0.11321007973976742 } diff --git a/test/expected_results/CGDB_18100/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/CGDB_18100/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index b2532a94..ee562895 100644 --- a/test/expected_results/CGDB_18100/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/CGDB_18100/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -4,12 +4,12 @@ "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ - 312.07532119876856, - 312.1346815167533 + 312.0753211987684, + 312.13468151675306 ], "layer_temperatures_u": [ - 303.8105664529903, - 303.76355618301466 + 303.81056645299043, + 303.76355618301477 ], "relative_heat_gain": 547.5788360313959, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/CGDB_18100/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/CGDB_18100/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 10e5ca5b..17c44989 100644 --- a/test/expected_results/CGDB_18100/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/CGDB_18100/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -4,12 +4,12 @@ "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ - 312.3748784368267, - 312.43799523891323 + 312.3748784368271, + 312.4379952389137 ], "layer_temperatures_u": [ - 303.8105664529903, - 303.76355618301466 + 303.81056645299043, + 303.76355618301477 ], "relative_heat_gain": 549.2622737577162, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/CGDB_18100/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/CGDB_18100/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 8b73ea6e..6fc69247 100644 --- a/test/expected_results/CGDB_18100/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/CGDB_18100/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,6 +1,6 @@ { - "SHGC": 0.728504398296214, - "U": 2.671038008904958, + "SHGC": 0.7285043982962135, + "U": 2.6710380089048065, "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ @@ -8,10 +8,10 @@ 312.01995430665033 ], "layer_temperatures_u": [ - 303.81056645299043, - 303.76355618301477 + 303.8105664529902, + 303.76355618301454 ], - "relative_heat_gain": 549.0719686805675, + "relative_heat_gain": 549.0719686805676, "solid_layer_effective_conductivities_shgc": [ 1.0 ], @@ -19,5 +19,5 @@ 1.0 ], "system_effective_conductivity_shgc": 2.1365862975832446, - "system_effective_conductivity_u": 0.9999999999997258 + "system_effective_conductivity_u": 0.9999999999997771 } diff --git a/test/expected_results/CGDB_18100/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/CGDB_18100/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index f03d3e5a..58115ec8 100644 --- a/test/expected_results/CGDB_18100/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/CGDB_18100/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,6 +1,6 @@ { "SHGC": 0.0, - "U": 3.625480658902045, + "U": 3.6254806589020436, "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ diff --git a/test/expected_results/CGDB_18100/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/CGDB_18100/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 54f2ecef..529b69d1 100644 --- a/test/expected_results/CGDB_18100/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/CGDB_18100/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,17 +1,17 @@ { - "SHGC": 0.7308247832768021, - "U": 2.671038008904958, + "SHGC": 0.7308247832768016, + "U": 2.6710380089048065, "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ - 312.26152564616496, - 312.32322166824497 + 312.2615256461646, + 312.3232216682447 ], "layer_temperatures_u": [ - 303.81056645299043, - 303.76355618301477 + 303.8105664529902, + 303.76355618301454 ], - "relative_heat_gain": 550.7546478578711, + "relative_heat_gain": 550.754647857871, "solid_layer_effective_conductivities_shgc": [ 1.0 ], @@ -19,5 +19,5 @@ 1.0 ], "system_effective_conductivity_shgc": 2.0557829010631683, - "system_effective_conductivity_u": 0.9999999999997258 + "system_effective_conductivity_u": 0.9999999999997771 } diff --git a/test/expected_results/CGDB_18100/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/CGDB_18100/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index f03d3e5a..58115ec8 100644 --- a/test/expected_results/CGDB_18100/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/CGDB_18100/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,6 +1,6 @@ { "SHGC": 0.0, - "U": 3.625480658902045, + "U": 3.6254806589020436, "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ 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 bae84527..d68b0f34 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 @@ -8,16 +8,16 @@ 0.07740465761544255 ], "layer_temperatures_shgc": [ - 315.25127130269493, - 315.252314207774, - 305.7729485314564, - 305.5791783510661 + 315.2512713025785, + 315.25231420765755, + 305.772948531391, + 305.5791783510012 ], "layer_temperatures_u": [ - 303.999371690889, - 303.9990094224259, - 300.4663806322459, - 300.3969051847168 + 303.9993716909696, + 303.99900942250656, + 300.46638063229295, + 300.3969051847638 ], "relative_heat_gain": 77.13721732192542, "solid_layer_effective_conductivities_shgc": [ 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 0d02e955..4e5035e7 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 @@ -8,16 +8,16 @@ 0.07572662693025954 ], "layer_temperatures_shgc": [ - 258.0639566615049, - 258.0652636531581, - 276.4914466690457, - 276.8812662360375 + 258.06395666149314, + 258.0652636531464, + 276.4914466690522, + 276.8812662360441 ], "layer_temperatures_u": [ - 258.0639566615079, - 258.06526365316114, - 276.4914466690383, - 276.88126623603017 + 258.0639566615351, + 258.0652636531883, + 276.49144666907466, + 276.8812662360663 ], "relative_heat_gain": 25.513124490274507, "solid_layer_effective_conductivities_shgc": [ 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 823cba5c..867d9a49 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 @@ -8,16 +8,16 @@ 0.07740465761544255 ], "layer_temperatures_shgc": [ - 315.59366156537277, - 315.5947471654819, - 305.9576338258871, - 305.7599591525153 + 315.5936615653288, + 315.59474716543787, + 305.9576338258578, + 305.75995915248615 ], "layer_temperatures_u": [ - 303.999371690889, - 303.9990094224259, - 300.4663806322459, - 300.3969051847168 + 303.9993716909696, + 303.99900942250656, + 300.46638063229295, + 300.3969051847638 ], "relative_heat_gain": 82.35077213629498, "solid_layer_effective_conductivities_shgc": [ 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 0d02e955..4e5035e7 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 @@ -8,16 +8,16 @@ 0.07572662693025954 ], "layer_temperatures_shgc": [ - 258.0639566615049, - 258.0652636531581, - 276.4914466690457, - 276.8812662360375 + 258.06395666149314, + 258.0652636531464, + 276.4914466690522, + 276.8812662360441 ], "layer_temperatures_u": [ - 258.0639566615079, - 258.06526365316114, - 276.4914466690383, - 276.88126623603017 + 258.0639566615351, + 258.0652636531883, + 276.49144666907466, + 276.8812662360663 ], "relative_heat_gain": 25.513124490274507, "solid_layer_effective_conductivities_shgc": [ 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 d0ec35d2..fda8fb92 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.07512207302226703, - "U": 2.849222658791422, + "SHGC": 0.07512207302195587, + "U": 2.849222658819386, "gap_layer_effective_conductivities_shgc": [ - 0.08822326162111466 + 0.08822326162114796 ], "gap_layer_effective_conductivities_u": [ - 0.07740465761539202 + 0.07740465761461343 ], "layer_temperatures_shgc": [ - 315.0876904259885, - 315.0887136395221, - 305.6993109684356, - 305.50739182705513 + 315.08769042592985, + 315.0887136394634, + 305.6993109684189, + 305.5073918270396 ], "layer_temperatures_u": [ - 303.9993716910528, - 303.99900942258967, - 300.46638063234246, - 300.396905184813 + 303.99937169097467, + 303.99900942251156, + 300.466380632287, + 300.39690518475743 ], - "relative_heat_gain": 76.64340730843972, + "relative_heat_gain": 76.64340730812667, "solid_layer_effective_conductivities_shgc": [ - 7.010862286821205, + 7.010862286824316, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.278819169684902, + 7.278819169686185, 1.0 ], - "system_effective_conductivity_shgc": 0.10603300234387232, - "system_effective_conductivity_u": 0.10031429265385501 + "system_effective_conductivity_shgc": 0.10603300234409416, + "system_effective_conductivity_u": 0.10031429265455162 } 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 3c5fa235..54a4e9ab 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.27932191391377, + "U": 3.279321913913811, "gap_layer_effective_conductivities_shgc": [ - 0.07572662693029923 + 0.07572662693026301 ], "gap_layer_effective_conductivities_u": [ - 0.07572662693034715 + 0.07572662693027168 ], "layer_temperatures_shgc": [ - 258.0639566615053, - 258.06526365315847, - 276.4914466690467, - 276.88126623603847 + 258.06395666146346, + 258.0652636531167, + 276.49144666902487, + 276.8812662360169 ], "layer_temperatures_u": [ - 258.0639566615349, - 258.0652636531882, - 276.49144666907335, - 276.881266236065 + 258.0639566615076, + 258.06526365316074, + 276.4914466690378, + 276.88126623602966 ], - "relative_heat_gain": 25.51312449024742, + "relative_heat_gain": 25.513124490249538, "solid_layer_effective_conductivities_shgc": [ - 7.214868204841505, + 7.214868204841544, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.214868204852718, + 7.214868204841541, 1.0 ], - "system_effective_conductivity_shgc": 0.10775502172014226, - "system_effective_conductivity_u": 0.10775502171997758 + "system_effective_conductivity_shgc": 0.10775502172013393, + "system_effective_conductivity_u": 0.10775502172004706 } 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 a80f145b..bd2cad99 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.08235888454955972, - "U": 2.849222658791422, + "SHGC": 0.08235888454916938, + "U": 2.849222658819386, "gap_layer_effective_conductivities_shgc": [ - 0.08851875748350631 + 0.08851875748304347 ], "gap_layer_effective_conductivities_u": [ - 0.07740465761539202 + 0.07740465761461343 ], "layer_temperatures_shgc": [ - 315.43635591549173, - 315.4374226079875, - 305.8868896293082, - 305.69099609008674 + 315.4363559154043, + 315.4374226079001, + 305.88688962928313, + 305.69099609006327 ], "layer_temperatures_u": [ - 303.9993716910528, - 303.99900942258967, - 300.46638063234246, - 300.396905184813 + 303.99937169097467, + 303.99900942251156, + 300.466380632287, + 300.39690518475743 ], - "relative_heat_gain": 81.89134339148012, + "relative_heat_gain": 81.89134339160253, "solid_layer_effective_conductivities_shgc": [ - 7.014444738732218, - 0.9999999999999999 + 7.014444738733845, + 1.0000000000000002 ], "solid_layer_effective_conductivities_u": [ - 7.278819169684902, + 7.278819169686185, 1.0 ], - "system_effective_conductivity_shgc": 0.10677813556638449, - "system_effective_conductivity_u": 0.10031429265385501 + "system_effective_conductivity_shgc": 0.10677813556649451, + "system_effective_conductivity_u": 0.10031429265455162 } 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 3c5fa235..54a4e9ab 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.27932191391377, + "U": 3.279321913913811, "gap_layer_effective_conductivities_shgc": [ - 0.07572662693029923 + 0.07572662693026301 ], "gap_layer_effective_conductivities_u": [ - 0.07572662693034715 + 0.07572662693027168 ], "layer_temperatures_shgc": [ - 258.0639566615053, - 258.06526365315847, - 276.4914466690467, - 276.88126623603847 + 258.06395666146346, + 258.0652636531167, + 276.49144666902487, + 276.8812662360169 ], "layer_temperatures_u": [ - 258.0639566615349, - 258.0652636531882, - 276.49144666907335, - 276.881266236065 + 258.0639566615076, + 258.06526365316074, + 276.4914466690378, + 276.88126623602966 ], - "relative_heat_gain": 25.51312449024742, + "relative_heat_gain": 25.513124490249538, "solid_layer_effective_conductivities_shgc": [ - 7.214868204841505, + 7.214868204841544, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.214868204852718, + 7.214868204841541, 1.0 ], - "system_effective_conductivity_shgc": 0.10775502172014226, - "system_effective_conductivity_u": 0.10775502171997758 + "system_effective_conductivity_shgc": 0.10775502172013393, + "system_effective_conductivity_u": 0.10775502172004706 } 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 a62b61d1..c42ec13a 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 @@ -8,16 +8,16 @@ 0.07740465761505462 ], "layer_temperatures_shgc": [ - 315.2512713024132, - 315.25231420749225, - 305.7729485313064, - 305.57917835091723 + 315.25127130253014, + 315.2523142076093, + 305.7729485313698, + 305.5791783509803 ], "layer_temperatures_u": [ - 303.9993716908667, - 303.9990094224036, - 300.46638063222406, - 300.3969051846953 + 303.9993716908939, + 303.9990094224308, + 300.4663806322605, + 300.39690518473185 ], "relative_heat_gain": 77.13721732188286, "solid_layer_effective_conductivities_shgc": [ 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 6c9ef433..66f9254b 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 @@ -8,16 +8,16 @@ 0.07572662693025962 ], "layer_temperatures_shgc": [ - 258.0639566615054, - 258.06526365315864, - 276.49144666904516, - 276.881266236037 + 258.0639566614924, + 258.0652636531456, + 276.49144666905363, + 276.8812662360456 ], "layer_temperatures_u": [ - 258.06395666150826, - 258.0652636531615, - 276.4914466690397, - 276.8812662360316 + 258.0639566615353, + 258.0652636531886, + 276.4914466690745, + 276.88126623606615 ], "relative_heat_gain": 25.513124490275068, "solid_layer_effective_conductivities_shgc": [ 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 a62b61d1..c42ec13a 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 @@ -8,16 +8,16 @@ 0.07740465761505462 ], "layer_temperatures_shgc": [ - 315.2512713024132, - 315.25231420749225, - 305.7729485313064, - 305.57917835091723 + 315.25127130253014, + 315.2523142076093, + 305.7729485313698, + 305.5791783509803 ], "layer_temperatures_u": [ - 303.9993716908667, - 303.9990094224036, - 300.46638063222406, - 300.3969051846953 + 303.9993716908939, + 303.9990094224308, + 300.4663806322605, + 300.39690518473185 ], "relative_heat_gain": 77.13721732188286, "solid_layer_effective_conductivities_shgc": [ 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 6c9ef433..66f9254b 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 @@ -8,16 +8,16 @@ 0.07572662693025962 ], "layer_temperatures_shgc": [ - 258.0639566615054, - 258.06526365315864, - 276.49144666904516, - 276.881266236037 + 258.0639566614924, + 258.0652636531456, + 276.49144666905363, + 276.8812662360456 ], "layer_temperatures_u": [ - 258.06395666150826, - 258.0652636531615, - 276.4914466690397, - 276.8812662360316 + 258.0639566615353, + 258.0652636531886, + 276.4914466690745, + 276.88126623606615 ], "relative_heat_gain": 25.513124490275068, "solid_layer_effective_conductivities_shgc": [ 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 8eda291c..d6956034 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.07512207302219222, - "U": 2.8492226587680993, + "SHGC": 0.07512207302250735, + "U": 2.8492226587907425, "gap_layer_effective_conductivities_shgc": [ - 0.08822326162079641 + 0.08822326162125299 ], "gap_layer_effective_conductivities_u": [ - 0.07740465761527814 + 0.07740465761514782 ], "layer_temperatures_shgc": [ - 315.0876904259827, - 315.0887136395162, - 305.6993109684343, - 305.50739182705456 + 315.08769042594054, + 315.08871363947407, + 305.6993109684106, + 305.50739182703035 ], "layer_temperatures_u": [ - 303.9993716910429, - 303.9990094225798, - 300.4663806323249, - 300.3969051847956 + 303.99937169087843, + 303.9990094224153, + 300.4663806322386, + 300.3969051847099 ], - "relative_heat_gain": 76.64340730795463, + "relative_heat_gain": 76.64340730778228, "solid_layer_effective_conductivities_shgc": [ - 7.010862286826093, + 7.010862286824104, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.278819169785277, + 7.278819169787496, 1.0 ], - "system_effective_conductivity_shgc": 0.10603300234394797, - "system_effective_conductivity_u": 0.10031429265406851 + "system_effective_conductivity_shgc": 0.10603300234394107, + "system_effective_conductivity_u": 0.100314292654165 } 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 8243b2c0..d405576a 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.2793219139137153, + "U": 3.2793219139138596, "gap_layer_effective_conductivities_shgc": [ - 0.07572662693030231 + 0.07572662693026433 ], "gap_layer_effective_conductivities_u": [ - 0.07572662693034515 + 0.0757266269302692 ], "layer_temperatures_shgc": [ - 258.06395666150513, - 258.0652636531584, - 276.4914466690451, - 276.88126623603694 + 258.0639566614643, + 258.0652636531175, + 276.4914466690242, + 276.8812662360162 ], "layer_temperatures_u": [ - 258.06395666153526, - 258.0652636531885, - 276.49144666907375, - 276.88126623606536 + 258.06395666150837, + 258.0652636531616, + 276.49144666903936, + 276.88126623603125 ], - "relative_heat_gain": 25.51312449024986, + "relative_heat_gain": 25.51312449025156, "solid_layer_effective_conductivities_shgc": [ - 7.21486820484151, + 7.2148682048415385, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.214868204830258, + 7.214868204841524, 1.0 ], - "system_effective_conductivity_shgc": 0.10775502172014914, - "system_effective_conductivity_u": 0.10775502171997911 + "system_effective_conductivity_shgc": 0.10775502172014724, + "system_effective_conductivity_u": 0.10775502172006826 } 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 8eda291c..d6956034 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.07512207302219222, - "U": 2.8492226587680993, + "SHGC": 0.07512207302250735, + "U": 2.8492226587907425, "gap_layer_effective_conductivities_shgc": [ - 0.08822326162079641 + 0.08822326162125299 ], "gap_layer_effective_conductivities_u": [ - 0.07740465761527814 + 0.07740465761514782 ], "layer_temperatures_shgc": [ - 315.0876904259827, - 315.0887136395162, - 305.6993109684343, - 305.50739182705456 + 315.08769042594054, + 315.08871363947407, + 305.6993109684106, + 305.50739182703035 ], "layer_temperatures_u": [ - 303.9993716910429, - 303.9990094225798, - 300.4663806323249, - 300.3969051847956 + 303.99937169087843, + 303.9990094224153, + 300.4663806322386, + 300.3969051847099 ], - "relative_heat_gain": 76.64340730795463, + "relative_heat_gain": 76.64340730778228, "solid_layer_effective_conductivities_shgc": [ - 7.010862286826093, + 7.010862286824104, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.278819169785277, + 7.278819169787496, 1.0 ], - "system_effective_conductivity_shgc": 0.10603300234394797, - "system_effective_conductivity_u": 0.10031429265406851 + "system_effective_conductivity_shgc": 0.10603300234394107, + "system_effective_conductivity_u": 0.100314292654165 } 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 8243b2c0..d405576a 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.2793219139137153, + "U": 3.2793219139138596, "gap_layer_effective_conductivities_shgc": [ - 0.07572662693030231 + 0.07572662693026433 ], "gap_layer_effective_conductivities_u": [ - 0.07572662693034515 + 0.0757266269302692 ], "layer_temperatures_shgc": [ - 258.06395666150513, - 258.0652636531584, - 276.4914466690451, - 276.88126623603694 + 258.0639566614643, + 258.0652636531175, + 276.4914466690242, + 276.8812662360162 ], "layer_temperatures_u": [ - 258.06395666153526, - 258.0652636531885, - 276.49144666907375, - 276.88126623606536 + 258.06395666150837, + 258.0652636531616, + 276.49144666903936, + 276.88126623603125 ], - "relative_heat_gain": 25.51312449024986, + "relative_heat_gain": 25.51312449025156, "solid_layer_effective_conductivities_shgc": [ - 7.21486820484151, + 7.2148682048415385, 1.0 ], "solid_layer_effective_conductivities_u": [ - 7.214868204830258, + 7.214868204841524, 1.0 ], - "system_effective_conductivity_shgc": 0.10775502172014914, - "system_effective_conductivity_u": 0.10775502171997911 + "system_effective_conductivity_shgc": 0.10775502172014724, + "system_effective_conductivity_u": 0.10775502172006826 } 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 4c718095..4db819ed 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 @@ -8,16 +8,16 @@ 0.10089528992799764 ], "layer_temperatures_shgc": [ - 325.4589438799215, - 325.4954807895941, - 310.24572526621745, - 309.95972122351964 + 325.4589438799203, + 325.4954807895929, + 310.2457252662199, + 309.95972122352214 ], "layer_temperatures_u": [ - 304.2304568918044, - 304.22592061735713, - 300.9772059632942, - 300.8960996514749 + 304.23045689179986, + 304.2259206173526, + 300.9772059632909, + 300.8960996514716 ], "relative_heat_gain": 240.05003023168666, "solid_layer_effective_conductivities_shgc": [ 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 e7fc8370..ed97bd6f 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 @@ -8,16 +8,16 @@ 0.07505053254322804 ], "layer_temperatures_shgc": [ - 257.87556315306654, - 257.89543869852525, - 276.84850920409866, - 277.2300741068029 + 257.87556315306927, + 257.8954386985281, + 276.848509204101, + 277.2300741068052 ], "layer_temperatures_u": [ - 257.87556315306966, - 257.8954386985285, - 276.8485092040982, - 277.2300741068024 + 257.87556315306836, + 257.8954386985272, + 276.8485092041011, + 277.2300741068053 ], "relative_heat_gain": 24.972868701617987, "solid_layer_effective_conductivities_shgc": [ 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 66954049..fd5aea45 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 @@ -8,16 +8,16 @@ 0.10089528992799764 ], "layer_temperatures_shgc": [ - 328.77478173241457, - 328.81689741794816, - 310.7944974398523, - 310.47513634546067 + 328.77478173240945, + 328.81689741794304, + 310.79449743984924, + 310.47513634545766 ], "layer_temperatures_u": [ - 304.2304568918044, - 304.22592061735713, - 300.9772059632942, - 300.8960996514749 + 304.23045689179986, + 304.2259206173526, + 300.9772059632909, + 300.8960996514716 ], "relative_heat_gain": 141.8246026359631, "solid_layer_effective_conductivities_shgc": [ 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 e7fc8370..ed97bd6f 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 @@ -8,16 +8,16 @@ 0.07505053254322804 ], "layer_temperatures_shgc": [ - 257.87556315306654, - 257.89543869852525, - 276.84850920409866, - 277.2300741068029 + 257.87556315306927, + 257.8954386985281, + 276.848509204101, + 277.2300741068052 ], "layer_temperatures_u": [ - 257.87556315306966, - 257.8954386985285, - 276.8485092040982, - 277.2300741068024 + 257.87556315306836, + 257.8954386985272, + 276.8485092041011, + 277.2300741068053 ], "relative_heat_gain": 24.972868701617987, "solid_layer_effective_conductivities_shgc": [ 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 2dd80ef0..b0b20557 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.2957301331641582, - "U": 3.326210188271486, + "SHGC": 0.29573013316416513, + "U": 3.3262101882715496, "gap_layer_effective_conductivities_shgc": [ - 0.0790267598630891 + 0.07902675986307658 ], "gap_layer_effective_conductivities_u": [ - 0.10089528992794808 + 0.10089528992788582 ], "layer_temperatures_shgc": [ - 325.416535625247, - 325.45297829760744, - 310.2072538964374, - 309.92170102861417 + 325.4165356252511, + 325.4529782976116, + 310.2072538964371, + 309.9217010286139 ], "layer_temperatures_u": [ - 304.2304568918089, - 304.2259206173616, - 300.97720596329424, - 300.8960996514749 + 304.23045689180145, + 304.2259206173542, + 300.97720596329117, + 300.8960996514719 ], - "relative_heat_gain": 240.33324976266653, + "relative_heat_gain": 240.33324976266698, "solid_layer_effective_conductivities_shgc": [ - 1.9329497087882108, + 1.9329497087886855, 0.9999999999999998 ], "solid_layer_effective_conductivities_u": [ - 2.395148811166921, + 2.3951488111592476, 1.0 ], - "system_effective_conductivity_shgc": 0.1075636680037029, - "system_effective_conductivity_u": 0.12929166678556556 + "system_effective_conductivity_shgc": 0.10756366800374006, + "system_effective_conductivity_u": 0.12929166678552165 } 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 7da39b02..ede8e63d 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.209880295837857, + "U": 3.2098802958376607, "gap_layer_effective_conductivities_shgc": [ - 0.07505053254323499 + 0.07505053254323517 ], "gap_layer_effective_conductivities_u": [ - 0.07505053254323318 + 0.07505053254322999 ], "layer_temperatures_shgc": [ - 257.87556315307177, - 257.8954386985306, - 276.8485092041025, - 277.23007410680674 + 257.875563153072, + 257.8954386985308, + 276.84850920409997, + 277.2300741068042 ], "layer_temperatures_u": [ - 257.87556315307035, - 257.8954386985292, - 276.8485092041017, - 277.23007410680583 + 257.8755631530662, + 257.895438698525, + 276.8485092041027, + 277.23007410680697 ], - "relative_heat_gain": 24.972868701616765, + "relative_heat_gain": 24.97286870161743, "solid_layer_effective_conductivities_shgc": [ - 2.2684945092033666, + 2.2684945092061826, 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.268494509204789, + 2.2684945092061817, 1.0 ], - "system_effective_conductivity_shgc": 0.10478864568745669, - "system_effective_conductivity_u": 0.10478864568745319 + "system_effective_conductivity_shgc": 0.10478864568746264, + "system_effective_conductivity_u": 0.10478864568744743 } 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 715d3499..f8a1e4ad 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.16006623044793694, - "U": 3.326210188271486, + "SHGC": 0.1600662304479138, + "U": 3.3262101882715496, "gap_layer_effective_conductivities_shgc": [ - 0.08072439000378806 + 0.08072439000378602 ], "gap_layer_effective_conductivities_u": [ - 0.10089528992794808 + 0.10089528992788582 ], "layer_temperatures_shgc": [ - 328.72627922106756, - 328.76830558085135, - 310.77540870498586, - 310.45655070748086 + 328.72627922106665, + 328.76830558085044, + 310.7754087049881, + 310.4565507074831 ], "layer_temperatures_u": [ - 304.2304568918089, - 304.2259206173616, - 300.97720596329424, - 300.8960996514749 + 304.23045689180145, + 304.2259206173542, + 300.97720596329117, + 300.8960996514719 ], - "relative_heat_gain": 141.9535299653198, + "relative_heat_gain": 141.95352996530266, "solid_layer_effective_conductivities_shgc": [ - 1.9313760836535712, + 1.931376083653571, 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.395148811166921, + 2.3951488111592476, 1.0 ], - "system_effective_conductivity_shgc": 0.09554285520234924, - "system_effective_conductivity_u": 0.12929166678556556 + "system_effective_conductivity_shgc": 0.09554285520234772, + "system_effective_conductivity_u": 0.12929166678552165 } 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 7da39b02..ede8e63d 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.209880295837857, + "U": 3.2098802958376607, "gap_layer_effective_conductivities_shgc": [ - 0.07505053254323499 + 0.07505053254323517 ], "gap_layer_effective_conductivities_u": [ - 0.07505053254323318 + 0.07505053254322999 ], "layer_temperatures_shgc": [ - 257.87556315307177, - 257.8954386985306, - 276.8485092041025, - 277.23007410680674 + 257.875563153072, + 257.8954386985308, + 276.84850920409997, + 277.2300741068042 ], "layer_temperatures_u": [ - 257.87556315307035, - 257.8954386985292, - 276.8485092041017, - 277.23007410680583 + 257.8755631530662, + 257.895438698525, + 276.8485092041027, + 277.23007410680697 ], - "relative_heat_gain": 24.972868701616765, + "relative_heat_gain": 24.97286870161743, "solid_layer_effective_conductivities_shgc": [ - 2.2684945092033666, + 2.2684945092061826, 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.268494509204789, + 2.2684945092061817, 1.0 ], - "system_effective_conductivity_shgc": 0.10478864568745669, - "system_effective_conductivity_u": 0.10478864568745319 + "system_effective_conductivity_shgc": 0.10478864568746264, + "system_effective_conductivity_u": 0.10478864568744743 } 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 06f506fa..a384a41a 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 @@ -8,16 +8,16 @@ 0.09385627861928467 ], "layer_temperatures_shgc": [ - 325.41471894421056, - 325.45115393248005, - 310.1017904611521, - 309.8196564997702 + 325.4147189442148, + 325.4511539324843, + 310.1017904611545, + 309.8196564997726 ], "layer_temperatures_u": [ - 304.1952685045735, - 304.19055342728365, - 300.8419435019547, - 300.76393325474476 + 304.1952685045862, + 304.1905534272963, + 300.84194350195907, + 300.7639332547491 ], "relative_heat_gain": 238.82700684424194, "solid_layer_effective_conductivities_shgc": [ 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 1d2692ef..b1f14093 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 @@ -8,16 +8,16 @@ 0.07556478810876094 ], "layer_temperatures_shgc": [ - 257.8559292635022, - 257.8756705756646, - 276.7878516728522, - 277.1708185618143 + 257.85592926350046, + 257.87567057566287, + 276.787851672851, + 277.1708185618132 ], "layer_temperatures_u": [ - 257.85592926350216, - 257.87567057566457, - 276.7878516728526, - 277.17081856181477 + 257.85592926350245, + 257.87567057566486, + 276.78785167285207, + 277.1708185618142 ], "relative_heat_gain": 25.064626665972646, "solid_layer_effective_conductivities_shgc": [ 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 5d5ceca9..e8a96d12 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 @@ -8,16 +8,16 @@ 0.09385627861928467 ], "layer_temperatures_shgc": [ - 328.72933759552643, - 328.7713662949826, - 310.6470547754841, - 310.3316841340811 + 328.72933759551614, + 328.7713662949722, + 310.6470547754813, + 310.3316841340784 ], "layer_temperatures_u": [ - 304.1952685045735, - 304.19055342728365, - 300.8419435019547, - 300.76393325474476 + 304.1952685045862, + 304.1905534272963, + 300.84194350195907, + 300.7639332547491 ], "relative_heat_gain": 140.56500386971945, "solid_layer_effective_conductivities_shgc": [ 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 1d2692ef..b1f14093 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 @@ -8,16 +8,16 @@ 0.07556478810876094 ], "layer_temperatures_shgc": [ - 257.8559292635022, - 257.8756705756646, - 276.7878516728522, - 277.1708185618143 + 257.85592926350046, + 257.87567057566287, + 276.787851672851, + 277.1708185618132 ], "layer_temperatures_u": [ - 257.85592926350216, - 257.87567057566457, - 276.7878516728526, - 277.17081856181477 + 257.85592926350245, + 257.87567057566486, + 276.78785167285207, + 277.1708185618142 ], "relative_heat_gain": 25.064626665972646, "solid_layer_effective_conductivities_shgc": [ 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 fed2ddeb..c5259403 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.29540648073088444, - "U": 3.199239038728343, + "SHGC": 0.29540648073090076, + "U": 3.199239038730147, "gap_layer_effective_conductivities_shgc": [ - 0.07736617414564986 + 0.07736617414564591 ], "gap_layer_effective_conductivities_u": [ - 0.09385627861934363 + 0.09385627861931353 ], "layer_temperatures_shgc": [ - 325.3723409986651, - 325.4086816383631, - 310.0633077250966, - 309.781623345626 + 325.3723409986648, + 325.40868163836274, + 310.063307725098, + 309.7816233456275 ], "layer_temperatures_u": [ - 304.19526850458794, - 304.19055342729814, - 300.8419435019598, - 300.76393325474976 + 304.1952685045886, + 304.1905534272988, + 300.8419435019574, + 300.76393325474737 ], - "relative_heat_gain": 239.11071040301533, + "relative_heat_gain": 239.110710402998, "solid_layer_effective_conductivities_shgc": [ - 1.927881276912346, + 1.9278812769125053, 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.3948690182765127, + 2.3948690182695715, 1.0 ], - "system_effective_conductivity_shgc": 0.10558327679558173, - "system_effective_conductivity_u": 0.12084161244040957 + "system_effective_conductivity_shgc": 0.10558327679558131, + "system_effective_conductivity_u": 0.12084161244043883 } 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 004c35f0..6863663f 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.2216743786598907, + "U": 3.221674378659764, "gap_layer_effective_conductivities_shgc": [ - 0.07556478810876263 + 0.07556478810876172 ], "gap_layer_effective_conductivities_u": [ - 0.07556478810876119 + 0.07556478810876531 ], "layer_temperatures_shgc": [ - 257.8559292635026, - 257.875670575665, - 276.78785167285423, - 277.1708185618164 + 257.85592926350137, + 257.87567057566383, + 276.78785167285133, + 277.1708185618135 ], "layer_temperatures_u": [ - 257.85592926350205, - 257.87567057566446, - 276.7878516728526, + 257.8559292635023, + 257.8756705756647, + 276.7878516728525, 277.1708185618147 ], - "relative_heat_gain": 25.06462666597348, + "relative_heat_gain": 25.06462666597354, "solid_layer_effective_conductivities_shgc": [ - 2.265273811418358, + 2.2652738114198114, 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.2652738114197972, + 2.265273811419789, 1.0 ], - "system_effective_conductivity_shgc": 0.10538941957215436, - "system_effective_conductivity_u": 0.10538941957214448 + "system_effective_conductivity_shgc": 0.10538941957216921, + "system_effective_conductivity_u": 0.10538941957214255 } 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 7de2138b..e54624ae 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.15969224222356831, - "U": 3.199239038728343, + "SHGC": 0.15969224222354347, + "U": 3.199239038730147, "gap_layer_effective_conductivities_shgc": [ - 0.07926144538654571 + 0.07926144538654285 ], "gap_layer_effective_conductivities_u": [ - 0.09385627861934363 + 0.09385627861931353 ], "layer_temperatures_shgc": [ - 328.68085867368967, - 328.72279785491435, - 310.62799927178366, - 310.31312989322873 + 328.6808586736839, + 328.72279785490855, + 310.6279992717799, + 310.31312989322504 ], "layer_temperatures_u": [ - 304.19526850458794, - 304.19055342729814, - 300.8419435019598, - 300.76393325474976 + 304.1952685045886, + 304.1905534272988, + 300.8419435019574, + 300.76393325474737 ], - "relative_heat_gain": 140.69448847852385, + "relative_heat_gain": 140.694488478528, "solid_layer_effective_conductivities_shgc": [ - 1.9266647553535492, + 1.9266647553533474, 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.3948690182765127, + 2.3948690182695715, 1.0 ], - "system_effective_conductivity_shgc": 0.0938788529136097, - "system_effective_conductivity_u": 0.12084161244040957 + "system_effective_conductivity_shgc": 0.09387885291361146, + "system_effective_conductivity_u": 0.12084161244043883 } 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 004c35f0..6863663f 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.2216743786598907, + "U": 3.221674378659764, "gap_layer_effective_conductivities_shgc": [ - 0.07556478810876263 + 0.07556478810876172 ], "gap_layer_effective_conductivities_u": [ - 0.07556478810876119 + 0.07556478810876531 ], "layer_temperatures_shgc": [ - 257.8559292635026, - 257.875670575665, - 276.78785167285423, - 277.1708185618164 + 257.85592926350137, + 257.87567057566383, + 276.78785167285133, + 277.1708185618135 ], "layer_temperatures_u": [ - 257.85592926350205, - 257.87567057566446, - 276.7878516728526, + 257.8559292635023, + 257.8756705756647, + 276.7878516728525, 277.1708185618147 ], - "relative_heat_gain": 25.06462666597348, + "relative_heat_gain": 25.06462666597354, "solid_layer_effective_conductivities_shgc": [ - 2.265273811418358, + 2.2652738114198114, 1.0 ], "solid_layer_effective_conductivities_u": [ - 2.2652738114197972, + 2.265273811419789, 1.0 ], - "system_effective_conductivity_shgc": 0.10538941957215436, - "system_effective_conductivity_u": 0.10538941957214448 + "system_effective_conductivity_shgc": 0.10538941957216921, + "system_effective_conductivity_u": 0.10538941957214255 } diff --git a/test/expected_results/IGSDB_5051_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/IGSDB_5051_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 217e10df..f50c92c7 100644 --- a/test/expected_results/IGSDB_5051_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/IGSDB_5051_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -8,16 +8,16 @@ 0.031684159770470975 ], "layer_temperatures_shgc": [ - 310.37763375074866, - 310.51751980494294, - 304.9009871610042, - 304.7906830583087 + 310.3776337507489, + 310.51751980494316, + 304.90098716100755, + 304.7906830583121 ], "layer_temperatures_u": [ - 304.50137065418284, - 304.46162284469875, - 299.1509020291626, - 299.11051825343793 + 304.5013706541812, + 304.46162284469705, + 299.15090202915536, + 299.1105182534307 ], "relative_heat_gain": 476.7950158934044, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/IGSDB_5051_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/IGSDB_5051_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index ff0ef137..4e4519aa 100644 --- a/test/expected_results/IGSDB_5051_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/IGSDB_5051_NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -8,16 +8,16 @@ 0.03207036689616506 ], "layer_temperatures_shgc": [ - 257.4675911673272, - 257.6707931801039, - 284.4937433781166, - 284.7001966296865 + 257.4675911673269, + 257.6707931801036, + 284.49374337811406, + 284.700196629684 ], "layer_temperatures_u": [ - 257.46759116732704, + 257.467591167327, 257.6707931801037, - 284.4937433781154, - 284.7001966296853 + 284.49374337811605, + 284.7001966296859 ], "relative_heat_gain": 13.512065464975564, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/IGSDB_5051_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/IGSDB_5051_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 2928d927..4109ab27 100644 --- a/test/expected_results/IGSDB_5051_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/IGSDB_5051_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -8,16 +8,16 @@ 0.031684159770470975 ], "layer_temperatures_shgc": [ - 310.64962266443035, - 310.797353109813, - 305.0253917635758, - 304.9128980653888 + 310.64962266442996, + 310.7973531098125, + 305.02539176357755, + 304.91289806539055 ], "layer_temperatures_u": [ - 304.50137065418284, - 304.46162284469875, - 299.1509020291626, - 299.11051825343793 + 304.5013706541812, + 304.46162284469705, + 299.15090202915536, + 299.1105182534307 ], "relative_heat_gain": 477.2371775738981, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/IGSDB_5051_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/IGSDB_5051_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index ff0ef137..4e4519aa 100644 --- a/test/expected_results/IGSDB_5051_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/IGSDB_5051_NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -8,16 +8,16 @@ 0.03207036689616506 ], "layer_temperatures_shgc": [ - 257.4675911673272, - 257.6707931801039, - 284.4937433781166, - 284.7001966296865 + 257.4675911673269, + 257.6707931801036, + 284.49374337811406, + 284.700196629684 ], "layer_temperatures_u": [ - 257.46759116732704, + 257.467591167327, 257.6707931801037, - 284.4937433781154, - 284.7001966296853 + 284.49374337811605, + 284.7001966296859 ], "relative_heat_gain": 13.512065464975564, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/IGSDB_5051_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/IGSDB_5051_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index fab483fd..960caec9 100644 --- a/test/expected_results/IGSDB_5051_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/IGSDB_5051_NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.6436217642222066, - "U": 1.6561587285035109, + "SHGC": 0.643621764222181, + "U": 1.6561587285036972, "gap_layer_effective_conductivities_shgc": [ - 0.032451390598367026 + 0.03245139059836878 ], "gap_layer_effective_conductivities_u": [ - 0.031684159770470476 + 0.03168415977047091 ], "layer_temperatures_shgc": [ - 310.2684896336507, - 310.4054076171981, - 304.89819367467163, - 304.7883512096931 + 310.2684896336509, + 310.4054076171983, + 304.89819367467277, + 304.78835120969427 ], "layer_temperatures_u": [ - 304.5013706541815, - 304.4616228446975, - 299.15090202916207, - 299.1105182534374 + 304.50137065418113, + 304.4616228446971, + 299.1509020291586, + 299.11051825343395 ], - "relative_heat_gain": 479.621663238548, + "relative_heat_gain": 479.62166323854007, "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.19843271860913048, - "system_effective_conductivity_u": 0.04607755760301072 + "system_effective_conductivity_shgc": 0.19843271860915565, + "system_effective_conductivity_u": 0.04607755760299949 } diff --git a/test/expected_results/IGSDB_5051_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/IGSDB_5051_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index 610524f1..4fd89f71 100644 --- a/test/expected_results/IGSDB_5051_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/IGSDB_5051_NFRC_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 1.7367693399715047, + "U": 1.7367693399716668, "gap_layer_effective_conductivities_shgc": [ - 0.032070366896165395 + 0.032070366896165145 ], "gap_layer_effective_conductivities_u": [ - 0.03207036689616577 + 0.03207036689616551 ], "layer_temperatures_shgc": [ - 257.46759116732716, - 257.67079318010383, - 284.4937433781162, - 284.70019662968616 + 257.46759116732693, + 257.67079318010354, + 284.4937433781147, + 284.7001966296846 ], "layer_temperatures_u": [ - 257.4675911673272, - 257.6707931801039, - 284.4937433781166, - 284.7001966296865 + 257.467591167327, + 257.6707931801037, + 284.49374337811537, + 284.7001966296853 ], - "relative_heat_gain": 13.512065464977027, + "relative_heat_gain": 13.51206546497684, "solid_layer_effective_conductivities_shgc": [ - 1.0, + 0.9999999999999999, 1.0 ], "solid_layer_effective_conductivities_u": [ - 1.0, - 1.0 + 0.9999999999999999, + 0.9999999999999999 ], - "system_effective_conductivity_shgc": 0.04663076106287006, - "system_effective_conductivity_u": 0.04663076106286873 + "system_effective_conductivity_shgc": 0.04663076106286647, + "system_effective_conductivity_u": 0.046630761062855255 } diff --git a/test/expected_results/IGSDB_5051_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/IGSDB_5051_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index ff1a8df7..6f007d9f 100644 --- a/test/expected_results/IGSDB_5051_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/IGSDB_5051_NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.6442309875734687, - "U": 1.6561587285035109, + "SHGC": 0.6442309875734419, + "U": 1.6561587285036972, "gap_layer_effective_conductivities_shgc": [ - 0.03248025716302676 + 0.032480257163026875 ], "gap_layer_effective_conductivities_u": [ - 0.031684159770470476 + 0.03168415977047091 ], "layer_temperatures_shgc": [ - 310.5410861085066, - 310.68586405383036, - 305.0228594038755, - 304.9108232399271 + 310.5410861085062, + 310.6858640538299, + 305.02285940387765, + 304.9108232399292 ], "layer_temperatures_u": [ - 304.5013706541815, - 304.4616228446975, - 299.15090202916207, - 299.1105182534374 + 304.50137065418113, + 304.4616228446971, + 299.1509020291586, + 299.11051825343395 ], - "relative_heat_gain": 480.0634552067143, + "relative_heat_gain": 480.06345520672255, "solid_layer_effective_conductivities_shgc": [ 1.0, - 1.0 + 0.9999999999999999 ], "solid_layer_effective_conductivities_u": [ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.19656644483725838, - "system_effective_conductivity_u": 0.04607755760301072 + "system_effective_conductivity_shgc": 0.1965664448371917, + "system_effective_conductivity_u": 0.04607755760299949 } diff --git a/test/expected_results/IGSDB_5051_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/IGSDB_5051_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index 610524f1..4fd89f71 100644 --- a/test/expected_results/IGSDB_5051_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/IGSDB_5051_NFRC_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 1.7367693399715047, + "U": 1.7367693399716668, "gap_layer_effective_conductivities_shgc": [ - 0.032070366896165395 + 0.032070366896165145 ], "gap_layer_effective_conductivities_u": [ - 0.03207036689616577 + 0.03207036689616551 ], "layer_temperatures_shgc": [ - 257.46759116732716, - 257.67079318010383, - 284.4937433781162, - 284.70019662968616 + 257.46759116732693, + 257.67079318010354, + 284.4937433781147, + 284.7001966296846 ], "layer_temperatures_u": [ - 257.4675911673272, - 257.6707931801039, - 284.4937433781166, - 284.7001966296865 + 257.467591167327, + 257.6707931801037, + 284.49374337811537, + 284.7001966296853 ], - "relative_heat_gain": 13.512065464977027, + "relative_heat_gain": 13.51206546497684, "solid_layer_effective_conductivities_shgc": [ - 1.0, + 0.9999999999999999, 1.0 ], "solid_layer_effective_conductivities_u": [ - 1.0, - 1.0 + 0.9999999999999999, + 0.9999999999999999 ], - "system_effective_conductivity_shgc": 0.04663076106287006, - "system_effective_conductivity_u": 0.04663076106286873 + "system_effective_conductivity_shgc": 0.04663076106286647, + "system_effective_conductivity_u": 0.046630761062855255 } diff --git a/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 6973b6c1..b11b265e 100644 --- a/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -8,16 +8,16 @@ 0.08405579157744504 ], "layer_temperatures_shgc": [ - 310.0623125402862, + 310.06231254028614, 310.1366403671301, - 306.34141598830394, - 306.19465739592613 + 306.34141598830433, + 306.19465739592647 ], "layer_temperatures_u": [ - 303.7293997101254, - 303.6636043601591, - 300.3499284912728, - 300.2830804135737 + 303.72939971012556, + 303.6636043601593, + 300.3499284912747, + 300.2830804135756 ], "relative_heat_gain": 488.0411745331784, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json index b1903409..1e77a0b2 100644 --- a/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -8,16 +8,16 @@ 0.06714643280042361 ], "layer_temperatures_shgc": [ - 259.1682373122834, - 259.4848450831281, - 279.44578975300817, - 279.7674632584524 + 259.16823731228396, + 259.48484508312873, + 279.4457897530098, + 279.76746325845403 ], "layer_temperatures_u": [ - 259.1682373122838, - 259.48484508312856, - 279.44578975300936, - 279.7674632584535 + 259.16823731228345, + 259.4848450831282, + 279.4457897530091, + 279.7674632584533 ], "relative_heat_gain": 21.05306373650876, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 99a386e6..b57a8858 100644 --- a/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -8,16 +8,16 @@ 0.08405579157744504 ], "layer_temperatures_shgc": [ - 310.3783251798764, - 310.45851732925655, - 306.53030151538155, - 306.37962829316814 + 310.37832517987533, + 310.4585173292554, + 306.53030151538053, + 306.3796282931672 ], "layer_temperatures_u": [ - 303.7293997101254, - 303.6636043601591, - 300.3499284912728, - 300.2830804135737 + 303.72939971012556, + 303.6636043601593, + 300.3499284912747, + 300.2830804135756 ], "relative_heat_gain": 489.00596757548794, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json index b1903409..1e77a0b2 100644 --- a/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -8,16 +8,16 @@ 0.06714643280042361 ], "layer_temperatures_shgc": [ - 259.1682373122834, - 259.4848450831281, - 279.44578975300817, - 279.7674632584524 + 259.16823731228396, + 259.48484508312873, + 279.4457897530098, + 279.76746325845403 ], "layer_temperatures_u": [ - 259.1682373122838, - 259.48484508312856, - 279.44578975300936, - 279.7674632584535 + 259.16823731228345, + 259.4848450831282, + 279.4457897530091, + 279.7674632584533 ], "relative_heat_gain": 21.05306373650876, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 4df239dc..4622a6e7 100644 --- a/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,33 +1,33 @@ { - "SHGC": 0.647153019358423, - "U": 2.7414729152596116, + "SHGC": 0.6471530193584099, + "U": 2.7414729152600494, "gap_layer_effective_conductivities_shgc": [ - 0.08813860830374033 + 0.08813860830375767 ], "gap_layer_effective_conductivities_u": [ - 0.08405579157747463 + 0.08405579157745303 ], "layer_temperatures_shgc": [ - 309.9499756468733, - 310.02253771021543, - 306.3057809811705, - 306.16032501457033 + 309.9499756468739, + 310.02253771021606, + 306.3057809811709, + 306.16032501457073 ], "layer_temperatures_u": [ - 303.7293997101249, - 303.6636043601586, - 300.3499284912712, - 300.2830804135722 + 303.7293997101258, + 303.6636043601596, + 300.3499284912733, + 300.2830804135742 ], - "relative_heat_gain": 490.62617642230623, + "relative_heat_gain": 490.626176422296, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.9999999999999998 + 1.0 ], "solid_layer_effective_conductivities_u": [ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.34456497157218696, - "system_effective_conductivity_u": 0.11930904842958015 + "system_effective_conductivity_shgc": 0.3445649715723696, + "system_effective_conductivity_u": 0.11930904842957304 } diff --git a/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index 6cc3a0e7..6de93715 100644 --- a/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 2.70604932345895, + "U": 2.7060493234587177, "gap_layer_effective_conductivities_shgc": [ - 0.06714643280042353 + 0.06714643280042716 ], "gap_layer_effective_conductivities_u": [ - 0.06714643280042885 + 0.06714643280042175 ], "layer_temperatures_shgc": [ - 259.1682373122841, - 259.4848450831289, - 279.4457897530118, - 279.767463258456 + 259.1682373122836, + 259.48484508312833, + 279.44578975300965, + 279.7674632584538 ], "layer_temperatures_u": [ - 259.1682373122834, - 259.4848450831281, - 279.44578975300817, - 279.7674632584524 + 259.1682373122838, + 259.48484508312856, + 279.4457897530104, + 279.7674632584546 ], - "relative_heat_gain": 21.053063736509593, + "relative_heat_gain": 21.053063736509436, "solid_layer_effective_conductivities_shgc": [ 1.0, - 1.0 + 0.9999999999999998 ], "solid_layer_effective_conductivities_u": [ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.09605154637212035, - "system_effective_conductivity_u": 0.09605154637209429 + "system_effective_conductivity_shgc": 0.0960515463721138, + "system_effective_conductivity_u": 0.09605154637210228 } diff --git a/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index b0710361..2b0e3a07 100644 --- a/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,25 +1,25 @@ { - "SHGC": 0.6484840329994809, - "U": 2.7414729152596116, + "SHGC": 0.64848403299947, + "U": 2.7414729152600494, "gap_layer_effective_conductivities_shgc": [ - 0.08831261314315485 + 0.08831261314316215 ], "gap_layer_effective_conductivities_u": [ - 0.08405579157747463 + 0.08405579157745303 ], "layer_temperatures_shgc": [ - 310.266813030482, - 310.3452563837113, - 306.4951069723247, - 306.3457300585959 + 310.26681303048247, + 310.3452563837118, + 306.4951069723254, + 306.3457300585967 ], "layer_temperatures_u": [ - 303.7293997101249, - 303.6636043601586, - 300.3499284912712, - 300.2830804135722 + 303.7293997101258, + 303.6636043601596, + 300.3499284912733, + 300.2830804135742 ], - "relative_heat_gain": 491.59139079718244, + "relative_heat_gain": 491.5913907971807, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.34063822342959676, - "system_effective_conductivity_u": 0.11930904842958015 + "system_effective_conductivity_shgc": 0.34063822342932937, + "system_effective_conductivity_u": 0.11930904842957304 } diff --git a/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index 6cc3a0e7..6de93715 100644 --- a/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/IGSDB_5051_NFRC_102_Flipped_LowE/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,33 +1,33 @@ { "SHGC": 0.0, - "U": 2.70604932345895, + "U": 2.7060493234587177, "gap_layer_effective_conductivities_shgc": [ - 0.06714643280042353 + 0.06714643280042716 ], "gap_layer_effective_conductivities_u": [ - 0.06714643280042885 + 0.06714643280042175 ], "layer_temperatures_shgc": [ - 259.1682373122841, - 259.4848450831289, - 279.4457897530118, - 279.767463258456 + 259.1682373122836, + 259.48484508312833, + 279.44578975300965, + 279.7674632584538 ], "layer_temperatures_u": [ - 259.1682373122834, - 259.4848450831281, - 279.44578975300817, - 279.7674632584524 + 259.1682373122838, + 259.48484508312856, + 279.4457897530104, + 279.7674632584546 ], - "relative_heat_gain": 21.053063736509593, + "relative_heat_gain": 21.053063736509436, "solid_layer_effective_conductivities_shgc": [ 1.0, - 1.0 + 0.9999999999999998 ], "solid_layer_effective_conductivities_u": [ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.09605154637212035, - "system_effective_conductivity_u": 0.09605154637209429 + "system_effective_conductivity_shgc": 0.0960515463721138, + "system_effective_conductivity_u": 0.09605154637210228 } diff --git a/test/expected_results/NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 1ef33e1d..90d8bb65 100644 --- a/test/expected_results/NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -4,12 +4,12 @@ "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ - 305.6143072243119, - 305.53081015379104 + 305.6143072243117, + 305.53081015379087 ], "layer_temperatures_u": [ - 303.0551847621151, - 302.9252019733648 + 303.0551847621158, + 302.92520197336546 ], "relative_heat_gain": 664.2977551359461, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 40227756..dbc13ed2 100644 --- a/test/expected_results/NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -4,12 +4,12 @@ "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ - 305.6475359607461, - 305.56463575025845 + 305.6475359607466, + 305.56463575025896 ], "layer_temperatures_u": [ - 303.0551847621151, - 302.9252019733648 + 303.0551847621158, + 302.92520197336546 ], "relative_heat_gain": 663.6438668428192, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 8ee01447..791ed2e6 100644 --- a/test/expected_results/NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,17 +1,17 @@ { - "SHGC": 0.8606306116334602, - "U": 5.330658817338077, + "SHGC": 0.8606306116334607, + "U": 5.330658817337905, "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ - 305.5389284448879, - 305.4540768207838 + 305.53892844488826, + 305.45407682078417 ], "layer_temperatures_u": [ 303.0551847621151, 302.9252019733648 ], - "relative_heat_gain": 665.578103621273, + "relative_heat_gain": 665.5781036212732, "solid_layer_effective_conductivities_shgc": [ 1.0 ], @@ -19,5 +19,5 @@ 1.0 ], "system_effective_conductivity_shgc": 2.2853330284049056, - "system_effective_conductivity_u": 0.9999999999995155 + "system_effective_conductivity_u": 0.999999999999564 } diff --git a/test/expected_results/NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 196bcd0a..5548fa93 100644 --- a/test/expected_results/NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,6 +1,6 @@ { - "SHGC": 0.8597190961766992, - "U": 5.330658817338077, + "SHGC": 0.8597190961766986, + "U": 5.330658817337905, "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ @@ -11,13 +11,13 @@ 303.0551847621151, 302.9252019733648 ], - "relative_heat_gain": 664.9170977572848, + "relative_heat_gain": 664.9170977572857, "solid_layer_effective_conductivities_shgc": [ 1.0 ], "solid_layer_effective_conductivities_u": [ 1.0 ], - "system_effective_conductivity_shgc": 2.31223719028882, - "system_effective_conductivity_u": 0.9999999999995155 + "system_effective_conductivity_shgc": 2.3122371902921124, + "system_effective_conductivity_u": 0.999999999999564 } diff --git a/test/expected_results/NFRC_102_102/condensed_spectrum/theta=0_phi=0/color.json b/test/expected_results/NFRC_102_102/condensed_spectrum/theta=0_phi=0/color.json new file mode 100644 index 00000000..3b56efd9 --- /dev/null +++ b/test/expected_results/NFRC_102_102/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_102/condensed_spectrum/theta=0_phi=0/photopic.json b/test/expected_results/NFRC_102_102/condensed_spectrum/theta=0_phi=0/photopic.json new file mode 100644 index 00000000..681f6b4b --- /dev/null +++ b/test/expected_results/NFRC_102_102/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_102/condensed_spectrum/theta=0_phi=0/solar.json b/test/expected_results/NFRC_102_102/condensed_spectrum/theta=0_phi=0/solar.json new file mode 100644 index 00000000..121371cf --- /dev/null +++ b/test/expected_results/NFRC_102_102/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_102/condensed_spectrum/theta=0_phi=0/tdw.json b/test/expected_results/NFRC_102_102/condensed_spectrum/theta=0_phi=0/tdw.json new file mode 100644 index 00000000..ad92aa39 --- /dev/null +++ b/test/expected_results/NFRC_102_102/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_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json new file mode 100644 index 00000000..6e2de0ab --- /dev/null +++ b/test/expected_results/NFRC_102_102/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7616157164141889, + "U": 2.8662613804296946, + "gap_layer_effective_conductivities_shgc": [ + 0.08727215867366304 + ], + "gap_layer_effective_conductivities_u": [ + 0.08391318537624522 + ], + "layer_temperatures_shgc": [ + 308.26670290580165, + 308.342958505744, + 306.3282000869009, + 306.2004300575866 + ], + "layer_temperatures_u": [ + 304.0250472002991, + 303.95515628056773, + 300.48475821442474, + 300.41486729469335 + ], + "relative_heat_gain": 574.6022209946475, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 0.9999999999999998, + 1.0 + ], + "system_effective_conductivity_shgc": 0.6367012457753854, + "system_effective_conductivity_u": 0.11938296899039735 +} diff --git a/test/expected_results/NFRC_102_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json new file mode 100644 index 00000000..a4ac2c56 --- /dev/null +++ b/test/expected_results/NFRC_102_102/condensed_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.7296193841684016, + "gap_layer_effective_conductivities_shgc": [ + 0.06690366867312668 + ], + "gap_layer_effective_conductivities_u": [ + 0.06690366867312456 + ], + "layer_temperatures_shgc": [ + 258.79163972171455, + 259.11611504750766, + 279.3239826847216, + 279.64845801051473 + ], + "layer_temperatures_u": [ + 258.7916397217148, + 259.11611504750795, + 279.3239826847243, + 279.64845801051746 + ], + "relative_heat_gain": 21.23643880901641, + "solid_layer_effective_conductivities_shgc": [ + 0.9999999999999998, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.09593654721780993, + "system_effective_conductivity_u": 0.09593654721767883 +} diff --git a/test/expected_results/NFRC_102_102/condensed_spectrum/theta=0_phi=0/tkr.json b/test/expected_results/NFRC_102_102/condensed_spectrum/theta=0_phi=0/tkr.json new file mode 100644 index 00000000..d214b1ff --- /dev/null +++ b/test/expected_results/NFRC_102_102/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_102/condensed_spectrum/theta=0_phi=0/tuv.json b/test/expected_results/NFRC_102_102/condensed_spectrum/theta=0_phi=0/tuv.json new file mode 100644 index 00000000..3170abdf --- /dev/null +++ b/test/expected_results/NFRC_102_102/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_102/condensed_spectrum/theta=15_phi=270/color.json b/test/expected_results/NFRC_102_102/condensed_spectrum/theta=15_phi=270/color.json new file mode 100644 index 00000000..9ed70daa --- /dev/null +++ b/test/expected_results/NFRC_102_102/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_102/condensed_spectrum/theta=15_phi=270/photopic.json b/test/expected_results/NFRC_102_102/condensed_spectrum/theta=15_phi=270/photopic.json new file mode 100644 index 00000000..e050ac20 --- /dev/null +++ b/test/expected_results/NFRC_102_102/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_102/condensed_spectrum/theta=15_phi=270/solar.json b/test/expected_results/NFRC_102_102/condensed_spectrum/theta=15_phi=270/solar.json new file mode 100644 index 00000000..5c67b0c0 --- /dev/null +++ b/test/expected_results/NFRC_102_102/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_102/condensed_spectrum/theta=15_phi=270/tdw.json b/test/expected_results/NFRC_102_102/condensed_spectrum/theta=15_phi=270/tdw.json new file mode 100644 index 00000000..72d2eb33 --- /dev/null +++ b/test/expected_results/NFRC_102_102/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_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json new file mode 100644 index 00000000..779ae4f8 --- /dev/null +++ b/test/expected_results/NFRC_102_102/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.760301300549361, + "U": 2.8662613804296946, + "gap_layer_effective_conductivities_shgc": [ + 0.08731310206305197 + ], + "gap_layer_effective_conductivities_u": [ + 0.08391318537624522 + ], + "layer_temperatures_shgc": [ + 308.3198755938978, + 308.39792230017355, + 306.39587077479143, + 306.2673473112353 + ], + "layer_temperatures_u": [ + 304.0250472002991, + 303.95515628056773, + 300.48475821442474, + 300.41486729469335 + ], + "relative_heat_gain": 573.649042869227, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 0.9999999999999998, + 1.0 + ], + "system_effective_conductivity_shgc": 0.6462326509040848, + "system_effective_conductivity_u": 0.11938296899039735 +} diff --git a/test/expected_results/NFRC_102_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json new file mode 100644 index 00000000..a4ac2c56 --- /dev/null +++ b/test/expected_results/NFRC_102_102/condensed_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.7296193841684016, + "gap_layer_effective_conductivities_shgc": [ + 0.06690366867312668 + ], + "gap_layer_effective_conductivities_u": [ + 0.06690366867312456 + ], + "layer_temperatures_shgc": [ + 258.79163972171455, + 259.11611504750766, + 279.3239826847216, + 279.64845801051473 + ], + "layer_temperatures_u": [ + 258.7916397217148, + 259.11611504750795, + 279.3239826847243, + 279.64845801051746 + ], + "relative_heat_gain": 21.23643880901641, + "solid_layer_effective_conductivities_shgc": [ + 0.9999999999999998, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 1.0 + ], + "system_effective_conductivity_shgc": 0.09593654721780993, + "system_effective_conductivity_u": 0.09593654721767883 +} diff --git a/test/expected_results/NFRC_102_102/condensed_spectrum/theta=15_phi=270/tkr.json b/test/expected_results/NFRC_102_102/condensed_spectrum/theta=15_phi=270/tkr.json new file mode 100644 index 00000000..b5e4a594 --- /dev/null +++ b/test/expected_results/NFRC_102_102/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_102/condensed_spectrum/theta=15_phi=270/tuv.json b/test/expected_results/NFRC_102_102/condensed_spectrum/theta=15_phi=270/tuv.json new file mode 100644 index 00000000..d1a44c75 --- /dev/null +++ b/test/expected_results/NFRC_102_102/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_102/full_spectrum/theta=0_phi=0/color.json b/test/expected_results/NFRC_102_102/full_spectrum/theta=0_phi=0/color.json new file mode 100644 index 00000000..e4cd1977 --- /dev/null +++ b/test/expected_results/NFRC_102_102/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_102/full_spectrum/theta=0_phi=0/photopic.json b/test/expected_results/NFRC_102_102/full_spectrum/theta=0_phi=0/photopic.json new file mode 100644 index 00000000..693cd805 --- /dev/null +++ b/test/expected_results/NFRC_102_102/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_102/full_spectrum/theta=0_phi=0/solar.json b/test/expected_results/NFRC_102_102/full_spectrum/theta=0_phi=0/solar.json new file mode 100644 index 00000000..12c32bbd --- /dev/null +++ b/test/expected_results/NFRC_102_102/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_102/full_spectrum/theta=0_phi=0/tdw.json b/test/expected_results/NFRC_102_102/full_spectrum/theta=0_phi=0/tdw.json new file mode 100644 index 00000000..e926cc01 --- /dev/null +++ b/test/expected_results/NFRC_102_102/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_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json new file mode 100644 index 00000000..c57c9bc5 --- /dev/null +++ b/test/expected_results/NFRC_102_102/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.7632996878177487, + "U": 2.866261380451791, + "gap_layer_effective_conductivities_shgc": [ + 0.08724116776449509 + ], + "gap_layer_effective_conductivities_u": [ + 0.08391318537627407 + ], + "layer_temperatures_shgc": [ + 308.185986516909, + 308.2604839929061, + 306.31887216868085, + 306.1919859571778 + ], + "layer_temperatures_u": [ + 304.0250472002991, + 303.95515628056773, + 300.48475821442406, + 300.4148672946926 + ], + "relative_heat_gain": 575.8233906021993, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 0.9999999999999998, + 1.0 + ], + "system_effective_conductivity_shgc": 0.6590945746922153, + "system_effective_conductivity_u": 0.11938296898933805 +} diff --git a/test/expected_results/NFRC_102_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_102_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json new file mode 100644 index 00000000..4b576dfe --- /dev/null +++ b/test/expected_results/NFRC_102_102/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.729619384192487, + "gap_layer_effective_conductivities_shgc": [ + 0.06690366867312526 + ], + "gap_layer_effective_conductivities_u": [ + 0.06690366867312787 + ], + "layer_temperatures_shgc": [ + 258.79163972171534, + 259.1161150475086, + 279.32398268472457, + 279.64845801051774 + ], + "layer_temperatures_u": [ + 258.7916397217151, + 259.1161150475083, + 279.3239826847255, + 279.64845801051865 + ], + "relative_heat_gain": 21.23643880901863, + "solid_layer_effective_conductivities_shgc": [ + 0.9999999999999998, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 0.9999999999999998 + ], + "system_effective_conductivity_shgc": 0.0959365472178202, + "system_effective_conductivity_u": 0.09593654721781301 +} diff --git a/test/expected_results/NFRC_102_102/full_spectrum/theta=0_phi=0/tkr.json b/test/expected_results/NFRC_102_102/full_spectrum/theta=0_phi=0/tkr.json new file mode 100644 index 00000000..742ba7f8 --- /dev/null +++ b/test/expected_results/NFRC_102_102/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_102/full_spectrum/theta=0_phi=0/tuv.json b/test/expected_results/NFRC_102_102/full_spectrum/theta=0_phi=0/tuv.json new file mode 100644 index 00000000..9242dd33 --- /dev/null +++ b/test/expected_results/NFRC_102_102/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_102/full_spectrum/theta=15_phi=270/color.json b/test/expected_results/NFRC_102_102/full_spectrum/theta=15_phi=270/color.json new file mode 100644 index 00000000..e20eee2d --- /dev/null +++ b/test/expected_results/NFRC_102_102/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_102/full_spectrum/theta=15_phi=270/photopic.json b/test/expected_results/NFRC_102_102/full_spectrum/theta=15_phi=270/photopic.json new file mode 100644 index 00000000..db5c0c92 --- /dev/null +++ b/test/expected_results/NFRC_102_102/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_102/full_spectrum/theta=15_phi=270/solar.json b/test/expected_results/NFRC_102_102/full_spectrum/theta=15_phi=270/solar.json new file mode 100644 index 00000000..ef8bf2e3 --- /dev/null +++ b/test/expected_results/NFRC_102_102/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_102/full_spectrum/theta=15_phi=270/tdw.json b/test/expected_results/NFRC_102_102/full_spectrum/theta=15_phi=270/tdw.json new file mode 100644 index 00000000..95ee1cc9 --- /dev/null +++ b/test/expected_results/NFRC_102_102/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_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_102_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json new file mode 100644 index 00000000..5b21585c --- /dev/null +++ b/test/expected_results/NFRC_102_102/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.761976970529205, + "U": 2.866261380451791, + "gap_layer_effective_conductivities_shgc": [ + 0.08728212611699666 + ], + "gap_layer_effective_conductivities_u": [ + 0.08391318537627407 + ], + "layer_temperatures_shgc": [ + 308.2394853223046, + 308.3157778122761, + 306.3862738956123, + 306.25863195900774 + ], + "layer_temperatures_u": [ + 304.0250472002991, + 303.95515628056773, + 300.48475821442406, + 300.4148672946926 + ], + "relative_heat_gain": 574.8641925133078, + "solid_layer_effective_conductivities_shgc": [ + 1.0, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 0.9999999999999998, + 1.0 + ], + "system_effective_conductivity_shgc": 0.6689046030702012, + "system_effective_conductivity_u": 0.11938296898933805 +} diff --git a/test/expected_results/NFRC_102_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_102_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json new file mode 100644 index 00000000..4b576dfe --- /dev/null +++ b/test/expected_results/NFRC_102_102/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -0,0 +1,33 @@ +{ + "SHGC": 0.0, + "U": 2.729619384192487, + "gap_layer_effective_conductivities_shgc": [ + 0.06690366867312526 + ], + "gap_layer_effective_conductivities_u": [ + 0.06690366867312787 + ], + "layer_temperatures_shgc": [ + 258.79163972171534, + 259.1161150475086, + 279.32398268472457, + 279.64845801051774 + ], + "layer_temperatures_u": [ + 258.7916397217151, + 259.1161150475083, + 279.3239826847255, + 279.64845801051865 + ], + "relative_heat_gain": 21.23643880901863, + "solid_layer_effective_conductivities_shgc": [ + 0.9999999999999998, + 1.0 + ], + "solid_layer_effective_conductivities_u": [ + 1.0, + 0.9999999999999998 + ], + "system_effective_conductivity_shgc": 0.0959365472178202, + "system_effective_conductivity_u": 0.09593654721781301 +} diff --git a/test/expected_results/NFRC_102_102/full_spectrum/theta=15_phi=270/tkr.json b/test/expected_results/NFRC_102_102/full_spectrum/theta=15_phi=270/tkr.json new file mode 100644 index 00000000..9125943a --- /dev/null +++ b/test/expected_results/NFRC_102_102/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_102/full_spectrum/theta=15_phi=270/tuv.json b/test/expected_results/NFRC_102_102/full_spectrum/theta=15_phi=270/tuv.json new file mode 100644 index 00000000..d999c80c --- /dev/null +++ b/test/expected_results/NFRC_102_102/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_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 d1ea6c81..0f8d8f86 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.5781035324470264, - "U": 3.2198466830641648, + "SHGC": 0.5708264954647805, + "U": 3.160024761341457, "gap_layer_effective_conductivities_shgc": [ - 0.09301356223729021 + 0.09264836910622273 ], "gap_layer_effective_conductivities_u": [ - 0.09474506377590929 + 0.0946138254602008 ], "layer_temperatures_shgc": [ - 316.9310144801476, - 317.5628610130216, - 341.60490522403916, - 340.844131392994 + 317.2241158541591, + 317.87478834540235, + 342.07031471504115, + 341.27448399037405 ], "layer_temperatures_u": [ - 303.88604357063315, - 303.80753082660596, - 300.4043265625707, - 300.2588280680896 + 303.9095646561289, + 303.83251060988755, + 300.4392490844603, + 300.29206626524024 ], - "relative_heat_gain": 444.27514124149764, + "relative_heat_gain": 438.5326202168255, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.1665787492322585 + 0.1659254538524841 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.1719514434598095 + 0.17175082751151624 ], - "system_effective_conductivity_shgc": 0.30486932658569726, - "system_effective_conductivity_u": 0.11551913313392848 + "system_effective_conductivity_shgc": 0.3068340646545777, + "system_effective_conductivity_u": 0.11703359984103655 } 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 d4beb33f..af505328 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.1496317364504773, + "U": 2.9869205497543923, "gap_layer_effective_conductivities_shgc": [ - 0.07493395352096634 + 0.07432598854418229 ], "gap_layer_effective_conductivities_u": [ - 0.07493395352096462 + 0.0743259885441829 ], "layer_temperatures_shgc": [ - 259.35046203598785, - 259.72486507171357, - 279.7677335386185, - 280.44318676624226 + 259.1340248928451, + 259.4890861237688, + 279.39207215129306, + 280.0861486043098 ], "layer_temperatures_u": [ - 259.3504620359875, - 259.7248650717132, - 279.7677335386186, - 280.4431867662424 + 259.13402489284476, + 259.4890861237684, + 279.3920721512917, + 280.08614860430845 ], - "relative_heat_gain": 24.504134909683398, + "relative_heat_gain": 23.23824187719921, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.1683057897463263 + 0.16780883842444422 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.16830578974632954 + 0.16780883842444128 ], - "system_effective_conductivity_shgc": 0.09026608507455851, - "system_effective_conductivity_u": 0.09026608507450437 + "system_effective_conductivity_shgc": 0.09310157911060539, + "system_effective_conductivity_u": 0.09310157911053683 } 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 ec17b91b..31f55f1f 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.5660669817494067, - "U": 3.2198466830641648, + "SHGC": 0.5583946939483619, + "U": 3.160024761341457, "gap_layer_effective_conductivities_shgc": [ - 0.09405567959968446 + 0.09369254692979061 ], "gap_layer_effective_conductivities_u": [ - 0.09474506377590929 + 0.0946138254602008 ], "layer_temperatures_shgc": [ - 317.4696159977019, - 318.13526176546986, - 343.4128801191258, - 342.62120301869584 + 317.7769455140555, + 318.46236053950355, + 343.89749015138807, + 343.06886470923973 ], "layer_temperatures_u": [ - 303.88604357063315, - 303.80753082660596, - 300.4043265625707, - 300.2588280680896 + 303.9095646561289, + 303.83251060988755, + 300.4392490844603, + 300.29206626524024 ], - "relative_heat_gain": 435.5465667185046, + "relative_heat_gain": 429.5174207033454, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.16648782984255084 + 0.16583134898007168 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.1719514434598095 + 0.17175082751151624 ], - "system_effective_conductivity_shgc": 0.30422340571790146, - "system_effective_conductivity_u": 0.11551913313392848 + "system_effective_conductivity_shgc": 0.30624862244218554, + "system_effective_conductivity_u": 0.11703359984103655 } 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 d4beb33f..af505328 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.1496317364504773, + "U": 2.9869205497543923, "gap_layer_effective_conductivities_shgc": [ - 0.07493395352096634 + 0.07432598854418229 ], "gap_layer_effective_conductivities_u": [ - 0.07493395352096462 + 0.0743259885441829 ], "layer_temperatures_shgc": [ - 259.35046203598785, - 259.72486507171357, - 279.7677335386185, - 280.44318676624226 + 259.1340248928451, + 259.4890861237688, + 279.39207215129306, + 280.0861486043098 ], "layer_temperatures_u": [ - 259.3504620359875, - 259.7248650717132, - 279.7677335386186, - 280.4431867662424 + 259.13402489284476, + 259.4890861237684, + 279.3920721512917, + 280.08614860430845 ], - "relative_heat_gain": 24.504134909683398, + "relative_heat_gain": 23.23824187719921, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.1683057897463263 + 0.16780883842444422 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.16830578974632954 + 0.16780883842444128 ], - "system_effective_conductivity_shgc": 0.09026608507455851, - "system_effective_conductivity_u": 0.09026608507450437 + "system_effective_conductivity_shgc": 0.09310157911060539, + "system_effective_conductivity_u": 0.09310157911053683 } 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 80bfc3b4..2bb3e36e 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.5793301308783201, - "U": 3.2198466831342603, + "SHGC": 0.572052385623073, + "U": 3.160024761410286, "gap_layer_effective_conductivities_shgc": [ - 0.09308235825845121 + 0.09271704736870115 ], "gap_layer_effective_conductivities_u": [ - 0.09474506377585316 + 0.09461382546017591 ], "layer_temperatures_shgc": [ - 316.87768602857733, - 317.5094470358076, - 341.67968673373275, - 340.9194807749558 + 317.1708563141094, + 317.8214449700625, + 342.145297464775, + 341.35000133175026 ], "layer_temperatures_u": [ - 303.88604357063247, - 303.80753082660533, - 300.404326562572, - 300.2588280680908 + 303.90956465612953, + 303.83251060988823, + 300.43924908446047, + 300.29206626524046 ], - "relative_heat_gain": 445.16463658694187, + "relative_heat_gain": 439.4216019420871, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.16656097961248115 + 0.16590710385308852 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17195144345979502 + 0.1717508275115103 ], - "system_effective_conductivity_shgc": 0.3038341038744186, - "system_effective_conductivity_u": 0.11551913313511888 + "system_effective_conductivity_shgc": 0.3057963398960894, + "system_effective_conductivity_u": 0.11703359984207867 } 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 2f584311..fd9f39bb 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.149631736463348, + "U": 2.9869205497689277, "gap_layer_effective_conductivities_shgc": [ - 0.07493395352096634 + 0.07432598854418211 ], "gap_layer_effective_conductivities_u": [ - 0.07493395352096503 + 0.07432598854418211 ], "layer_temperatures_shgc": [ - 259.35046203598785, - 259.72486507171357, - 279.7677335386185, - 280.44318676624226 + 259.1340248928451, + 259.48908612376874, + 279.3920721512912, + 280.08614860430794 ], "layer_temperatures_u": [ - 259.35046203598785, - 259.72486507171357, - 279.7677335386185, - 280.44318676624226 + 259.134024892845, + 259.48908612376863, + 279.392072151292, + 280.0861486043087 ], - "relative_heat_gain": 24.504134909685664, + "relative_heat_gain": 23.23824187720119, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.1683057897463263 + 0.16780883842444227 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.16830578974632845 + 0.16780883842444214 ], - "system_effective_conductivity_shgc": 0.0902660850745658, - "system_effective_conductivity_u": 0.09026608507456019 + "system_effective_conductivity_shgc": 0.09310157911060177, + "system_effective_conductivity_u": 0.09310157911059179 } 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 f90b00d7..73c4666d 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.5672507196859795, - "U": 3.2198466831342603, + "SHGC": 0.5595766546020812, + "U": 3.160024761410286, "gap_layer_effective_conductivities_shgc": [ - 0.09412384698536057 + 0.09376060142593072 ], "gap_layer_effective_conductivities_u": [ - 0.09474506377585316 + 0.09461382546017591 ], "layer_temperatures_shgc": [ - 317.41819604093905, - 318.08386394350606, - 343.491960520382, - 342.7007609527645 + 317.7256346323401, + 318.4110760342217, + 343.9768181649218, + 343.14863152125804 ], "layer_temperatures_u": [ - 303.88604357063247, - 303.80753082660533, - 300.404326562572, - 300.2588280680908 + 303.90956465612953, + 303.83251060988823, + 300.43924908446047, + 300.29206626524046 ], - "relative_heat_gain": 436.4049808154105, + "relative_heat_gain": 430.3745459638781, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.16647052747060598 + 0.165813487507383 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17195144345979502 + 0.1717508275115103 ], - "system_effective_conductivity_shgc": 0.3032566817605793, - "system_effective_conductivity_u": 0.11551913313511888 + "system_effective_conductivity_shgc": 0.3052793138805765, + "system_effective_conductivity_u": 0.11703359984207867 } 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 2f584311..fd9f39bb 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.149631736463348, + "U": 2.9869205497689277, "gap_layer_effective_conductivities_shgc": [ - 0.07493395352096634 + 0.07432598854418211 ], "gap_layer_effective_conductivities_u": [ - 0.07493395352096503 + 0.07432598854418211 ], "layer_temperatures_shgc": [ - 259.35046203598785, - 259.72486507171357, - 279.7677335386185, - 280.44318676624226 + 259.1340248928451, + 259.48908612376874, + 279.3920721512912, + 280.08614860430794 ], "layer_temperatures_u": [ - 259.35046203598785, - 259.72486507171357, - 279.7677335386185, - 280.44318676624226 + 259.134024892845, + 259.48908612376863, + 279.392072151292, + 280.0861486043087 ], - "relative_heat_gain": 24.504134909685664, + "relative_heat_gain": 23.23824187720119, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.1683057897463263 + 0.16780883842444227 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.16830578974632845 + 0.16780883842444214 ], - "system_effective_conductivity_shgc": 0.0902660850745658, - "system_effective_conductivity_u": 0.09026608507456019 + "system_effective_conductivity_shgc": 0.09310157911060177, + "system_effective_conductivity_u": 0.09310157911059179 } diff --git a/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/applied_loads/deflection_off.json b/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/applied_loads/deflection_off.json index a2bcc04f..9bc9d458 100644 --- a/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/applied_loads/deflection_off.json +++ b/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/applied_loads/deflection_off.json @@ -6,10 +6,10 @@ 0.0127 ], "layer_temperatures_system": [ - 258.79163972170534, - 259.1161150475096, - 279.323982684717, - 279.6484580105212 + 258.79163972171165, + 259.11611504750863, + 279.3239826847223, + 279.6484580105193 ], "max_deflection_system": [ 0.0, diff --git a/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/deflection_off.json b/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/deflection_off.json index a2bcc04f..9bc9d458 100644 --- a/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/deflection_off.json +++ b/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/deflection_off.json @@ -6,10 +6,10 @@ 0.0127 ], "layer_temperatures_system": [ - 258.79163972170534, - 259.1161150475096, - 279.323982684717, - 279.6484580105212 + 258.79163972171165, + 259.11611504750863, + 279.3239826847223, + 279.6484580105193 ], "max_deflection_system": [ 0.0, diff --git a/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/density/deflection_off.json b/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/density/deflection_off.json index a2bcc04f..9bc9d458 100644 --- a/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/density/deflection_off.json +++ b/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/density/deflection_off.json @@ -6,10 +6,10 @@ 0.0127 ], "layer_temperatures_system": [ - 258.79163972170534, - 259.1161150475096, - 279.323982684717, - 279.6484580105212 + 258.79163972171165, + 259.11611504750863, + 279.3239826847223, + 279.6484580105193 ], "max_deflection_system": [ 0.0, diff --git a/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/environment/deflection_off.json b/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/environment/deflection_off.json index e08ab36a..0c705d87 100644 --- a/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/environment/deflection_off.json +++ b/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/environment/deflection_off.json @@ -6,10 +6,10 @@ 0.0127 ], "layer_temperatures_system": [ - 308.2667029057978, - 308.34295850573994, - 306.3282000866679, - 306.20043005735357 + 308.26670290580125, + 308.3429585057437, + 306.32820008686537, + 306.200430057551 ], "max_deflection_system": [ 0.0, diff --git a/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/tilt/deflection_off.json b/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/tilt/deflection_off.json index 8f27a7f1..b6202564 100644 --- a/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/tilt/deflection_off.json +++ b/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/tilt/deflection_off.json @@ -6,10 +6,10 @@ 0.0127 ], "layer_temperatures_system": [ - 258.8403158804271, - 259.16913870337385, - 279.114332263572, - 279.4431550865187 + 258.8403158804325, + 259.16913870337214, + 279.1143322635753, + 279.4431550865148 ], "max_deflection_system": [ 0.0, diff --git a/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/youngs_modulus/deflection_off.json b/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/youngs_modulus/deflection_off.json index a2bcc04f..9bc9d458 100644 --- a/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/youngs_modulus/deflection_off.json +++ b/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/youngs_modulus/deflection_off.json @@ -6,10 +6,10 @@ 0.0127 ], "layer_temperatures_system": [ - 258.79163972170534, - 259.1161150475096, - 279.323982684717, - 279.6484580105212 + 258.79163972171165, + 259.11611504750863, + 279.3239826847223, + 279.6484580105193 ], "max_deflection_system": [ 0.0, diff --git a/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/applied_loads/deflection_off.json b/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/applied_loads/deflection_off.json index a2bcc04f..9bc9d458 100644 --- a/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/applied_loads/deflection_off.json +++ b/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/applied_loads/deflection_off.json @@ -6,10 +6,10 @@ 0.0127 ], "layer_temperatures_system": [ - 258.79163972170534, - 259.1161150475096, - 279.323982684717, - 279.6484580105212 + 258.79163972171165, + 259.11611504750863, + 279.3239826847223, + 279.6484580105193 ], "max_deflection_system": [ 0.0, diff --git a/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/deflection_off.json b/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/deflection_off.json index a2bcc04f..9bc9d458 100644 --- a/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/deflection_off.json +++ b/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/deflection_off.json @@ -6,10 +6,10 @@ 0.0127 ], "layer_temperatures_system": [ - 258.79163972170534, - 259.1161150475096, - 279.323982684717, - 279.6484580105212 + 258.79163972171165, + 259.11611504750863, + 279.3239826847223, + 279.6484580105193 ], "max_deflection_system": [ 0.0, diff --git a/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/density/deflection_off.json b/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/density/deflection_off.json index a2bcc04f..9bc9d458 100644 --- a/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/density/deflection_off.json +++ b/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/density/deflection_off.json @@ -6,10 +6,10 @@ 0.0127 ], "layer_temperatures_system": [ - 258.79163972170534, - 259.1161150475096, - 279.323982684717, - 279.6484580105212 + 258.79163972171165, + 259.11611504750863, + 279.3239826847223, + 279.6484580105193 ], "max_deflection_system": [ 0.0, diff --git a/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/environment/deflection_off.json b/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/environment/deflection_off.json index e171b373..29957788 100644 --- a/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/environment/deflection_off.json +++ b/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/environment/deflection_off.json @@ -6,10 +6,10 @@ 0.0127 ], "layer_temperatures_system": [ - 308.3198755938928, - 308.3979223001682, - 306.3958707745561, - 306.267347311 + 308.3198755938963, + 308.397922300172, + 306.39587077475477, + 306.2673473111987 ], "max_deflection_system": [ 0.0, diff --git a/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/tilt/deflection_off.json b/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/tilt/deflection_off.json index 8f27a7f1..b6202564 100644 --- a/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/tilt/deflection_off.json +++ b/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/tilt/deflection_off.json @@ -6,10 +6,10 @@ 0.0127 ], "layer_temperatures_system": [ - 258.8403158804271, - 259.16913870337385, - 279.114332263572, - 279.4431550865187 + 258.8403158804325, + 259.16913870337214, + 279.1143322635753, + 279.4431550865148 ], "max_deflection_system": [ 0.0, diff --git a/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/youngs_modulus/deflection_off.json b/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/youngs_modulus/deflection_off.json index a2bcc04f..9bc9d458 100644 --- a/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/youngs_modulus/deflection_off.json +++ b/test/expected_results/NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/youngs_modulus/deflection_off.json @@ -6,10 +6,10 @@ 0.0127 ], "layer_temperatures_system": [ - 258.79163972170534, - 259.1161150475096, - 279.323982684717, - 279.6484580105212 + 258.79163972171165, + 259.11611504750863, + 279.3239826847223, + 279.6484580105193 ], "max_deflection_system": [ 0.0, diff --git a/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/applied_loads/deflection_off.json b/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/applied_loads/deflection_off.json index 9bc9d458..c289b322 100644 --- a/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/applied_loads/deflection_off.json +++ b/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/applied_loads/deflection_off.json @@ -6,10 +6,10 @@ 0.0127 ], "layer_temperatures_system": [ - 258.79163972171165, - 259.11611504750863, - 279.3239826847223, - 279.6484580105193 + 258.7916397217146, + 259.11611504750823, + 279.3239826847222, + 279.6484580105158 ], "max_deflection_system": [ 0.0, diff --git a/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/deflection_off.json b/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/deflection_off.json index 9bc9d458..c289b322 100644 --- a/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/deflection_off.json +++ b/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/deflection_off.json @@ -6,10 +6,10 @@ 0.0127 ], "layer_temperatures_system": [ - 258.79163972171165, - 259.11611504750863, - 279.3239826847223, - 279.6484580105193 + 258.7916397217146, + 259.11611504750823, + 279.3239826847222, + 279.6484580105158 ], "max_deflection_system": [ 0.0, diff --git a/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/density/deflection_off.json b/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/density/deflection_off.json index 9bc9d458..c289b322 100644 --- a/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/density/deflection_off.json +++ b/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/density/deflection_off.json @@ -6,10 +6,10 @@ 0.0127 ], "layer_temperatures_system": [ - 258.79163972171165, - 259.11611504750863, - 279.3239826847223, - 279.6484580105193 + 258.7916397217146, + 259.11611504750823, + 279.3239826847222, + 279.6484580105158 ], "max_deflection_system": [ 0.0, diff --git a/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/environment/deflection_off.json b/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/environment/deflection_off.json index 385af1ee..5179b85d 100644 --- a/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/environment/deflection_off.json +++ b/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/environment/deflection_off.json @@ -6,10 +6,10 @@ 0.0127 ], "layer_temperatures_system": [ - 308.1859865169115, - 308.26048399290886, - 306.3188721688014, - 306.19198595729796 + 308.1859865169097, + 308.2604839929068, + 306.31887216869956, + 306.19198595719644 ], "max_deflection_system": [ 0.0, diff --git a/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/tilt/deflection_off.json b/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/tilt/deflection_off.json index b6202564..c683f773 100644 --- a/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/tilt/deflection_off.json +++ b/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/tilt/deflection_off.json @@ -6,10 +6,10 @@ 0.0127 ], "layer_temperatures_system": [ - 258.8403158804325, - 259.16913870337214, - 279.1143322635753, - 279.4431550865148 + 258.84031588043524, + 259.16913870337146, + 279.11433226357667, + 279.4431550865128 ], "max_deflection_system": [ 0.0, diff --git a/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/youngs_modulus/deflection_off.json b/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/youngs_modulus/deflection_off.json index 9bc9d458..c289b322 100644 --- a/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/youngs_modulus/deflection_off.json +++ b/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/youngs_modulus/deflection_off.json @@ -6,10 +6,10 @@ 0.0127 ], "layer_temperatures_system": [ - 258.79163972171165, - 259.11611504750863, - 279.3239826847223, - 279.6484580105193 + 258.7916397217146, + 259.11611504750823, + 279.3239826847222, + 279.6484580105158 ], "max_deflection_system": [ 0.0, diff --git a/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/applied_loads/deflection_off.json b/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/applied_loads/deflection_off.json index 9bc9d458..c289b322 100644 --- a/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/applied_loads/deflection_off.json +++ b/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/applied_loads/deflection_off.json @@ -6,10 +6,10 @@ 0.0127 ], "layer_temperatures_system": [ - 258.79163972171165, - 259.11611504750863, - 279.3239826847223, - 279.6484580105193 + 258.7916397217146, + 259.11611504750823, + 279.3239826847222, + 279.6484580105158 ], "max_deflection_system": [ 0.0, diff --git a/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/deflection_off.json b/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/deflection_off.json index 9bc9d458..c289b322 100644 --- a/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/deflection_off.json +++ b/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/deflection_off.json @@ -6,10 +6,10 @@ 0.0127 ], "layer_temperatures_system": [ - 258.79163972171165, - 259.11611504750863, - 279.3239826847223, - 279.6484580105193 + 258.7916397217146, + 259.11611504750823, + 279.3239826847222, + 279.6484580105158 ], "max_deflection_system": [ 0.0, diff --git a/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/density/deflection_off.json b/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/density/deflection_off.json index 9bc9d458..c289b322 100644 --- a/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/density/deflection_off.json +++ b/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/density/deflection_off.json @@ -6,10 +6,10 @@ 0.0127 ], "layer_temperatures_system": [ - 258.79163972171165, - 259.11611504750863, - 279.3239826847223, - 279.6484580105193 + 258.7916397217146, + 259.11611504750823, + 279.3239826847222, + 279.6484580105158 ], "max_deflection_system": [ 0.0, diff --git a/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/environment/deflection_off.json b/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/environment/deflection_off.json index 2db838f2..cc6233e0 100644 --- a/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/environment/deflection_off.json +++ b/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/environment/deflection_off.json @@ -6,10 +6,10 @@ 0.0127 ], "layer_temperatures_system": [ - 308.2394853223052, - 308.3157778122769, - 306.3862738957299, - 306.258631959125 + 308.2394853223031, + 308.3157778122745, + 306.3862738956298, + 306.25863195902525 ], "max_deflection_system": [ 0.0, diff --git a/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/tilt/deflection_off.json b/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/tilt/deflection_off.json index b6202564..c683f773 100644 --- a/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/tilt/deflection_off.json +++ b/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/tilt/deflection_off.json @@ -6,10 +6,10 @@ 0.0127 ], "layer_temperatures_system": [ - 258.8403158804325, - 259.16913870337214, - 279.1143322635753, - 279.4431550865148 + 258.84031588043524, + 259.16913870337146, + 279.11433226357667, + 279.4431550865128 ], "max_deflection_system": [ 0.0, diff --git a/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/youngs_modulus/deflection_off.json b/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/youngs_modulus/deflection_off.json index 9bc9d458..c289b322 100644 --- a/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/youngs_modulus/deflection_off.json +++ b/test/expected_results/NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/youngs_modulus/deflection_off.json @@ -6,10 +6,10 @@ 0.0127 ], "layer_temperatures_system": [ - 258.79163972171165, - 259.11611504750863, - 279.3239826847223, - 279.6484580105193 + 258.7916397217146, + 259.11611504750823, + 279.3239826847222, + 279.6484580105158 ], "max_deflection_system": [ 0.0, diff --git a/test/expected_results/NFRC_102_NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/deflection_measured.json b/test/expected_results/NFRC_102_NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/deflection_measured.json index bda10786..4185c834 100644 --- a/test/expected_results/NFRC_102_NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/deflection_measured.json +++ b/test/expected_results/NFRC_102_NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/deflection_measured.json @@ -8,12 +8,12 @@ 0.019972887794466175 ], "layer_temperatures_system": [ - 257.5992614414376, - 257.81732590932353, - 270.6179567938216, - 270.8360212617075, - 283.7347602115704, - 283.9528246794564 + 257.59926144145044, + 257.8173259093247, + 270.61795679386375, + 270.83602126173804, + 283.73476021151083, + 283.95282467938506 ], "max_deflection_system": [ 0.0009999999999999983, diff --git a/test/expected_results/NFRC_102_NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/deflection_off.json b/test/expected_results/NFRC_102_NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/deflection_off.json index 41247911..551fce73 100644 --- a/test/expected_results/NFRC_102_NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/deflection_off.json +++ b/test/expected_results/NFRC_102_NFRC_102_NFRC_102/condensed_spectrum/theta=0_phi=0/deflection/deflection_off.json @@ -8,12 +8,12 @@ 0.025 ], "layer_temperatures_system": [ - 257.759495963115, - 257.9918505735342, - 269.0489567144319, - 269.281311324851, - 283.35083014258953, - 283.58318475300865 + 257.7594959631157, + 257.9918505735306, + 269.04895671440477, + 269.28131132481957, + 283.35083014286846, + 283.5831847532833 ], "max_deflection_system": [ 0.0, diff --git a/test/expected_results/NFRC_102_NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/deflection_measured.json b/test/expected_results/NFRC_102_NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/deflection_measured.json index 46d36d75..f4e850c0 100644 --- a/test/expected_results/NFRC_102_NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/deflection_measured.json +++ b/test/expected_results/NFRC_102_NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/deflection_measured.json @@ -8,12 +8,12 @@ 0.019972887794466175 ], "layer_temperatures_system": [ - 257.58371006238036, - 257.8003877747915, - 270.5029501645068, - 270.7196278769179, - 284.10313139095695, - 284.3198091033681 + 257.58371006237803, + 257.80038777478705, + 270.5029501644171, + 270.7196278768261, + 284.103131391091, + 284.31980910350006 ], "max_deflection_system": [ 0.0009999999999999983, diff --git a/test/expected_results/NFRC_102_NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/deflection_off.json b/test/expected_results/NFRC_102_NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/deflection_off.json index 41247911..551fce73 100644 --- a/test/expected_results/NFRC_102_NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/deflection_off.json +++ b/test/expected_results/NFRC_102_NFRC_102_NFRC_102/condensed_spectrum/theta=15_phi=270/deflection/deflection_off.json @@ -8,12 +8,12 @@ 0.025 ], "layer_temperatures_system": [ - 257.759495963115, - 257.9918505735342, - 269.0489567144319, - 269.281311324851, - 283.35083014258953, - 283.58318475300865 + 257.7594959631157, + 257.9918505735306, + 269.04895671440477, + 269.28131132481957, + 283.35083014286846, + 283.5831847532833 ], "max_deflection_system": [ 0.0, diff --git a/test/expected_results/NFRC_102_NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/deflection_measured.json b/test/expected_results/NFRC_102_NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/deflection_measured.json index 4185c834..5067e45a 100644 --- a/test/expected_results/NFRC_102_NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/deflection_measured.json +++ b/test/expected_results/NFRC_102_NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/deflection_measured.json @@ -8,12 +8,12 @@ 0.019972887794466175 ], "layer_temperatures_system": [ - 257.59926144145044, - 257.8173259093247, - 270.61795679386375, - 270.83602126173804, - 283.73476021151083, - 283.95282467938506 + 257.5992614414551, + 257.81732590932387, + 270.6179567938605, + 270.83602126172923, + 283.7347602115265, + 283.95282467939523 ], "max_deflection_system": [ 0.0009999999999999983, diff --git a/test/expected_results/NFRC_102_NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/deflection_off.json b/test/expected_results/NFRC_102_NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/deflection_off.json index 551fce73..896e1c81 100644 --- a/test/expected_results/NFRC_102_NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/deflection_off.json +++ b/test/expected_results/NFRC_102_NFRC_102_NFRC_102/full_spectrum/theta=0_phi=0/deflection/deflection_off.json @@ -8,12 +8,12 @@ 0.025 ], "layer_temperatures_system": [ - 257.7594959631157, - 257.9918505735306, - 269.04895671440477, - 269.28131132481957, - 283.35083014286846, - 283.5831847532833 + 257.7594959631184, + 257.99185057353145, + 269.04895671441363, + 269.2813113248267, + 283.35083014280394, + 283.583184753217 ], "max_deflection_system": [ 0.0, diff --git a/test/expected_results/NFRC_102_NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/deflection_measured.json b/test/expected_results/NFRC_102_NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/deflection_measured.json index f4e850c0..1c935a13 100644 --- a/test/expected_results/NFRC_102_NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/deflection_measured.json +++ b/test/expected_results/NFRC_102_NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/deflection_measured.json @@ -8,12 +8,12 @@ 0.019972887794466175 ], "layer_temperatures_system": [ - 257.58371006237803, - 257.80038777478705, - 270.5029501644171, - 270.7196278768261, - 284.103131391091, - 284.31980910350006 + 257.5837100623794, + 257.8003877747876, + 270.50295016444056, + 270.7196278768488, + 284.10313139106165, + 284.31980910347 ], "max_deflection_system": [ 0.0009999999999999983, diff --git a/test/expected_results/NFRC_102_NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/deflection_off.json b/test/expected_results/NFRC_102_NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/deflection_off.json index 551fce73..896e1c81 100644 --- a/test/expected_results/NFRC_102_NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/deflection_off.json +++ b/test/expected_results/NFRC_102_NFRC_102_NFRC_102/full_spectrum/theta=15_phi=270/deflection/deflection_off.json @@ -8,12 +8,12 @@ 0.025 ], "layer_temperatures_system": [ - 257.7594959631157, - 257.9918505735306, - 269.04895671440477, - 269.28131132481957, - 283.35083014286846, - 283.5831847532833 + 257.7594959631184, + 257.99185057353145, + 269.04895671441363, + 269.2813113248267, + 283.35083014280394, + 283.583184753217 ], "max_deflection_system": [ 0.0, 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 1412375b..8f7eb187 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 @@ -8,16 +8,16 @@ 0.10756024817349791 ], "layer_temperatures_shgc": [ - 305.32187555248464, - 305.21411649649957, - 302.09736933417423, - 302.0737571416298 + 305.3218755524841, + 305.21411649649895, + 302.0973693341739, + 302.0737571416294 ], "layer_temperatures_u": [ - 302.0869177758101, - 301.89709208766976, - 297.9318953409419, - 297.9170022004053 + 302.0869177757895, + 301.8970920876482, + 297.9318953409047, + 297.9170022003684 ], "relative_heat_gain": 542.1170721086849, "solid_layer_effective_conductivities_shgc": [ 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 9bfaaa94..cebbef50 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 @@ -8,16 +8,16 @@ 0.09538467202435161 ], "layer_temperatures_shgc": [ - 263.81829125054895, - 264.59319930343815, - 285.52149788295156, - 285.704784530739 + 263.81829125054946, + 264.5931993034387, + 285.521497882952, + 285.70478453073946 ], "layer_temperatures_u": [ - 263.8182912505491, - 264.5931993034384, - 285.5214978829513, - 285.7047845307387 + 263.81829125054963, + 264.59319930343895, + 285.5214978829526, + 285.7047845307401 ], "relative_heat_gain": 11.995844894333237, "solid_layer_effective_conductivities_shgc": [ 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 0bebf951..20844dcd 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 @@ -8,16 +8,16 @@ 0.10756024817349791 ], "layer_temperatures_shgc": [ - 305.36289488854857, - 305.2561446612006, + 305.3628948885488, + 305.2561446612008, 302.1457897289557, - 302.1220094027888 + 302.12200940278876 ], "layer_temperatures_u": [ - 302.0869177758101, - 301.89709208766976, - 297.9318953409419, - 297.9170022004053 + 302.0869177757895, + 301.8970920876482, + 297.9318953409047, + 297.9170022003684 ], "relative_heat_gain": 540.9860482215795, "solid_layer_effective_conductivities_shgc": [ 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 9bfaaa94..cebbef50 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 @@ -8,16 +8,16 @@ 0.09538467202435161 ], "layer_temperatures_shgc": [ - 263.81829125054895, - 264.59319930343815, - 285.52149788295156, - 285.704784530739 + 263.81829125054946, + 264.5931993034387, + 285.521497882952, + 285.70478453073946 ], "layer_temperatures_u": [ - 263.8182912505491, - 264.5931993034384, - 285.5214978829513, - 285.7047845307387 + 263.81829125054963, + 264.59319930343895, + 285.5214978829526, + 285.7047845307401 ], "relative_heat_gain": 11.995844894333237, "solid_layer_effective_conductivities_shgc": [ 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 9e46ce36..46d4f1bf 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.7427994925799821, - "U": 0.6107751009251471, + "SHGC": 0.7427994925798856, + "U": 0.6107751009264571, "gap_layer_effective_conductivities_shgc": [ - 0.10977247436448809 + 0.10977247436449457 ], "gap_layer_effective_conductivities_u": [ - 0.10756024817296161 + 0.10756024817300266 ], "layer_temperatures_shgc": [ - 305.25362801039165, - 305.14492578714965, - 302.09727824160495, - 302.07431524880707 + 305.2536280103925, + 305.14492578715056, + 302.09727824160535, + 302.07431524880747 ], "layer_temperatures_u": [ - 302.08691777579526, - 301.8970920876542, - 297.9318953409222, - 297.9170022003859 + 302.08691777579725, + 301.89709208765623, + 297.93189534092414, + 297.91700220038786 ], - "relative_heat_gain": 543.4095312845394, + "relative_heat_gain": 543.4095312845327, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 ], "solid_layer_effective_conductivities_u": [ - 1.0, - 1.0 + 0.9999999999999999, + 0.9999999999999999 ], - "system_effective_conductivity_shgc": 0.21179895357551495, - "system_effective_conductivity_u": 0.02202467404100833 + "system_effective_conductivity_shgc": 0.21179895357537348, + "system_effective_conductivity_u": 0.022024674040870638 } 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 4d088cee..3e6a83fc 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,33 +1,33 @@ { "SHGC": 0.0, - "U": 1.5418823771617582, + "U": 1.5418823771618027, "gap_layer_effective_conductivities_shgc": [ - 0.09538467202434517 + 0.09538467202434678 ], "gap_layer_effective_conductivities_u": [ - 0.09538467202434718 + 0.09538467202434897 ], "layer_temperatures_shgc": [ - 263.8182912505493, - 264.5931993034386, - 285.5214978829524, - 285.70478453073986 - ], - "layer_temperatures_u": [ - 263.81829125054895, - 264.59319930343815, + 263.8182912505495, + 264.5931993034388, 285.52149788295156, 285.704784530739 ], - "relative_heat_gain": 11.9958448943187, + "layer_temperatures_u": [ + 263.81829125054935, + 264.59319930343867, + 285.5214978829508, + 285.7047845307383 + ], + "relative_heat_gain": 11.995844894319754, "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.05164224448903499, - "system_effective_conductivity_u": 0.05164224448903258 + "system_effective_conductivity_shgc": 0.05164224448903098, + "system_effective_conductivity_u": 0.05164224448903383 } 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 ed0fc0a1..ee9ad88b 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.7412321071353575, - "U": 0.6107751009251471, + "SHGC": 0.741232107135272, + "U": 0.6107751009264571, "gap_layer_effective_conductivities_shgc": [ - 0.10979988617607404 + 0.10979988617606011 ], "gap_layer_effective_conductivities_u": [ - 0.10756024817296161 + 0.10756024817300266 ], "layer_temperatures_shgc": [ - 305.29493737615985, - 305.1872457414421, - 302.14545524115886, - 302.12232044438474 + 305.29493737615906, + 305.1872457414412, + 302.1454552411586, + 302.1223204443845 ], "layer_temperatures_u": [ - 302.08691777579526, - 301.8970920876542, - 297.9318953409222, - 297.9170022003859 + 302.08691777579725, + 301.89709208765623, + 297.93189534092414, + 297.91700220038786 ], - "relative_heat_gain": 542.2729065983136, + "relative_heat_gain": 542.2729065983123, "solid_layer_effective_conductivities_shgc": [ 0.9999999999999999, 1.0 ], "solid_layer_effective_conductivities_u": [ - 1.0, - 1.0 + 0.9999999999999999, + 0.9999999999999999 ], - "system_effective_conductivity_shgc": 0.21450470246802647, - "system_effective_conductivity_u": 0.02202467404100833 + "system_effective_conductivity_shgc": 0.21450470246803222, + "system_effective_conductivity_u": 0.022024674040870638 } 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 4d088cee..3e6a83fc 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,33 +1,33 @@ { "SHGC": 0.0, - "U": 1.5418823771617582, + "U": 1.5418823771618027, "gap_layer_effective_conductivities_shgc": [ - 0.09538467202434517 + 0.09538467202434678 ], "gap_layer_effective_conductivities_u": [ - 0.09538467202434718 + 0.09538467202434897 ], "layer_temperatures_shgc": [ - 263.8182912505493, - 264.5931993034386, - 285.5214978829524, - 285.70478453073986 - ], - "layer_temperatures_u": [ - 263.81829125054895, - 264.59319930343815, + 263.8182912505495, + 264.5931993034388, 285.52149788295156, 285.704784530739 ], - "relative_heat_gain": 11.9958448943187, + "layer_temperatures_u": [ + 263.81829125054935, + 264.59319930343867, + 285.5214978829508, + 285.7047845307383 + ], + "relative_heat_gain": 11.995844894319754, "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.05164224448903499, - "system_effective_conductivity_u": 0.05164224448903258 + "system_effective_conductivity_shgc": 0.05164224448903098, + "system_effective_conductivity_u": 0.05164224448903383 } 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 f38d813d..242311be 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 @@ -8,16 +8,16 @@ 0.0005136093721398108 ], "layer_temperatures_shgc": [ - 308.34322731729713, - 308.42428374805326, - 306.1398019896183, - 306.0168327911176 + 308.3432273172974, + 308.42428374805354, + 306.1398019896182, + 306.01683279111757 ], "layer_temperatures_u": [ - 304.15275695078174, - 304.090790084496, - 300.13246355052905, - 300.0704966842434 + 304.15275695078356, + 304.09079008449794, + 300.13246355044413, + 300.07049668415857 ], "relative_heat_gain": 573.022962040463, "solid_layer_effective_conductivities_shgc": [ 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 6ae17c82..8db9302b 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 @@ -8,16 +8,16 @@ 0.00038573774474076 ], "layer_temperatures_shgc": [ - 258.20395557687743, - 258.4759638466038, - 281.6112563290793, - 281.8832645988056 + 258.2039555768772, + 258.4759638466035, + 281.6112563290781, + 281.88326459880443 ], "layer_temperatures_u": [ - 258.2039555768774, - 258.47596384660375, - 281.61125632908045, - 281.8832645988068 + 258.20395557687783, + 258.4759638466042, + 281.6112563290807, + 281.88326459880705 ], "relative_heat_gain": 17.80254619198635, "solid_layer_effective_conductivities_shgc": [ 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 9a78d9f7..e7f2546f 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 @@ -8,16 +8,16 @@ 0.0005136093721398108 ], "layer_temperatures_shgc": [ - 308.3959346745277, - 308.4787536854647, - 306.2087915876969, - 306.085040428802 + 308.3959346745279, + 308.47875368546494, + 306.2087915876986, + 306.0850404288038 ], "layer_temperatures_u": [ - 304.15275695078174, - 304.090790084496, - 300.13246355052905, - 300.0704966842434 + 304.15275695078356, + 304.09079008449794, + 300.13246355044413, + 300.07049668415857 ], "relative_heat_gain": 572.0784516921434, "solid_layer_effective_conductivities_shgc": [ 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 6ae17c82..8db9302b 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 @@ -8,16 +8,16 @@ 0.00038573774474076 ], "layer_temperatures_shgc": [ - 258.20395557687743, - 258.4759638466038, - 281.6112563290793, - 281.8832645988056 + 258.2039555768772, + 258.4759638466035, + 281.6112563290781, + 281.88326459880443 ], "layer_temperatures_u": [ - 258.2039555768774, - 258.47596384660375, - 281.61125632908045, - 281.8832645988068 + 258.20395557687783, + 258.4759638466042, + 281.6112563290807, + 281.88326459880705 ], "relative_heat_gain": 17.80254619198635, "solid_layer_effective_conductivities_shgc": [ 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 e3da71ed..87567724 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.7646816559120603, - "U": 2.54129200737631, + "SHGC": 0.7646816559120856, + "U": 2.5412920073797256, "gap_layer_effective_conductivities_shgc": [ - 0.0005368979482842536 + 0.0005368979482839722 ], "gap_layer_effective_conductivities_u": [ - 0.0005136093721511187 + 0.0005136093721511438 ], "layer_temperatures_shgc": [ - 308.2597380666833, - 308.33886141308017, - 306.1373253690879, - 306.0150650279845 + 308.25973806668316, + 308.33886141307994, + 306.13732536908805, + 306.01506502798475 ], "layer_temperatures_u": [ - 304.15275695078316, - 304.09079008449754, - 300.13246355047636, - 300.07049668419074 + 304.1527569507833, + 304.0907900844976, + 300.1324635504797, + 300.07049668419415 ], - "relative_heat_gain": 574.2972940179847, + "relative_heat_gain": 574.2972940180016, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.9999999999999999 + 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.9999999999999999, + 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.1888145646090988, - "system_effective_conductivity_u": 0.030857112959593796 + "system_effective_conductivity_shgc": 0.1888145646093912, + "system_effective_conductivity_u": 0.030857112959685008 } 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 2520b4d6..9a0b4131 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.288245011822537, + "U": 2.2882450118226116, "gap_layer_effective_conductivities_shgc": [ - 0.00038573774474079733 + 0.00038573774474079023 ], "gap_layer_effective_conductivities_u": [ - 0.00038573774474079246 + 0.0003857377447407878 ], "layer_temperatures_shgc": [ - 258.20395557687783, - 258.4759638466042, - 281.6112563290789, - 281.8832645988053 + 258.2039555768773, + 258.4759638466037, + 281.6112563290795, + 281.8832645988058 ], "layer_temperatures_u": [ - 258.20395557687743, - 258.4759638466038, - 281.6112563290793, - 281.8832645988056 + 258.2039555768772, + 258.4759638466035, + 281.6112563290773, + 281.88326459880363 ], - "relative_heat_gain": 17.802546191979523, + "relative_heat_gain": 17.802546191980944, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.023351217490628438, - "system_effective_conductivity_u": 0.023351217490624937 + "system_effective_conductivity_shgc": 0.023351217490629808, + "system_effective_conductivity_u": 0.0233512174906232 } 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 d85085fb..da2decd9 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.7633703191322366, - "U": 2.54129200737631, + "SHGC": 0.7633703191322438, + "U": 2.5412920073797256, "gap_layer_effective_conductivities_shgc": [ - 0.0005371833561554372 + 0.0005371833561553804 ], "gap_layer_effective_conductivities_u": [ - 0.0005136093721511187 + 0.0005136093721511438 ], "layer_temperatures_shgc": [ - 308.31279353744753, - 308.3936847372778, - 306.2059844713629, - 306.08294124461725 + 308.31279353744765, + 308.3936847372779, + 306.2059844713634, + 306.0829412446178 ], "layer_temperatures_u": [ - 304.15275695078316, - 304.09079008449754, - 300.13246355047636, - 300.07049668419074 + 304.1527569507833, + 304.0907900844976, + 300.1324635504797, + 300.07049668419415 ], - "relative_heat_gain": 573.3463487600841, + "relative_heat_gain": 573.3463487600869, "solid_layer_effective_conductivities_shgc": [ - 1.0, + 0.9999999999999998, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.9999999999999999, + 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.19168599355350746, - "system_effective_conductivity_u": 0.030857112959593796 + "system_effective_conductivity_shgc": 0.19168599355359453, + "system_effective_conductivity_u": 0.030857112959685008 } 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 2520b4d6..9a0b4131 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.288245011822537, + "U": 2.2882450118226116, "gap_layer_effective_conductivities_shgc": [ - 0.00038573774474079733 + 0.00038573774474079023 ], "gap_layer_effective_conductivities_u": [ - 0.00038573774474079246 + 0.0003857377447407878 ], "layer_temperatures_shgc": [ - 258.20395557687783, - 258.4759638466042, - 281.6112563290789, - 281.8832645988053 + 258.2039555768773, + 258.4759638466037, + 281.6112563290795, + 281.8832645988058 ], "layer_temperatures_u": [ - 258.20395557687743, - 258.4759638466038, - 281.6112563290793, - 281.8832645988056 + 258.2039555768772, + 258.4759638466035, + 281.6112563290773, + 281.88326459880363 ], - "relative_heat_gain": 17.802546191979523, + "relative_heat_gain": 17.802546191980944, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.023351217490628438, - "system_effective_conductivity_u": 0.023351217490624937 + "system_effective_conductivity_shgc": 0.023351217490629808, + "system_effective_conductivity_u": 0.0233512174906232 } 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 acfa8c37..db897ccb 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 @@ -8,16 +8,16 @@ 0.0005144628185464245 ], "layer_temperatures_shgc": [ - 308.3427354812204, - 308.4237610530823, - 306.141014730634, - 306.0180146732391 + 308.34273548122053, + 308.42376105308233, + 306.1410147306332, + 306.0180146732382 ], "layer_temperatures_u": [ - 304.15191441981165, - 304.0898952680898, - 300.13480087857675, - 300.0727817268549 + 304.1519144198144, + 304.0898952680925, + 300.13480087851286, + 300.0727817267911 ], "relative_heat_gain": 573.0331337848723, "solid_layer_effective_conductivities_shgc": [ 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 d3b5eab7..6c349171 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 @@ -8,16 +8,16 @@ 0.0003865671960896331 ], "layer_temperatures_shgc": [ - 258.20790581950047, - 258.4802666234813, - 281.59583804442883, - 281.86819884840963 + 258.20790581950024, + 258.4802666234811, + 281.5958380444286, + 281.8681988484094 ], "layer_temperatures_u": [ - 258.2079058195004, - 258.4802666234812, - 281.5958380444284, - 281.8681988484092 + 258.2079058195002, + 258.48026662348104, + 281.59583804442707, + 281.86819884840787 ], "relative_heat_gain": 17.82561904691138, "solid_layer_effective_conductivities_shgc": [ 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 ea23edbc..dd3688be 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 @@ -8,16 +8,16 @@ 0.0005144628185464245 ], "layer_temperatures_shgc": [ - 308.39544597718503, - 308.47823432189216, - 306.209995453462, - 306.0862136283373 + 308.3954459771846, + 308.4782343218917, + 306.2099954534612, + 306.0862136283365 ], "layer_temperatures_u": [ - 304.15191441981165, - 304.0898952680898, - 300.13480087857675, - 300.0727817268549 + 304.1519144198144, + 304.0898952680925, + 300.13480087851286, + 300.0727817267911 ], "relative_heat_gain": 572.0885648947601, "solid_layer_effective_conductivities_shgc": [ 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 d3b5eab7..6c349171 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 @@ -8,16 +8,16 @@ 0.0003865671960896331 ], "layer_temperatures_shgc": [ - 258.20790581950047, - 258.4802666234813, - 281.59583804442883, - 281.86819884840963 + 258.20790581950024, + 258.4802666234811, + 281.5958380444286, + 281.8681988484094 ], "layer_temperatures_u": [ - 258.2079058195004, - 258.4802666234812, - 281.5958380444284, - 281.8681988484092 + 258.2079058195002, + 258.48026662348104, + 281.59583804442707, + 281.86819884840787 ], "relative_heat_gain": 17.82561904691138, "solid_layer_effective_conductivities_shgc": [ 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 629cc6f6..43bdd5eb 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.7646722094555976, - "U": 2.5434362591224127, + "SHGC": 0.7646722094556024, + "U": 2.5434362591259014, "gap_layer_effective_conductivities_shgc": [ - 0.000537749731335648 + 0.0005377497313348258 ], "gap_layer_effective_conductivities_u": [ - 0.0005144628185555757 + 0.0005144628185553545 ], "layer_temperatures_shgc": [ - 308.2592639486121, - 308.3383575543351, - 306.138494197795, - 306.0162041160179 + 308.25926394861096, + 308.338357554334, + 306.1384941977941, + 306.0162041160171 ], "layer_temperatures_u": [ - 304.15191441981324, - 304.0898952680913, + 304.15191441981403, + 304.0898952680922, 300.1348008785382, - 300.07278172681634 + 300.0727817268164 ], - "relative_heat_gain": 574.3071259869937, + "relative_heat_gain": 574.3071259869774, "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.18897731278642277, - "system_effective_conductivity_u": 0.030906827980134423 + "system_effective_conductivity_shgc": 0.18897731278632096, + "system_effective_conductivity_u": 0.030906827980181528 } 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 51e7f33e..a337973b 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.2912106744112997, + "U": 2.291210674411264, "gap_layer_effective_conductivities_shgc": [ - 0.0003865671960895625 + 0.00038656719608959886 ], "gap_layer_effective_conductivities_u": [ - 0.0003865671960895942 + 0.0003865671960896132 ], "layer_temperatures_shgc": [ 258.20790581950007, 258.48026662348093, - 281.59583804442957, - 281.8681988484103 + 281.5958380444272, + 281.868198848408 ], "layer_temperatures_u": [ - 258.20790581950047, - 258.4802666234813, - 281.59583804442883, - 281.86819884840963 + 258.20790581949996, + 258.4802666234808, + 281.59583804442764, + 281.8681988484085 ], - "relative_heat_gain": 17.82561904691922, + "relative_heat_gain": 17.82561904691939, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.023400273568687183, - "system_effective_conductivity_u": 0.02340027356869046 + "system_effective_conductivity_shgc": 0.023400273568689223, + "system_effective_conductivity_u": 0.02340027356868955 } 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 94c9ab66..fbc58444 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.7633607957469848, - "U": 2.5434362591224127, + "SHGC": 0.7633607957469944, + "U": 2.5434362591259014, "gap_layer_effective_conductivities_shgc": [ - 0.0005380351277193765 + 0.0005380351277198889 ], "gap_layer_effective_conductivities_u": [ - 0.0005144628185555757 + 0.0005144628185553545 ], "layer_temperatures_shgc": [ - 308.31232241220243, - 308.3931840549559, - 306.2071448340039, - 306.0840720501814 + 308.31232241220187, + 308.3931840549552, + 306.20714483400627, + 306.0840720501838 ], "layer_temperatures_u": [ - 304.15191441981324, - 304.0898952680913, + 304.15191441981403, + 304.0898952680922, 300.1348008785382, - 300.07278172681634 + 300.0727817268164 ], - "relative_heat_gain": 573.3561249424506, + "relative_heat_gain": 573.3561249424423, "solid_layer_effective_conductivities_shgc": [ - 1.0, - 0.9999999999999999 + 0.9999999999999998, + 1.0 ], "solid_layer_effective_conductivities_u": [ 0.9999999999999999, - 0.9999999999999999 + 1.0 ], - "system_effective_conductivity_shgc": 0.19185076479204113, - "system_effective_conductivity_u": 0.030906827980134423 + "system_effective_conductivity_shgc": 0.1918507647921939, + "system_effective_conductivity_u": 0.030906827980181528 } 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 51e7f33e..a337973b 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.2912106744112997, + "U": 2.291210674411264, "gap_layer_effective_conductivities_shgc": [ - 0.0003865671960895625 + 0.00038656719608959886 ], "gap_layer_effective_conductivities_u": [ - 0.0003865671960895942 + 0.0003865671960896132 ], "layer_temperatures_shgc": [ 258.20790581950007, 258.48026662348093, - 281.59583804442957, - 281.8681988484103 + 281.5958380444272, + 281.868198848408 ], "layer_temperatures_u": [ - 258.20790581950047, - 258.4802666234813, - 281.59583804442883, - 281.86819884840963 + 258.20790581949996, + 258.4802666234808, + 281.59583804442764, + 281.8681988484085 ], - "relative_heat_gain": 17.82561904691922, + "relative_heat_gain": 17.82561904691939, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.023400273568687183, - "system_effective_conductivity_u": 0.02340027356869046 + "system_effective_conductivity_shgc": 0.023400273568689223, + "system_effective_conductivity_u": 0.02340027356868955 } 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 2598fff3..39e04ef8 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 @@ -8,16 +8,16 @@ 0.0004901339126352255 ], "layer_temperatures_shgc": [ - 308.3570533355683, - 308.43897725799275, - 306.1057006086446, - 305.98359890181246 + 308.3570533355689, + 308.4389772579934, + 306.10570060864455, + 305.9835989018124 ], "layer_temperatures_u": [ - 304.17647472931367, - 304.11597977799255, - 300.06659167595717, - 300.0060967246361 + 304.1764747293058, + 304.1159797779843, + 300.06659167616164, + 300.0060967248402 ], "relative_heat_gain": 572.7369866521283, "solid_layer_effective_conductivities_shgc": [ 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 810c8629..9f56a043 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 @@ -8,16 +8,16 @@ 0.0003629394616013781 ], "layer_temperatures_shgc": [ - 258.0926938318937, - 258.354773436336, + 258.0926938318943, + 258.3547734363367, 282.0458096959053, - 282.3078893003476 + 282.3078893003477 ], "layer_temperatures_u": [ - 258.0926938318936, - 258.35477343633596, - 282.0458096959082, - 282.30788930035055 + 258.09269383189417, + 258.3547734363366, + 282.0458096959047, + 282.3078893003471 ], "relative_heat_gain": 17.15272946939801, "solid_layer_effective_conductivities_shgc": [ 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 710f0b1d..8cafcc9a 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 @@ -8,16 +8,16 @@ 0.0004901339126352255 ], "layer_temperatures_shgc": [ - 308.4096722639251, - 308.49335333804424, - 306.17494036937046, - 306.05205127365787 + 308.40967226392513, + 308.4933533380444, + 306.1749403693723, + 306.05205127365963 ], "layer_temperatures_u": [ - 304.17647472931367, - 304.11597977799255, - 300.06659167595717, - 300.0060967246361 + 304.1764747293058, + 304.1159797779843, + 300.06659167616164, + 300.0060967248402 ], "relative_heat_gain": 571.7941257694894, "solid_layer_effective_conductivities_shgc": [ 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 810c8629..9f56a043 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 @@ -8,16 +8,16 @@ 0.0003629394616013781 ], "layer_temperatures_shgc": [ - 258.0926938318937, - 258.354773436336, + 258.0926938318943, + 258.3547734363367, 282.0458096959053, - 282.3078893003476 + 282.3078893003477 ], "layer_temperatures_u": [ - 258.0926938318936, - 258.35477343633596, - 282.0458096959082, - 282.30788930035055 + 258.09269383189417, + 258.3547734363366, + 282.0458096959047, + 282.3078893003471 ], "relative_heat_gain": 17.15272946939801, "solid_layer_effective_conductivities_shgc": [ 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 de926b19..a62eea77 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,33 +1,33 @@ { - "SHGC": 0.7649480843984541, - "U": 2.4809280426069478, + "SHGC": 0.7649480843984328, + "U": 2.4809280426027165, "gap_layer_effective_conductivities_shgc": [ - 0.0005134695052279694 + 0.0005134695052294435 ], "gap_layer_effective_conductivities_u": [ - 0.000490133912610894 + 0.0004901339126116285 ], "layer_temperatures_shgc": [ - 308.2730660902755, - 308.35302549765424, - 306.10445892851345, - 305.98303464839205 + 308.27306609027573, + 308.35302549765447, + 306.10445892851317, + 305.98303464839177 ], "layer_temperatures_u": [ - 304.17647472930923, - 304.115979777988, - 300.0665916760847, - 300.00609672476344 + 304.17647472930867, + 304.11597977798743, + 300.0665916760762, + 300.0060967247549 ], - "relative_heat_gain": 574.0208689603737, + "relative_heat_gain": 574.0208689603718, "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.18433258294693858, - "system_effective_conductivity_u": 0.02948764954738934 + "system_effective_conductivity_shgc": 0.18433258294676122, + "system_effective_conductivity_u": 0.029487649547237166 } 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 f9de43d8..f5d02cb5 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.204721011493435, + "U": 2.2047210114935405, "gap_layer_effective_conductivities_shgc": [ - 0.00036293946160125196 + 0.00036293946160123765 ], "gap_layer_effective_conductivities_u": [ - 0.00036293946160123407 + 0.00036293946160122513 ], "layer_temperatures_shgc": [ 258.0926938318939, 258.35477343633625, - 282.0458096959061, - 282.3078893003484 + 282.04580969590734, + 282.30788930034964 ], "layer_temperatures_u": [ - 258.0926938318937, - 258.354773436336, - 282.0458096959053, - 282.3078893003476 + 258.0926938318943, + 258.35477343633676, + 282.04580969590756, + 282.3078893003499 ], - "relative_heat_gain": 17.15272946941995, + "relative_heat_gain": 17.152729469419754, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.022000963053281204, - "system_effective_conductivity_u": 0.022000963053285683 + "system_effective_conductivity_shgc": 0.022000963053282484, + "system_effective_conductivity_u": 0.022000963053285996 } 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 46b17bd6..48000f8d 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,33 +1,33 @@ { - "SHGC": 0.7636389152148285, - "U": 2.4809280426069478, + "SHGC": 0.7636389152148017, + "U": 2.4809280426027165, "gap_layer_effective_conductivities_shgc": [ - 0.0005137552369450881 + 0.0005137552369450303 ], "gap_layer_effective_conductivities_u": [ - 0.000490133912610894 + 0.0004901339126116285 ], "layer_temperatures_shgc": [ 308.32603724048147, 308.407759328143, - 306.17335665936974, - 306.05114432045525 + 306.17335665937, + 306.05114432045553 ], "layer_temperatures_u": [ - 304.17647472930923, - 304.115979777988, - 300.0665916760847, - 300.00609672476344 + 304.17647472930867, + 304.11597977798743, + 300.0665916760762, + 300.0060967247549 ], - "relative_heat_gain": 573.0714955834507, + "relative_heat_gain": 573.0714955834458, "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.18714833244426776, - "system_effective_conductivity_u": 0.02948764954738934 + "system_effective_conductivity_shgc": 0.1871483324443304, + "system_effective_conductivity_u": 0.029487649547237166 } 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 f9de43d8..f5d02cb5 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.204721011493435, + "U": 2.2047210114935405, "gap_layer_effective_conductivities_shgc": [ - 0.00036293946160125196 + 0.00036293946160123765 ], "gap_layer_effective_conductivities_u": [ - 0.00036293946160123407 + 0.00036293946160122513 ], "layer_temperatures_shgc": [ 258.0926938318939, 258.35477343633625, - 282.0458096959061, - 282.3078893003484 + 282.04580969590734, + 282.30788930034964 ], "layer_temperatures_u": [ - 258.0926938318937, - 258.354773436336, - 282.0458096959053, - 282.3078893003476 + 258.0926938318943, + 258.35477343633676, + 282.04580969590756, + 282.3078893003499 ], - "relative_heat_gain": 17.15272946941995, + "relative_heat_gain": 17.152729469419754, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.022000963053281204, - "system_effective_conductivity_u": 0.022000963053285683 + "system_effective_conductivity_shgc": 0.022000963053282484, + "system_effective_conductivity_u": 0.022000963053285996 } 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 c247cbc6..ef4aa37c 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 @@ -8,16 +8,16 @@ 0.0004824322810452587 ], "layer_temperatures_shgc": [ - 308.36171787397234, - 308.4439344726307, - 306.0941913350775, - 305.9723823044792 + 308.36171787397257, + 308.44393447263104, + 306.09419133507214, + 305.97238230447385 ], "layer_temperatures_u": [ - 304.18449114391007, - 304.1244937082733, - 300.04429464390876, - 299.98429720827187 + 304.1844911438992, + 304.124493708262, + 300.04429464418394, + 299.98429720854665 ], "relative_heat_gain": 572.640489693288, "solid_layer_effective_conductivities_shgc": [ 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 3de3360d..d8f49761 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 @@ -8,16 +8,16 @@ 0.00035546745492748906 ], "layer_temperatures_shgc": [ - 258.0550636197065, - 258.31378554170664, - 282.19291046738505, - 282.45163238938505 + 258.0550636197072, + 258.31378554170726, + 282.1929104673876, + 282.45163238938767 ], "layer_temperatures_u": [ - 258.05506361970663, - 258.3137855417067, - 282.19291046738994, - 282.45163238938994 + 258.0550636197065, + 258.31378554170664, + 282.1929104673863, + 282.4516323893863 ], "relative_heat_gain": 16.932974030211618, "solid_layer_effective_conductivities_shgc": [ 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 108b04b7..f9bf796a 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 @@ -8,16 +8,16 @@ 0.0004824322810452587 ], "layer_temperatures_shgc": [ - 308.41430688314193, - 308.49827879660546, - 306.1635157871914, - 306.0409175308231 + 308.4143068831415, + 308.498278796605, + 306.16351578719105, + 306.0409175308228 ], "layer_temperatures_u": [ - 304.18449114391007, - 304.1244937082733, - 300.04429464390876, - 299.98429720827187 + 304.1844911438992, + 304.124493708262, + 300.04429464418394, + 299.98429720854665 ], "relative_heat_gain": 571.6981869563188, "solid_layer_effective_conductivities_shgc": [ 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 3de3360d..d8f49761 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 @@ -8,16 +8,16 @@ 0.00035546745492748906 ], "layer_temperatures_shgc": [ - 258.0550636197065, - 258.31378554170664, - 282.19291046738505, - 282.45163238938505 + 258.0550636197072, + 258.31378554170726, + 282.1929104673876, + 282.45163238938767 ], "layer_temperatures_u": [ - 258.05506361970663, - 258.3137855417067, - 282.19291046738994, - 282.45163238938994 + 258.0550636197065, + 258.31378554170664, + 282.1929104673863, + 282.4516323893863 ], "relative_heat_gain": 16.932974030211618, "solid_layer_effective_conductivities_shgc": [ 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 86d232de..e31f9689 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.7650383564372456, - "U": 2.4605246769514615, + "SHGC": 0.7650383564372093, + "U": 2.4605246769409876, "gap_layer_effective_conductivities_shgc": [ - 0.0005057838494437278 + 0.0005057838494434595 ], "gap_layer_effective_conductivities_u": [ - 0.0004824322810142263 + 0.00048243228101563397 ], "layer_temperatures_shgc": [ - 308.2775626508381, - 308.3578041320915, - 306.09336652090053, - 305.97222431465366 + 308.2775626508378, + 308.35780413209125, + 306.09336652090036, + 305.9722243146535 ], "layer_temperatures_u": [ - 304.1844911439018, - 304.1244937082646, - 300.04429464407394, - 299.98429720843683 + 304.1844911439039, + 304.1244937082669, + 300.0442946440621, + 299.98429720842506 ], - "relative_heat_gain": 573.9275935676015, + "relative_heat_gain": 573.9275935676077, "solid_layer_effective_conductivities_shgc": [ 1.0, - 1.0 + 0.9999999999999999 ], "solid_layer_effective_conductivities_u": [ 1.0, 0.9999999999999999 ], - "system_effective_conductivity_shgc": 0.18285993077828328, - "system_effective_conductivity_u": 0.0290375380022171 + "system_effective_conductivity_shgc": 0.18285993077852633, + "system_effective_conductivity_u": 0.029037538001952756 } 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 3ffeda32..ef4a37fa 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.1764748110833376, + "U": 2.1764748110832866, "gap_layer_effective_conductivities_shgc": [ - 0.00035546745492738796 + 0.0003554674549274091 ], "gap_layer_effective_conductivities_u": [ - 0.0003554674549273489 + 0.0003554674549273459 ], "layer_temperatures_shgc": [ - 258.05506361970606, - 258.31378554170607, - 282.1929104673859, - 282.4516323893859 + 258.05506361970635, + 258.3137855417064, + 282.1929104673875, + 282.4516323893875 ], "layer_temperatures_u": [ - 258.0550636197065, + 258.0550636197066, 258.31378554170664, - 282.19291046738505, - 282.45163238938505 + 282.1929104673858, + 282.4516323893858 ], - "relative_heat_gain": 16.9329740302294, + "relative_heat_gain": 16.932974030231144, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.021557625612372892, - "system_effective_conductivity_u": 0.02155762561237149 + "system_effective_conductivity_shgc": 0.021557625612375186, + "system_effective_conductivity_u": 0.021557625612374197 } 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 73114949..ee38d7c3 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,25 +1,25 @@ { - "SHGC": 0.7637299207505928, - "U": 2.4605246769514615, + "SHGC": 0.7637299207505519, + "U": 2.4605246769409876, "gap_layer_effective_conductivities_shgc": [ - 0.0005060696908280243 + 0.000506069690826944 ], "gap_layer_effective_conductivities_u": [ - 0.0004824322810142263 + 0.00048243228101563397 ], "layer_temperatures_shgc": [ - 308.3305052708444, - 308.4125076818283, - 306.1623450381003, - 306.04041302250823 + 308.3305052708449, + 308.41250768182886, + 306.1623450380987, + 306.0404130225066 ], "layer_temperatures_u": [ - 304.1844911439018, - 304.1244937082646, - 300.04429464407394, - 299.98429720843683 + 304.1844911439039, + 304.1244937082669, + 300.0442946440621, + 299.98429720842506 ], - "relative_heat_gain": 572.9787521024499, + "relative_heat_gain": 572.9787521024298, "solid_layer_effective_conductivities_shgc": [ 1.0, 0.9999999999999999 @@ -28,6 +28,6 @@ 1.0, 0.9999999999999999 ], - "system_effective_conductivity_shgc": 0.18565740012515217, - "system_effective_conductivity_u": 0.0290375380022171 + "system_effective_conductivity_shgc": 0.1856574001249561, + "system_effective_conductivity_u": 0.029037538001952756 } 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 3ffeda32..ef4a37fa 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.1764748110833376, + "U": 2.1764748110832866, "gap_layer_effective_conductivities_shgc": [ - 0.00035546745492738796 + 0.0003554674549274091 ], "gap_layer_effective_conductivities_u": [ - 0.0003554674549273489 + 0.0003554674549273459 ], "layer_temperatures_shgc": [ - 258.05506361970606, - 258.31378554170607, - 282.1929104673859, - 282.4516323893859 + 258.05506361970635, + 258.3137855417064, + 282.1929104673875, + 282.4516323893875 ], "layer_temperatures_u": [ - 258.0550636197065, + 258.0550636197066, 258.31378554170664, - 282.19291046738505, - 282.45163238938505 + 282.1929104673858, + 282.4516323893858 ], - "relative_heat_gain": 16.9329740302294, + "relative_heat_gain": 16.932974030231144, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.021557625612372892, - "system_effective_conductivity_u": 0.02155762561237149 + "system_effective_conductivity_shgc": 0.021557625612375186, + "system_effective_conductivity_u": 0.021557625612374197 } 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 index b7c36ffa..26590314 100644 --- 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 @@ -8,16 +8,16 @@ 0.009052269459502504 ], "layer_temperatures_shgc": [ - 308.38031688901617, - 308.46370051779826, - 306.0482782439485, - 305.9276362434739 + 308.38031688901515, + 308.4637005177972, + 306.04827824395716, + 305.9276362434825 ], "layer_temperatures_u": [ - 304.216692794657, - 304.1586939661088, - 299.95455785906796, - 299.89655903051977 + 304.21669279470956, + 304.1586939661637, + 299.9545578580896, + 299.8965590295437 ], "relative_heat_gain": 572.2554885202584, "solid_layer_effective_conductivities_shgc": [ 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 index ce6c4c7d..9b6ae024 100644 --- 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 @@ -8,16 +8,16 @@ 0.006512544602665031 ], "layer_temperatures_shgc": [ - 257.89867126267245, - 258.1434403091989, - 282.8050150476531, - 283.0497840941796 + 257.898671262672, + 258.1434403091986, + 282.8050150476532, + 283.0497840941797 ], "layer_temperatures_u": [ - 257.89867126267114, - 258.1434403091976, - 282.80501504766494, - 283.04978409419147 + 257.8986712626722, + 258.14344030919875, + 282.8050150476476, + 283.0497840941742 ], "relative_heat_gain": 16.019778595438407, "solid_layer_effective_conductivities_shgc": [ 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 index 6ed954aa..a226b5c7 100644 --- 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 @@ -8,16 +8,16 @@ 0.009052269459502504 ], "layer_temperatures_shgc": [ - 308.43278506575336, - 308.5179165882922, - 306.1179445893898, - 305.99650594209686 + 308.43278506575314, + 308.517916588292, + 306.11794458939687, + 305.99650594210397 ], "layer_temperatures_u": [ - 304.216692794657, - 304.1586939661088, - 299.95455785906796, - 299.89655903051977 + 304.21669279470956, + 304.1586939661637, + 299.9545578580896, + 299.8965590295437 ], "relative_heat_gain": 571.3154406963298, "solid_layer_effective_conductivities_shgc": [ 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 index ce6c4c7d..9b6ae024 100644 --- 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 @@ -8,16 +8,16 @@ 0.006512544602665031 ], "layer_temperatures_shgc": [ - 257.89867126267245, - 258.1434403091989, - 282.8050150476531, - 283.0497840941796 + 257.898671262672, + 258.1434403091986, + 282.8050150476532, + 283.0497840941797 ], "layer_temperatures_u": [ - 257.89867126267114, - 258.1434403091976, - 282.80501504766494, - 283.04978409419147 + 257.8986712626722, + 258.14344030919875, + 282.8050150476476, + 283.0497840941742 ], "relative_heat_gain": 16.019778595438407, "solid_layer_effective_conductivities_shgc": [ 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 index db81b55a..ddc0a818 100644 --- 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 @@ -1,33 +1,33 @@ { - "SHGC": 0.7654044856541045, - "U": 2.378560806015896, + "SHGC": 0.7654044856543322, + "U": 2.3785608060422154, "gap_layer_effective_conductivities_shgc": [ 0.009523493424732368 ], "gap_layer_effective_conductivities_u": [ - 0.009052269461520381 + 0.009052269461423387 ], "layer_temperatures_shgc": [ - 308.29549278286606, - 308.3768590730511, - 306.04911494937096, - 305.9290975520558 + 308.2954927828659, + 308.3768590730509, + 306.0491149493622, + 305.9290975520471 ], "layer_temperatures_u": [ - 304.2166927946911, - 304.1586939661444, - 299.95455785843205, - 299.8965590298854 + 304.2166927946831, + 304.15869396613607, + 299.954557858593, + 299.896559030046 ], - "relative_heat_gain": 573.5554214605156, + "relative_heat_gain": 573.5554214605195, "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.2315063947819975, - "system_effective_conductivity_u": 0.035659689807528906 + "system_effective_conductivity_u": 0.03565968980869757 } 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 index 0a27fcd8..9ee3b544 100644 --- 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 @@ -1,11 +1,11 @@ { "SHGC": 0.0, - "U": 2.059097505845941, + "U": 2.0590975058459726, "gap_layer_effective_conductivities_shgc": [ 0.006512544602657545 ], "gap_layer_effective_conductivities_u": [ - 0.006512544602657555 + 0.006512544602657459 ], "layer_temperatures_shgc": [ 257.898671262672, @@ -14,20 +14,20 @@ 283.0497840941797 ], "layer_temperatures_u": [ - 257.89867126267245, - 258.1434403091989, - 282.8050150476531, - 283.0497840941796 + 257.898671262672, + 258.1434403091986, + 282.8050150476532, + 283.0497840941797 ], - "relative_heat_gain": 16.0197785954778, + "relative_heat_gain": 16.019778595479764, "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.02584965933175535, - "system_effective_conductivity_u": 0.025849659331761803 + "system_effective_conductivity_u": 0.025849659331751196 } 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 index efe1a2b5..ae717415 100644 --- 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 @@ -1,33 +1,33 @@ { - "SHGC": 0.7640990138737723, - "U": 2.378560806015896, + "SHGC": 0.7640990138740108, + "U": 2.3785608060422154, "gap_layer_effective_conductivities_shgc": [ - 0.009529253436289005 + 0.009529253436284465 ], "gap_layer_effective_conductivities_u": [ - 0.009052269461520381 + 0.009052269461423387 ], "layer_temperatures_shgc": [ - 308.3483201584477, - 308.43144030475156, - 306.1184196349452, - 305.99760535467306 + 308.34832015844756, + 308.4314403047515, + 306.1184196349358, + 305.9976053546636 ], "layer_temperatures_u": [ - 304.2166927946911, - 304.1586939661444, - 299.95455785843205, - 299.8965590298854 + 304.2166927946831, + 304.15869396613607, + 299.954557858593, + 299.896559030046 ], - "relative_heat_gain": 572.6087293385009, + "relative_heat_gain": 572.6087293385006, "solid_layer_effective_conductivities_shgc": [ - 1.0, + 0.9999999999999998, 1.0 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.9999999999999999 + 1.0 ], - "system_effective_conductivity_shgc": 0.2350700354393282, - "system_effective_conductivity_u": 0.035659689807528906 + "system_effective_conductivity_shgc": 0.23507003543955346, + "system_effective_conductivity_u": 0.03565968980869757 } 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 index 0a27fcd8..9ee3b544 100644 --- 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 @@ -1,11 +1,11 @@ { "SHGC": 0.0, - "U": 2.059097505845941, + "U": 2.0590975058459726, "gap_layer_effective_conductivities_shgc": [ 0.006512544602657545 ], "gap_layer_effective_conductivities_u": [ - 0.006512544602657555 + 0.006512544602657459 ], "layer_temperatures_shgc": [ 257.898671262672, @@ -14,20 +14,20 @@ 283.0497840941797 ], "layer_temperatures_u": [ - 257.89867126267245, - 258.1434403091989, - 282.8050150476531, - 283.0497840941796 + 257.898671262672, + 258.1434403091986, + 282.8050150476532, + 283.0497840941797 ], - "relative_heat_gain": 16.0197785954778, + "relative_heat_gain": 16.019778595479764, "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.02584965933175535, - "system_effective_conductivity_u": 0.025849659331761803 + "system_effective_conductivity_u": 0.025849659331751196 } 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 20175267..041d0f86 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 @@ -8,16 +8,16 @@ 0.0004883661952033457 ], "layer_temperatures_shgc": [ - 308.3581182169673, - 308.4401089550056, - 306.10307331604054, - 305.9810384248221 + 308.35811821696745, + 308.4401089550057, + 306.10307331604093, + 305.9810384248225 ], "layer_temperatures_u": [ - 304.1783041651558, - 304.1179227515895, - 300.0615047162931, - 300.00112330272674 + 304.17830416516426, + 304.11792275159826, + 300.0615047160579, + 300.00112330249203 ], "relative_heat_gain": 572.7149578023339, "solid_layer_effective_conductivities_shgc": [ 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 8dc4dd9d..13847663 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 @@ -8,16 +8,16 @@ 0.00036122411398011365 ], "layer_temperatures_shgc": [ - 258.0841072388363, - 258.3454206611216, - 282.0793697634787, - 282.3406831857641 + 258.08410723883605, + 258.3454206611214, + 282.0793697634797, + 282.340683185765 ], "layer_temperatures_u": [ - 258.08410723883594, - 258.3454206611213, - 282.0793697634755, - 282.3406831857608 + 258.08410723883617, + 258.3454206611216, + 282.0793697634825, + 282.34068318576783 ], "relative_heat_gain": 17.10258396004958, "solid_layer_effective_conductivities_shgc": [ 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 9acf91e7..2a5a9f84 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 @@ -8,16 +8,16 @@ 0.0004883661952033457 ], "layer_temperatures_shgc": [ - 308.41073031879614, - 308.4944777894234, - 306.17233239815187, - 306.0495096989472 + 308.41073031879654, + 308.4944777894238, + 306.1723323981579, + 306.0495096989532 ], "layer_temperatures_u": [ - 304.1783041651558, - 304.1179227515895, - 300.0615047162931, - 300.00112330272674 + 304.17830416516426, + 304.11792275159826, + 300.0615047160579, + 300.00112330249203 ], "relative_heat_gain": 571.7722242663872, "solid_layer_effective_conductivities_shgc": [ 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 8dc4dd9d..13847663 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 @@ -8,16 +8,16 @@ 0.00036122411398011365 ], "layer_temperatures_shgc": [ - 258.0841072388363, - 258.3454206611216, - 282.0793697634787, - 282.3406831857641 + 258.08410723883605, + 258.3454206611214, + 282.0793697634797, + 282.340683185765 ], "layer_temperatures_u": [ - 258.08410723883594, - 258.3454206611213, - 282.0793697634755, - 282.3406831857608 + 258.08410723883617, + 258.3454206611216, + 282.0793697634825, + 282.34068318576783 ], "relative_heat_gain": 17.10258396004958, "solid_layer_effective_conductivities_shgc": [ 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 4dbe5c00..880ce253 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.7649686756077497, - "U": 2.4762718027660964, + "SHGC": 0.7649686756078401, + "U": 2.476271802774323, "gap_layer_effective_conductivities_shgc": [ - 0.0005117054299130223 + 0.0005117054299132397 ], "gap_layer_effective_conductivities_u": [ - 0.0004883661952311758 + 0.000488366195230593 ], "layer_temperatures_shgc": [ - 308.2740926220906, - 308.3541164245724, - 306.1019267932023, - 305.98056690818396 + 308.2740926220898, + 308.35411642457154, + 306.1019267932039, + 305.9805669081855 ], "layer_temperatures_u": [ - 304.17830416516153, - 304.1179227515954, - 300.0615047161442, - 300.0011233025781 + 304.1783041651611, + 304.11792275159496, + 300.06150471616195, + 300.0011233025959 ], - "relative_heat_gain": 573.9995755915838, + "relative_heat_gain": 573.9995755915779, "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.18399467041082385, - "system_effective_conductivity_u": 0.029384373961925576 + "system_effective_conductivity_shgc": 0.18399467041104228, + "system_effective_conductivity_u": 0.029384373962141653 } 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 2f623c70..49952416 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.1982755732692816, + "U": 2.198275573269502, "gap_layer_effective_conductivities_shgc": [ - 0.00036122411398019106 + 0.00036122411398021274 ], "gap_layer_effective_conductivities_u": [ - 0.00036122411398022526 + 0.00036122411398021074 ], "layer_temperatures_shgc": [ - 258.08410723883605, - 258.34542066112135, - 282.0793697634803, - 282.34068318576567 + 258.0841072388358, + 258.34542066112107, + 282.07936976347986, + 282.34068318576516 ], "layer_temperatures_u": [ - 258.0841072388363, - 258.3454206611216, - 282.0793697634787, - 282.3406831857641 + 258.08410723883594, + 258.34542066112124, + 282.07936976347924, + 282.34068318576453 ], - "relative_heat_gain": 17.10258396003605, + "relative_heat_gain": 17.102583960035805, "solid_layer_effective_conductivities_shgc": [ 0.9999999999999998, - 0.9999999999999998 + 1.0 ], "solid_layer_effective_conductivities_u": [ 0.9999999999999998, 1.0 ], - "system_effective_conductivity_shgc": 0.021899221080030302, - "system_effective_conductivity_u": 0.021899221080032505 + "system_effective_conductivity_shgc": 0.021899221080034538, + "system_effective_conductivity_u": 0.021899221080031166 } 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 f8f616a4..0e50fd75 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.7636596737780587, - "U": 2.4762718027660964, + "SHGC": 0.7636596737781332, + "U": 2.476271802774323, "gap_layer_effective_conductivities_shgc": [ - 0.0005119911866477204 + 0.0005119911866485869 ], "gap_layer_effective_conductivities_u": [ - 0.0004883661952311758 + 0.000488366195230593 ], "layer_temperatures_shgc": [ - 308.32705726273304, - 308.4088433460933, - 306.1708429545677, - 306.0486946113522 + 308.32705726273355, + 308.4088433460938, + 306.1708429545689, + 306.0486946113533 ], "layer_temperatures_u": [ - 304.17830416516153, - 304.1179227515954, - 300.0615047161442, - 300.0011233025781 + 304.1783041651611, + 304.11792275159496, + 300.06150471616195, + 300.0011233025959 ], - "relative_heat_gain": 573.0503235751008, + "relative_heat_gain": 573.0503235751011, "solid_layer_effective_conductivities_shgc": [ 1.0, - 1.0 + 0.9999999999999999 ], "solid_layer_effective_conductivities_u": [ 0.9999999999999999, - 0.9999999999999999 + 1.0 ], - "system_effective_conductivity_shgc": 0.186806224734984, - "system_effective_conductivity_u": 0.029384373961925576 + "system_effective_conductivity_shgc": 0.18680622473493236, + "system_effective_conductivity_u": 0.029384373962141653 } 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 2f623c70..49952416 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.1982755732692816, + "U": 2.198275573269502, "gap_layer_effective_conductivities_shgc": [ - 0.00036122411398019106 + 0.00036122411398021274 ], "gap_layer_effective_conductivities_u": [ - 0.00036122411398022526 + 0.00036122411398021074 ], "layer_temperatures_shgc": [ - 258.08410723883605, - 258.34542066112135, - 282.0793697634803, - 282.34068318576567 + 258.0841072388358, + 258.34542066112107, + 282.07936976347986, + 282.34068318576516 ], "layer_temperatures_u": [ - 258.0841072388363, - 258.3454206611216, - 282.0793697634787, - 282.3406831857641 + 258.08410723883594, + 258.34542066112124, + 282.07936976347924, + 282.34068318576453 ], - "relative_heat_gain": 17.10258396003605, + "relative_heat_gain": 17.102583960035805, "solid_layer_effective_conductivities_shgc": [ 0.9999999999999998, - 0.9999999999999998 + 1.0 ], "solid_layer_effective_conductivities_u": [ 0.9999999999999998, 1.0 ], - "system_effective_conductivity_shgc": 0.021899221080030302, - "system_effective_conductivity_u": 0.021899221080032505 + "system_effective_conductivity_shgc": 0.021899221080034538, + "system_effective_conductivity_u": 0.021899221080031166 } 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 c247cbc6..ef4aa37c 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 @@ -8,16 +8,16 @@ 0.0004824322810452587 ], "layer_temperatures_shgc": [ - 308.36171787397234, - 308.4439344726307, - 306.0941913350775, - 305.9723823044792 + 308.36171787397257, + 308.44393447263104, + 306.09419133507214, + 305.97238230447385 ], "layer_temperatures_u": [ - 304.18449114391007, - 304.1244937082733, - 300.04429464390876, - 299.98429720827187 + 304.1844911438992, + 304.124493708262, + 300.04429464418394, + 299.98429720854665 ], "relative_heat_gain": 572.640489693288, "solid_layer_effective_conductivities_shgc": [ 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 3de3360d..d8f49761 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 @@ -8,16 +8,16 @@ 0.00035546745492748906 ], "layer_temperatures_shgc": [ - 258.0550636197065, - 258.31378554170664, - 282.19291046738505, - 282.45163238938505 + 258.0550636197072, + 258.31378554170726, + 282.1929104673876, + 282.45163238938767 ], "layer_temperatures_u": [ - 258.05506361970663, - 258.3137855417067, - 282.19291046738994, - 282.45163238938994 + 258.0550636197065, + 258.31378554170664, + 282.1929104673863, + 282.4516323893863 ], "relative_heat_gain": 16.932974030211618, "solid_layer_effective_conductivities_shgc": [ 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 108b04b7..f9bf796a 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 @@ -8,16 +8,16 @@ 0.0004824322810452587 ], "layer_temperatures_shgc": [ - 308.41430688314193, - 308.49827879660546, - 306.1635157871914, - 306.0409175308231 + 308.4143068831415, + 308.498278796605, + 306.16351578719105, + 306.0409175308228 ], "layer_temperatures_u": [ - 304.18449114391007, - 304.1244937082733, - 300.04429464390876, - 299.98429720827187 + 304.1844911438992, + 304.124493708262, + 300.04429464418394, + 299.98429720854665 ], "relative_heat_gain": 571.6981869563188, "solid_layer_effective_conductivities_shgc": [ 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 3de3360d..d8f49761 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 @@ -8,16 +8,16 @@ 0.00035546745492748906 ], "layer_temperatures_shgc": [ - 258.0550636197065, - 258.31378554170664, - 282.19291046738505, - 282.45163238938505 + 258.0550636197072, + 258.31378554170726, + 282.1929104673876, + 282.45163238938767 ], "layer_temperatures_u": [ - 258.05506361970663, - 258.3137855417067, - 282.19291046738994, - 282.45163238938994 + 258.0550636197065, + 258.31378554170664, + 282.1929104673863, + 282.4516323893863 ], "relative_heat_gain": 16.932974030211618, "solid_layer_effective_conductivities_shgc": [ 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 86d232de..e31f9689 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.7650383564372456, - "U": 2.4605246769514615, + "SHGC": 0.7650383564372093, + "U": 2.4605246769409876, "gap_layer_effective_conductivities_shgc": [ - 0.0005057838494437278 + 0.0005057838494434595 ], "gap_layer_effective_conductivities_u": [ - 0.0004824322810142263 + 0.00048243228101563397 ], "layer_temperatures_shgc": [ - 308.2775626508381, - 308.3578041320915, - 306.09336652090053, - 305.97222431465366 + 308.2775626508378, + 308.35780413209125, + 306.09336652090036, + 305.9722243146535 ], "layer_temperatures_u": [ - 304.1844911439018, - 304.1244937082646, - 300.04429464407394, - 299.98429720843683 + 304.1844911439039, + 304.1244937082669, + 300.0442946440621, + 299.98429720842506 ], - "relative_heat_gain": 573.9275935676015, + "relative_heat_gain": 573.9275935676077, "solid_layer_effective_conductivities_shgc": [ 1.0, - 1.0 + 0.9999999999999999 ], "solid_layer_effective_conductivities_u": [ 1.0, 0.9999999999999999 ], - "system_effective_conductivity_shgc": 0.18285993077828328, - "system_effective_conductivity_u": 0.0290375380022171 + "system_effective_conductivity_shgc": 0.18285993077852633, + "system_effective_conductivity_u": 0.029037538001952756 } 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 3ffeda32..ef4a37fa 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.1764748110833376, + "U": 2.1764748110832866, "gap_layer_effective_conductivities_shgc": [ - 0.00035546745492738796 + 0.0003554674549274091 ], "gap_layer_effective_conductivities_u": [ - 0.0003554674549273489 + 0.0003554674549273459 ], "layer_temperatures_shgc": [ - 258.05506361970606, - 258.31378554170607, - 282.1929104673859, - 282.4516323893859 + 258.05506361970635, + 258.3137855417064, + 282.1929104673875, + 282.4516323893875 ], "layer_temperatures_u": [ - 258.0550636197065, + 258.0550636197066, 258.31378554170664, - 282.19291046738505, - 282.45163238938505 + 282.1929104673858, + 282.4516323893858 ], - "relative_heat_gain": 16.9329740302294, + "relative_heat_gain": 16.932974030231144, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.021557625612372892, - "system_effective_conductivity_u": 0.02155762561237149 + "system_effective_conductivity_shgc": 0.021557625612375186, + "system_effective_conductivity_u": 0.021557625612374197 } 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 73114949..ee38d7c3 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,25 +1,25 @@ { - "SHGC": 0.7637299207505928, - "U": 2.4605246769514615, + "SHGC": 0.7637299207505519, + "U": 2.4605246769409876, "gap_layer_effective_conductivities_shgc": [ - 0.0005060696908280243 + 0.000506069690826944 ], "gap_layer_effective_conductivities_u": [ - 0.0004824322810142263 + 0.00048243228101563397 ], "layer_temperatures_shgc": [ - 308.3305052708444, - 308.4125076818283, - 306.1623450381003, - 306.04041302250823 + 308.3305052708449, + 308.41250768182886, + 306.1623450380987, + 306.0404130225066 ], "layer_temperatures_u": [ - 304.1844911439018, - 304.1244937082646, - 300.04429464407394, - 299.98429720843683 + 304.1844911439039, + 304.1244937082669, + 300.0442946440621, + 299.98429720842506 ], - "relative_heat_gain": 572.9787521024499, + "relative_heat_gain": 572.9787521024298, "solid_layer_effective_conductivities_shgc": [ 1.0, 0.9999999999999999 @@ -28,6 +28,6 @@ 1.0, 0.9999999999999999 ], - "system_effective_conductivity_shgc": 0.18565740012515217, - "system_effective_conductivity_u": 0.0290375380022171 + "system_effective_conductivity_shgc": 0.1856574001249561, + "system_effective_conductivity_u": 0.029037538001952756 } 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 3ffeda32..ef4a37fa 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.1764748110833376, + "U": 2.1764748110832866, "gap_layer_effective_conductivities_shgc": [ - 0.00035546745492738796 + 0.0003554674549274091 ], "gap_layer_effective_conductivities_u": [ - 0.0003554674549273489 + 0.0003554674549273459 ], "layer_temperatures_shgc": [ - 258.05506361970606, - 258.31378554170607, - 282.1929104673859, - 282.4516323893859 + 258.05506361970635, + 258.3137855417064, + 282.1929104673875, + 282.4516323893875 ], "layer_temperatures_u": [ - 258.0550636197065, + 258.0550636197066, 258.31378554170664, - 282.19291046738505, - 282.45163238938505 + 282.1929104673858, + 282.4516323893858 ], - "relative_heat_gain": 16.9329740302294, + "relative_heat_gain": 16.932974030231144, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.021557625612372892, - "system_effective_conductivity_u": 0.02155762561237149 + "system_effective_conductivity_shgc": 0.021557625612375186, + "system_effective_conductivity_u": 0.021557625612374197 } 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 80fe9199..8f1a7450 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 @@ -8,16 +8,16 @@ 0.0004743065160418783 ], "layer_temperatures_shgc": [ - 308.366710663169, - 308.4492405381346, - 306.0818696964905, - 305.96037394219934 + 308.3667106631699, + 308.4492405381354, + 306.0818696964927, + 305.9603739422015 ], "layer_temperatures_u": [ - 304.19307995992443, - 304.13361557591145, - 300.02038688214003, - 299.96092249812705 + 304.1930799599453, + 304.1336155759332, + 300.0203868816857, + 299.96092249767355 ], "relative_heat_gain": 572.5371928963319, "solid_layer_effective_conductivities_shgc": [ 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 9cc2e296..e93675ab 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 @@ -8,16 +8,16 @@ 0.00034758813029913457 ], "layer_temperatures_shgc": [ - 258.0147337039541, - 258.269857235726, - 282.3506402521386, - 282.6057637839105 + 258.01473370395456, + 258.2698572357265, + 282.3506402521408, + 282.6057637839127 ], "layer_temperatures_u": [ - 258.01473370395377, - 258.2698572357257, - 282.350640252142, - 282.6057637839139 + 258.01473370395405, + 258.269857235726, + 282.35064025213865, + 282.60576378391056 ], "relative_heat_gain": 16.697464616038218, "solid_layer_effective_conductivities_shgc": [ 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 c172351e..7010ad5f 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 @@ -8,16 +8,16 @@ 0.0004743065160418783 ], "layer_temperatures_shgc": [ - 308.41926759965855, - 308.5035508202109, - 306.1512849643964, - 306.0289980151168 + 308.4192675996583, + 308.50355082021065, + 306.15128496439485, + 306.0289980151153 ], "layer_temperatures_u": [ - 304.19307995992443, - 304.13361557591145, - 300.02038688214003, - 299.96092249812705 + 304.1930799599453, + 304.1336155759332, + 300.0203868816857, + 299.96092249767355 ], "relative_heat_gain": 571.595488513679, "solid_layer_effective_conductivities_shgc": [ 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 9cc2e296..e93675ab 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 @@ -8,16 +8,16 @@ 0.00034758813029913457 ], "layer_temperatures_shgc": [ - 258.0147337039541, - 258.269857235726, - 282.3506402521386, - 282.6057637839105 + 258.01473370395456, + 258.2698572357265, + 282.3506402521408, + 282.6057637839127 ], "layer_temperatures_u": [ - 258.01473370395377, - 258.2698572357257, - 282.350640252142, - 282.6057637839139 + 258.01473370395405, + 258.269857235726, + 282.35064025213865, + 282.60576378391056 ], "relative_heat_gain": 16.697464616038218, "solid_layer_effective_conductivities_shgc": [ 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 682d6305..7630a0d9 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.7651351990140252, - "U": 2.4386639646429966, + "SHGC": 0.7651351990141572, + "U": 2.4386639646572403, "gap_layer_effective_conductivities_shgc": [ - 0.0004976752490366507 + 0.0004976752490373 ], "gap_layer_effective_conductivities_u": [ - 0.00047430651609204466 + 0.0004743065160903206 ], "layer_temperatures_shgc": [ - 308.28237565898917, - 308.36291906890915, - 306.08149121373674, - 305.96065093615647 + 308.2823756589893, + 308.36291906890926, + 306.0814912137366, + 305.9606509361563 ], "layer_temperatures_u": [ - 304.1930799599371, - 304.13361557592475, - 300.0203868818585, - 299.96092249784607 + 304.1930799599351, + 304.13361557592265, + 300.02038688189987, + 299.96092249788734 ], - "relative_heat_gain": 573.8277447932071, + "relative_heat_gain": 573.8277447932064, "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.18130497610986496, - "system_effective_conductivity_u": 0.02856219322546675 + "system_effective_conductivity_shgc": 0.18130497610985222, + "system_effective_conductivity_u": 0.028562193225897703 } 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 815cb876..5fc02b04 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,11 +1,11 @@ { "SHGC": 0.0, - "U": 2.1462036781565117, + "U": 2.146203678156509, "gap_layer_effective_conductivities_shgc": [ - 0.00034758813029896294 + 0.0003475881302989704 ], "gap_layer_effective_conductivities_u": [ - 0.0003475881302990164 + 0.00034758813029901113 ], "layer_temperatures_shgc": [ 258.0147337039541, @@ -14,12 +14,12 @@ 282.60576378391227 ], "layer_temperatures_u": [ - 258.0147337039541, - 258.269857235726, - 282.3506402521386, - 282.6057637839105 + 258.01473370395433, + 258.26985723572625, + 282.3506402521376, + 282.60576378390954 ], - "relative_heat_gain": 16.697464616056827, + "relative_heat_gain": 16.697464616056788, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.02108969230660122, - "system_effective_conductivity_u": 0.02108969230659851 + "system_effective_conductivity_shgc": 0.02108969230659753, + "system_effective_conductivity_u": 0.021089692306597498 } 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 afe07ff4..6de7d8a6 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.7638275496825517, - "U": 2.4386639646429966, + "SHGC": 0.7638275496826854, + "U": 2.4386639646572403, "gap_layer_effective_conductivities_shgc": [ - 0.0004979612080368039 + 0.0004979612080368095 ], "gap_layer_effective_conductivities_u": [ - 0.00047430651609204466 + 0.0004743065160903206 ], "layer_temperatures_shgc": [ - 308.33528769471275, - 308.41759015766723, - 306.15055635912444, - 306.028924395503 + 308.33528769471366, + 308.4175901576681, + 306.1505563591211, + 306.02892439549964 ], "layer_temperatures_u": [ - 304.1930799599371, - 304.13361557592475, - 300.0203868818585, - 299.96092249784607 + 304.1930799599351, + 304.13361557592265, + 300.02038688189987, + 299.96092249788734 ], - "relative_heat_gain": 572.8794735693067, + "relative_heat_gain": 572.8794735692935, "solid_layer_effective_conductivities_shgc": [ - 1.0, + 0.9999999999999998, 1.0 ], "solid_layer_effective_conductivities_u": [ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.1840831515417286, - "system_effective_conductivity_u": 0.02856219322546675 + "system_effective_conductivity_shgc": 0.18408315154165633, + "system_effective_conductivity_u": 0.028562193225897703 } 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 815cb876..5fc02b04 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,11 +1,11 @@ { "SHGC": 0.0, - "U": 2.1462036781565117, + "U": 2.146203678156509, "gap_layer_effective_conductivities_shgc": [ - 0.00034758813029896294 + 0.0003475881302989704 ], "gap_layer_effective_conductivities_u": [ - 0.0003475881302990164 + 0.00034758813029901113 ], "layer_temperatures_shgc": [ 258.0147337039541, @@ -14,12 +14,12 @@ 282.60576378391227 ], "layer_temperatures_u": [ - 258.0147337039541, - 258.269857235726, - 282.3506402521386, - 282.6057637839105 + 258.01473370395433, + 258.26985723572625, + 282.3506402521376, + 282.60576378390954 ], - "relative_heat_gain": 16.697464616056827, + "relative_heat_gain": 16.697464616056788, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.02108969230660122, - "system_effective_conductivity_u": 0.02108969230659851 + "system_effective_conductivity_shgc": 0.02108969230659753, + "system_effective_conductivity_u": 0.021089692306597498 } 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 7672cf47..91d5ae6b 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 @@ -8,16 +8,16 @@ 0.000478127663187018 ], "layer_temperatures_shgc": [ - 308.3643535719733, - 308.44673554896735, - 306.08768704526665, - 305.966043393004 + 308.36435357197325, + 308.4467355489673, + 306.08768704526744, + 305.9660433930048 ], "layer_temperatures_u": [ - 304.1890241183955, - 304.1293080133494, - 300.0316791023931, - 299.9719629973471 + 304.18902411838326, + 304.1293080133366, + 300.0316791027073, + 299.9719629976606 ], "relative_heat_gain": 572.5859604074346, "solid_layer_effective_conductivities_shgc": [ 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 3bdfa6a1..a38e9089 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 @@ -8,16 +8,16 @@ 0.0003512928483126351 ], "layer_temperatures_shgc": [ - 258.0337800451425, - 258.29060294123633, - 282.27614038139575, - 282.53296327748956 + 258.0337800451429, + 258.2906029412368, + 282.2761403813938, + 282.5329632774876 ], "layer_temperatures_u": [ - 258.03378004514326, - 258.2906029412371, - 282.2761403813927, - 282.53296327748654 + 258.03378004514286, + 258.2906029412367, + 282.27614038139865, + 282.5329632774925 ], "relative_heat_gain": 16.80868554280962, "solid_layer_effective_conductivities_shgc": [ 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 191929d4..6126ded2 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 @@ -8,16 +8,16 @@ 0.000478127663187018 ], "layer_temperatures_shgc": [ - 308.4169256561406, - 308.5010619087828, - 306.15705941789076, - 306.03462550070117 + 308.416925656141, + 308.50106190878324, + 306.1570594178935, + 306.03462550070384 ], "layer_temperatures_u": [ - 304.1890241183955, - 304.1293080133494, - 300.0316791023931, - 299.9719629973471 + 304.18902411838326, + 304.1293080133366, + 300.0316791027073, + 299.9719629976606 ], "relative_heat_gain": 571.6439734221632, "solid_layer_effective_conductivities_shgc": [ 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 3bdfa6a1..a38e9089 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 @@ -8,16 +8,16 @@ 0.0003512928483126351 ], "layer_temperatures_shgc": [ - 258.0337800451425, - 258.29060294123633, - 282.27614038139575, - 282.53296327748956 + 258.0337800451429, + 258.2906029412368, + 282.2761403813938, + 282.5329632774876 ], "layer_temperatures_u": [ - 258.03378004514326, - 258.2906029412371, - 282.2761403813927, - 282.53296327748654 + 258.03378004514286, + 258.2906029412367, + 282.27614038139865, + 282.5329632774925 ], "relative_heat_gain": 16.80868554280962, "solid_layer_effective_conductivities_shgc": [ 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 b70b30e3..67bb32c7 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.7650894515505019, - "U": 2.4489871695048975, + "SHGC": 0.765089451550431, + "U": 2.4489871694941945, "gap_layer_effective_conductivities_shgc": [ - 0.0005014882844049094 + 0.0005014882844042709 ], "gap_layer_effective_conductivities_u": [ - 0.0004781276631525428 + 0.0004781276631537843 ], "layer_temperatures_shgc": [ - 308.28010344000626, - 308.3605043090607, - 306.08709783304124, - 305.9661150145955 + 308.2801034400065, + 308.36050430906096, + 306.0870978330408, + 305.96611501459506 ], "layer_temperatures_u": [ - 304.1890241183871, - 304.1293080133406, - 300.031679102583, - 299.97196299753654 + 304.189024118388, + 304.12930801334153, + 300.0316791025626, + 299.97196299751613 ], - "relative_heat_gain": 573.8748845278627, + "relative_heat_gain": 573.8748845278767, "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.1820363486027939, - "system_effective_conductivity_u": 0.028785781460665613 + "system_effective_conductivity_shgc": 0.18203634860304233, + "system_effective_conductivity_u": 0.028785781460344766 } 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 acbc02eb..5af8d0ac 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.160499427093698, + "U": 2.160499427093885, "gap_layer_effective_conductivities_shgc": [ - 0.00035129284831277155 + 0.00035129284831277296 ], "gap_layer_effective_conductivities_u": [ - 0.0003512928483127793 + 0.0003512928483127596 ], "layer_temperatures_shgc": [ - 258.0337800451432, - 258.29060294123707, - 282.27614038139654, - 282.5329632774904 + 258.03378004514246, + 258.2906029412363, + 282.27614038139575, + 282.5329632774895 ], "layer_temperatures_u": [ - 258.0337800451425, - 258.29060294123633, - 282.27614038139575, - 282.53296327748956 + 258.0337800451429, + 258.2906029412367, + 282.27614038139524, + 282.5329632774891 ], - "relative_heat_gain": 16.808685542789146, + "relative_heat_gain": 16.808685542791263, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.02130976102354288, - "system_effective_conductivity_u": 0.021309761023542727 + "system_effective_conductivity_shgc": 0.021309761023541516, + "system_effective_conductivity_u": 0.02130976102354096 } 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 47324a19..a1d9455d 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.763781430820366, - "U": 2.4489871695048975, + "SHGC": 0.7637814308202888, + "U": 2.4489871694941945, "gap_layer_effective_conductivities_shgc": [ - 0.0005017741878477931 + 0.0005017741878477139 ], "gap_layer_effective_conductivities_u": [ - 0.0004781276631525428 + 0.0004781276631537843 ], "layer_temperatures_shgc": [ - 308.33302992052495, - 308.41519072898154, - 306.156122061111, - 306.0343484429916 + 308.3330299205243, + 308.415190728981, + 306.1561220611119, + 306.03434844299255 ], "layer_temperatures_u": [ - 304.1890241183871, - 304.1293080133406, - 300.031679102583, - 299.97196299753654 + 304.189024118388, + 304.12930801334153, + 300.0316791025626, + 299.97196299751613 ], - "relative_heat_gain": 572.9263439776778, + "relative_heat_gain": 572.9263439776802, "solid_layer_effective_conductivities_shgc": [ - 0.9999999999999998, + 1.0, 1.0 ], "solid_layer_effective_conductivities_u": [ - 1.0, + 0.9999999999999999, 1.0 ], - "system_effective_conductivity_shgc": 0.18482359790593728, - "system_effective_conductivity_u": 0.028785781460665613 + "system_effective_conductivity_shgc": 0.18482359790593678, + "system_effective_conductivity_u": 0.028785781460344766 } 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 acbc02eb..5af8d0ac 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.160499427093698, + "U": 2.160499427093885, "gap_layer_effective_conductivities_shgc": [ - 0.00035129284831277155 + 0.00035129284831277296 ], "gap_layer_effective_conductivities_u": [ - 0.0003512928483127793 + 0.0003512928483127596 ], "layer_temperatures_shgc": [ - 258.0337800451432, - 258.29060294123707, - 282.27614038139654, - 282.5329632774904 + 258.03378004514246, + 258.2906029412363, + 282.27614038139575, + 282.5329632774895 ], "layer_temperatures_u": [ - 258.0337800451425, - 258.29060294123633, - 282.27614038139575, - 282.53296327748956 + 258.0337800451429, + 258.2906029412367, + 282.27614038139524, + 282.5329632774891 ], - "relative_heat_gain": 16.808685542789146, + "relative_heat_gain": 16.808685542791263, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0 @@ -28,6 +28,6 @@ 1.0, 1.0 ], - "system_effective_conductivity_shgc": 0.02130976102354288, - "system_effective_conductivity_u": 0.021309761023542727 + "system_effective_conductivity_shgc": 0.021309761023541516, + "system_effective_conductivity_u": 0.02130976102354096 } 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 412c1a98..eb4b2024 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 @@ -8,16 +8,16 @@ 0.000499594585544765 ], "layer_temperatures_shgc": [ - 308.3514114861345, - 308.43298141580783, - 306.1196183591554, - 305.9971626595719 + 308.35141148613286, + 308.4329814158061, + 306.1196183591543, + 305.9971626595708 ], "layer_temperatures_u": [ - 304.16678863409646, - 304.10569255698994, - 300.09351054753245, - 300.032414470426 + 304.16678863409265, + 304.10569255698596, + 300.09351054768086, + 300.0324144705741 ], "relative_heat_gain": 572.853690560922, "solid_layer_effective_conductivities_shgc": [ 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 d85ceecf..bce7970e 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 @@ -8,16 +8,16 @@ 0.0003721231854187515 ], "layer_temperatures_shgc": [ - 258.13814558891005, - 258.4042809985699, - 281.86822186103433, - 282.1343572706942 + 258.1381455889099, + 258.4042809985697, + 281.86822186103325, + 282.13435727069304 ], "layer_temperatures_u": [ - 258.13814558891005, - 258.4042809985699, - 281.8682218610342, - 282.13435727069407 + 258.13814558891056, + 258.40428099857036, + 281.86822186103535, + 282.1343572706952 ], "relative_heat_gain": 17.41817603030919, "solid_layer_effective_conductivities_shgc": [ 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 4df09a80..4c32616d 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 @@ -8,16 +8,16 @@ 0.000499594585544765 ], "layer_temperatures_shgc": [ - 308.40406654454557, - 308.4873958439812, - 306.1887558818612, - 306.065515011465 + 308.40406654454637, + 308.487395843982, + 306.18875588186285, + 306.06551501146663 ], "layer_temperatures_u": [ - 304.16678863409646, - 304.10569255698994, - 300.09351054753245, - 300.032414470426 + 304.16678863409265, + 304.10569255698596, + 300.09351054768086, + 300.0324144705741 ], "relative_heat_gain": 571.9101557101593, "solid_layer_effective_conductivities_shgc": [ 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 d85ceecf..bce7970e 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 @@ -8,16 +8,16 @@ 0.0003721231854187515 ], "layer_temperatures_shgc": [ - 258.13814558891005, - 258.4042809985699, - 281.86822186103433, - 282.1343572706942 + 258.1381455889099, + 258.4042809985697, + 281.86822186103325, + 282.13435727069304 ], "layer_temperatures_u": [ - 258.13814558891005, - 258.4042809985699, - 281.8682218610342, - 282.13435727069407 + 258.13814558891056, + 258.40428099857036, + 281.86822186103535, + 282.1343572706952 ], "relative_heat_gain": 17.41817603030919, "solid_layer_effective_conductivities_shgc": [ 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 bfd855d9..5dc68931 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.7648391597557764, - "U": 2.5055805100510424, + "SHGC": 0.7648391597557699, + "U": 2.5055805100442416, "gap_layer_effective_conductivities_shgc": [ - 0.0005229109321088954 + 0.0005229109321089528 ], "gap_layer_effective_conductivities_u": [ - 0.0004995945855267514 + 0.0004995945855272808 ], "layer_temperatures_shgc": [ - 308.26762743502513, - 308.3472456744318, - 306.1178726268879, - 305.9961071787943 + 308.26762743502616, + 308.3472456744329, + 306.117872626889, + 305.99610717879546 ], "layer_temperatures_u": [ - 304.1667886340939, - 304.10569255698726, - 300.0935105476226, - 300.0324144705159 + 304.1667886340946, + 304.1056925569879, + 300.09351054761737, + 300.03241447051073 ], - "relative_heat_gain": 574.1336760123055, + "relative_heat_gain": 574.1336760123053, "solid_layer_effective_conductivities_shgc": [ - 0.9999999999999998, + 1.0, 0.9999999999999999 ], "solid_layer_effective_conductivities_u": [ - 1.0, - 1.0 + 0.9999999999999999, + 0.9999999999999999 ], - "system_effective_conductivity_shgc": 0.18614007013234515, - "system_effective_conductivity_u": 0.030040004534754878 + "system_effective_conductivity_shgc": 0.18614007013268913, + "system_effective_conductivity_u": 0.030040004534664252 } 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 8ecc7b19..13a5ddf8 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.238840106722484, + "U": 2.238840106722624, "gap_layer_effective_conductivities_shgc": [ - 0.00037212318541874316 + 0.0003721231854187473 ], "gap_layer_effective_conductivities_u": [ - 0.0003721231854187213 + 0.0003721231854187436 ], "layer_temperatures_shgc": [ - 258.13814558891033, - 258.4042809985702, - 281.8682218610337, - 282.1343572706935 + 258.13814558891045, + 258.40428099857024, + 281.8682218610345, + 282.13435727069435 ], "layer_temperatures_u": [ - 258.13814558891005, - 258.4042809985699, - 281.86822186103433, - 282.1343572706942 + 258.1381455889098, + 258.4042809985696, + 281.8682218610337, + 282.1343572706935 ], - "relative_heat_gain": 17.418176030303464, + "relative_heat_gain": 17.4181760303027, "solid_layer_effective_conductivities_shgc": [ - 0.9999999999999998, - 1.0 - ], - "solid_layer_effective_conductivities_u": [ 1.0, 0.9999999999999998 ], - "system_effective_conductivity_shgc": 0.022545321024427734, - "system_effective_conductivity_u": 0.022545321024428387 + "solid_layer_effective_conductivities_u": [ + 0.9999999999999998, + 1.0 + ], + "system_effective_conductivity_shgc": 0.022545321024430007, + "system_effective_conductivity_u": 0.022545321024430173 } 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 b9ed684d..e88ad132 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.7635291048828974, - "U": 2.5055805100510424, + "SHGC": 0.7635291048828556, + "U": 2.5055805100442416, "gap_layer_effective_conductivities_shgc": [ - 0.0005231965314581029 + 0.0005231965314583297 ], "gap_layer_effective_conductivities_u": [ - 0.0004995945855267514 + 0.0004995945855272808 ], "layer_temperatures_shgc": [ - 308.32063303727455, - 308.40201607073607, - 306.186672833652, - 306.06412144053763 + 308.3206330372741, + 308.4020160707355, + 306.1866728336549, + 306.0641214405404 ], "layer_temperatures_u": [ - 304.1667886340939, - 304.10569255698726, - 300.0935105476226, - 300.0324144705159 + 304.1667886340946, + 304.1056925569879, + 300.09351054761737, + 300.03241447051073 ], - "relative_heat_gain": 573.1836603579028, + "relative_heat_gain": 573.1836603578968, "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.18897826596014103, - "system_effective_conductivity_u": 0.030040004534754878 + "system_effective_conductivity_shgc": 0.1889782659597786, + "system_effective_conductivity_u": 0.030040004534664252 } 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 8ecc7b19..13a5ddf8 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.238840106722484, + "U": 2.238840106722624, "gap_layer_effective_conductivities_shgc": [ - 0.00037212318541874316 + 0.0003721231854187473 ], "gap_layer_effective_conductivities_u": [ - 0.0003721231854187213 + 0.0003721231854187436 ], "layer_temperatures_shgc": [ - 258.13814558891033, - 258.4042809985702, - 281.8682218610337, - 282.1343572706935 + 258.13814558891045, + 258.40428099857024, + 281.8682218610345, + 282.13435727069435 ], "layer_temperatures_u": [ - 258.13814558891005, - 258.4042809985699, - 281.86822186103433, - 282.1343572706942 + 258.1381455889098, + 258.4042809985696, + 281.8682218610337, + 282.1343572706935 ], - "relative_heat_gain": 17.418176030303464, + "relative_heat_gain": 17.4181760303027, "solid_layer_effective_conductivities_shgc": [ - 0.9999999999999998, - 1.0 - ], - "solid_layer_effective_conductivities_u": [ 1.0, 0.9999999999999998 ], - "system_effective_conductivity_shgc": 0.022545321024427734, - "system_effective_conductivity_u": 0.022545321024428387 + "solid_layer_effective_conductivities_u": [ + 0.9999999999999998, + 1.0 + ], + "system_effective_conductivity_shgc": 0.022545321024430007, + "system_effective_conductivity_u": 0.022545321024430173 } diff --git a/test/expected_results/NFRC_20748/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_20748/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 01fb8efa..ce5adc94 100644 --- a/test/expected_results/NFRC_20748/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_20748/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -8,8 +8,8 @@ 314.72664004757905 ], "layer_temperatures_u": [ - 302.64686654219923, - 302.3482814943736 + 302.6468665421993, + 302.34828149437374 ], "relative_heat_gain": 243.03785761835803, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/NFRC_20748/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_20748/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index d1030cd4..ee113cd5 100644 --- a/test/expected_results/NFRC_20748/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_20748/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -8,8 +8,8 @@ 314.87913746070853 ], "layer_temperatures_u": [ - 302.64686654219923, - 302.3482814943736 + 302.6468665421993, + 302.34828149437374 ], "relative_heat_gain": 244.48184054543745, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/NFRC_20748/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_20748/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index e331198a..824129a3 100644 --- a/test/expected_results/NFRC_20748/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_20748/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,6 +1,6 @@ { - "SHGC": 0.2809477979880176, - "U": 4.754538978113281, + "SHGC": 0.2809477979880168, + "U": 4.754538978113221, "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ @@ -11,7 +11,7 @@ 302.64686654219923, 302.3482814943736 ], - "relative_heat_gain": 240.7259060664379, + "relative_heat_gain": 240.72590606643791, "solid_layer_effective_conductivities_shgc": [ 1.0 ], @@ -19,5 +19,5 @@ 1.0 ], "system_effective_conductivity_shgc": 131.46380350116183, - "system_effective_conductivity_u": 0.9999999999996622 + "system_effective_conductivity_u": 0.9999999999994728 } diff --git a/test/expected_results/NFRC_20748/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_20748/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index 00890c30..e4f9bd44 100644 --- a/test/expected_results/NFRC_20748/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_20748/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,6 +1,6 @@ { "SHGC": 0.0, - "U": 5.6104918536054935, + "U": 5.610491853605495, "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ diff --git a/test/expected_results/NFRC_20748/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_20748/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 29834014..4337e8dc 100644 --- a/test/expected_results/NFRC_20748/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_20748/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,6 +1,6 @@ { - "SHGC": 0.2828967362851641, - "U": 4.754538978113281, + "SHGC": 0.28289673628516326, + "U": 4.754538978113221, "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ @@ -11,7 +11,7 @@ 302.64686654219923, 302.3482814943736 ], - "relative_heat_gain": 242.13922235569893, + "relative_heat_gain": 242.13922235569896, "solid_layer_effective_conductivities_shgc": [ 1.0 ], @@ -19,5 +19,5 @@ 1.0 ], "system_effective_conductivity_shgc": 204.4626909731806, - "system_effective_conductivity_u": 0.9999999999996622 + "system_effective_conductivity_u": 0.9999999999994728 } diff --git a/test/expected_results/NFRC_20748/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_20748/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index 00890c30..e4f9bd44 100644 --- a/test/expected_results/NFRC_20748/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_20748/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,6 +1,6 @@ { "SHGC": 0.0, - "U": 5.6104918536054935, + "U": 5.610491853605495, "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ diff --git a/test/expected_results/NFRC_21467/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_21467/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 552dfdba..3b80ac69 100644 --- a/test/expected_results/NFRC_21467/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_21467/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -8,8 +8,8 @@ 303.92791844431935 ], "layer_temperatures_u": [ - 303.05280043260797, - 302.9243012033087 + 303.05280043260746, + 302.9243012033082 ], "relative_heat_gain": 668.9480925758775, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/NFRC_21467/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_21467/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index a2cdf7e7..3ad47987 100644 --- a/test/expected_results/NFRC_21467/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_21467/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -4,12 +4,12 @@ "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ - 304.24789732106956, - 304.14095475650447 + 304.2478973210691, + 304.1409547565041 ], "layer_temperatures_u": [ - 303.05280043260797, - 302.9243012033087 + 303.05280043260746, + 302.9243012033082 ], "relative_heat_gain": 671.0884533616224, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/NFRC_21467/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_21467/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 81b2a2a0..28945e41 100644 --- a/test/expected_results/NFRC_21467/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_21467/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,6 +1,6 @@ { - "SHGC": 0.8673496495259282, - "U": 5.354134554138791, + "SHGC": 0.8673496495259286, + "U": 5.354134554138625, "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ @@ -8,7 +8,7 @@ 303.85551330209256 ], "layer_temperatures_u": [ - 303.05280043260746, + 303.0528004326075, 302.9243012033082 ], "relative_heat_gain": 670.6332057804407, @@ -19,5 +19,5 @@ 1.0 ], "system_effective_conductivity_shgc": 1.3521862286575934, - "system_effective_conductivity_u": 1.0000000000003753 + "system_effective_conductivity_u": 1.0000000000003713 } diff --git a/test/expected_results/NFRC_21467/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_21467/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index ed421118..823d9dc8 100644 --- a/test/expected_results/NFRC_21467/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_21467/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,6 +1,6 @@ { "SHGC": 0.0, - "U": 5.932428462240959, + "U": 5.93242846224096, "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ diff --git a/test/expected_results/NFRC_21467/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_21467/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 2496ff80..246380a6 100644 --- a/test/expected_results/NFRC_21467/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_21467/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,14 +1,14 @@ { - "SHGC": 0.8703023440535796, - "U": 5.354134554138791, + "SHGC": 0.8703023440535802, + "U": 5.354134554138625, "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ - 304.17693449840635, - 304.068718693474 + 304.17693449840607, + 304.0687186934737 ], "layer_temperatures_u": [ - 303.05280043260746, + 303.0528004326075, 302.9243012033082 ], "relative_heat_gain": 672.7744183982502, @@ -19,5 +19,5 @@ 1.0 ], "system_effective_conductivity_shgc": 1.4482386333269552, - "system_effective_conductivity_u": 1.0000000000003753 + "system_effective_conductivity_u": 1.0000000000003713 } diff --git a/test/expected_results/NFRC_21467/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_21467/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index ed421118..823d9dc8 100644 --- a/test/expected_results/NFRC_21467/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_21467/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,6 +1,6 @@ { "SHGC": 0.0, - "U": 5.932428462240959, + "U": 5.93242846224096, "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ diff --git a/test/expected_results/NFRC_6046/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_6046/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 9905ca16..2361731a 100644 --- a/test/expected_results/NFRC_6046/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_6046/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -4,8 +4,8 @@ "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ - 315.17378880374423, - 315.59142786550075 + 315.1737888037442, + 315.5914278655007 ], "layer_temperatures_u": [ 304.25907656257755, diff --git a/test/expected_results/NFRC_9223/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_9223/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index a0e3a5ff..445cbc88 100644 --- a/test/expected_results/NFRC_9223/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_9223/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -4,12 +4,12 @@ "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ - 314.0130090989203, - 314.099150442425 + 314.0130090989198, + 314.0991504424245 ], "layer_temperatures_u": [ - 303.24467208268845, - 303.1289397384053 + 303.2446720826882, + 303.12893973840505 ], "relative_heat_gain": 179.76477778801927, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/NFRC_9223/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_9223/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index ce4ae0ad..cd3a3850 100644 --- a/test/expected_results/NFRC_9223/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_9223/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -8,8 +8,8 @@ 314.21936865628 ], "layer_temperatures_u": [ - 303.24467208268845, - 303.1289397384053 + 303.2446720826882, + 303.12893973840505 ], "relative_heat_gain": 180.76079584408095, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/NFRC_9223/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/NFRC_9223/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 8098f556..713e57f9 100644 --- a/test/expected_results/NFRC_9223/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_9223/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,6 +1,6 @@ { - "SHGC": 0.19701751659224415, - "U": 4.849662367129124, + "SHGC": 0.1970175165922572, + "U": 4.849662367128987, "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ @@ -8,16 +8,16 @@ 313.7012977649693 ], "layer_temperatures_u": [ - 303.24467208268817, - 303.128939738405 + 303.24467208268766, + 303.12893973840454 ], - "relative_heat_gain": 180.6020412829339, + "relative_heat_gain": 180.60204128293384, "solid_layer_effective_conductivities_shgc": [ 1.0 ], "solid_layer_effective_conductivities_u": [ 1.0000000000000002 ], - "system_effective_conductivity_shgc": 4.604151013017961, - "system_effective_conductivity_u": 0.9999999999994368 + "system_effective_conductivity_shgc": 4.604151013017974, + "system_effective_conductivity_u": 1.000000000000362 } diff --git a/test/expected_results/NFRC_9223/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/NFRC_9223/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index 465f4a72..29466ca9 100644 --- a/test/expected_results/NFRC_9223/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/NFRC_9223/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,6 +1,6 @@ { "SHGC": 0.0, - "U": 5.45810218052835, + "U": 5.458102180528352, "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ diff --git a/test/expected_results/NFRC_9223/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/NFRC_9223/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index ba9afabc..cddce78b 100644 --- a/test/expected_results/NFRC_9223/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/NFRC_9223/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,17 +1,17 @@ { - "SHGC": 0.19836528912966167, - "U": 4.849662367129124, + "SHGC": 0.19836528912966445, + "U": 4.849662367128987, "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ - 313.73817033815453, - 313.8192862102861 + 313.7381703381543, + 313.8192862102859 ], "layer_temperatures_u": [ - 303.24467208268817, - 303.128939738405 + 303.24467208268766, + 303.12893973840454 ], - "relative_heat_gain": 181.5794087471367, + "relative_heat_gain": 181.57940874713654, "solid_layer_effective_conductivities_shgc": [ 1.0 ], @@ -19,5 +19,5 @@ 1.0000000000000002 ], "system_effective_conductivity_shgc": 4.520499798838874, - "system_effective_conductivity_u": 0.9999999999994368 + "system_effective_conductivity_u": 1.000000000000362 } diff --git a/test/expected_results/NFRC_9223/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/NFRC_9223/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index 465f4a72..29466ca9 100644 --- a/test/expected_results/NFRC_9223/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/NFRC_9223/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,6 +1,6 @@ { "SHGC": 0.0, - "U": 5.45810218052835, + "U": 5.458102180528352, "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ diff --git a/test/expected_results/PV_single_layer/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/PV_single_layer/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index ea2638b9..376b28f9 100644 --- a/test/expected_results/PV_single_layer/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/PV_single_layer/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -8,8 +8,8 @@ 320.6407880341643 ], "layer_temperatures_u": [ - 303.05518474126666, - 302.92520195430654 + 303.0551847412664, + 302.9252019543062 ], "relative_heat_gain": 338.2109139617804, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/PV_single_layer/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/PV_single_layer/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index ee27b5fb..d92166d6 100644 --- a/test/expected_results/PV_single_layer/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/PV_single_layer/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -4,12 +4,12 @@ "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ - 320.6319968784225, - 320.80647867100026 + 320.63199687842246, + 320.8064786710002 ], "layer_temperatures_u": [ - 303.05518474126666, - 302.92520195430654 + 303.0551847412664, + 302.9252019543062 ], "relative_heat_gain": 334.9980539211686, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/PV_single_layer/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/PV_single_layer/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 43f3feaf..83f97ea0 100644 --- a/test/expected_results/PV_single_layer/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/PV_single_layer/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,17 +1,17 @@ { - "SHGC": 0.4089772800612095, - "U": 5.330658914047998, + "SHGC": 0.4089772800612112, + "U": 5.330658914047882, "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ - 320.45244575515454, - 320.62395102593285 + 320.4524457551553, + 320.6239510259336 ], "layer_temperatures_u": [ 303.05518474126626, 302.9252019543061 ], - "relative_heat_gain": 338.05156771976107, + "relative_heat_gain": 338.0515677197613, "solid_layer_effective_conductivities_shgc": [ 0.9999999999999999 ], @@ -19,5 +19,5 @@ 0.9999999999999998 ], "system_effective_conductivity_shgc": 3.665920103006363, - "system_effective_conductivity_u": 0.999999999999811 + "system_effective_conductivity_u": 0.9999999999998305 } diff --git a/test/expected_results/PV_single_layer/full_spectrum/theta=0_phi=0/thermal_U_Environment.json b/test/expected_results/PV_single_layer/full_spectrum/theta=0_phi=0/thermal_U_Environment.json index cdc2c8f4..1154e4d3 100644 --- a/test/expected_results/PV_single_layer/full_spectrum/theta=0_phi=0/thermal_U_Environment.json +++ b/test/expected_results/PV_single_layer/full_spectrum/theta=0_phi=0/thermal_U_Environment.json @@ -1,6 +1,6 @@ { "SHGC": 0.0, - "U": 5.912514560818291, + "U": 5.912514560818292, "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ diff --git a/test/expected_results/PV_single_layer/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/PV_single_layer/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 221c905d..277af5ba 100644 --- a/test/expected_results/PV_single_layer/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/PV_single_layer/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,23 +1,23 @@ { - "SHGC": 0.40449539341372065, - "U": 5.330658914047998, + "SHGC": 0.40449539341372076, + "U": 5.330658914047882, "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ - 320.61732936178174, - 320.7915680815263 + 320.61732936178134, + 320.7915680815259 ], "layer_temperatures_u": [ 303.05518474126626, 302.9252019543061 ], - "relative_heat_gain": 334.80142716126085, + "relative_heat_gain": 334.8014271612598, "solid_layer_effective_conductivities_shgc": [ 1.0 ], "solid_layer_effective_conductivities_u": [ 0.9999999999999998 ], - "system_effective_conductivity_shgc": 3.6383942455847067, - "system_effective_conductivity_u": 0.999999999999811 + "system_effective_conductivity_shgc": 3.6383942455847165, + "system_effective_conductivity_u": 0.9999999999998305 } diff --git a/test/expected_results/PV_single_layer/full_spectrum/theta=15_phi=270/thermal_U_Environment.json b/test/expected_results/PV_single_layer/full_spectrum/theta=15_phi=270/thermal_U_Environment.json index cdc2c8f4..1154e4d3 100644 --- a/test/expected_results/PV_single_layer/full_spectrum/theta=15_phi=270/thermal_U_Environment.json +++ b/test/expected_results/PV_single_layer/full_spectrum/theta=15_phi=270/thermal_U_Environment.json @@ -1,6 +1,6 @@ { "SHGC": 0.0, - "U": 5.912514560818291, + "U": 5.912514560818292, "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ diff --git a/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index d9c4d523..a30f3cc4 100644 --- a/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -8,8 +8,8 @@ 314.43988815367356 ], "layer_temperatures_u": [ - 303.0716508774539, - 302.89743583168035 + 303.0716508774535, + 302.89743583168 ], "relative_heat_gain": 297.7855382478254, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index d1085592..a9ba4f75 100644 --- a/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/SEATEX_Midnight/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -8,8 +8,8 @@ 314.4522440812627 ], "layer_temperatures_u": [ - 303.0716508774539, - 302.89743583168035 + 303.0716508774535, + 302.89743583168 ], "relative_heat_gain": 296.0592589537518, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/SEATEX_Midnight/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/SEATEX_Midnight/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index a6bacb9d..ff948709 100644 --- a/test/expected_results/SEATEX_Midnight/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/SEATEX_Midnight/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,6 +1,6 @@ { - "SHGC": 0.34933590220471716, - "U": 5.714238923064306, + "SHGC": 0.34933590220471933, + "U": 5.714238923063876, "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ @@ -9,15 +9,15 @@ ], "layer_temperatures_u": [ 303.0716508774541, - 302.89743583168064 + 302.8974358316807 ], - "relative_heat_gain": 297.78553824782506, + "relative_heat_gain": 297.7855382478247, "solid_layer_effective_conductivities_shgc": [ 0.09857480784558809 ], "solid_layer_effective_conductivities_u": [ - 0.12595167866902415 + 0.12595167866902104 ], "system_effective_conductivity_shgc": 0.761270483144126, - "system_effective_conductivity_u": 0.12595167866901408 + "system_effective_conductivity_u": 0.1259516786690594 } diff --git a/test/expected_results/SEATEX_Midnight/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/SEATEX_Midnight/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index db8494cf..37b32522 100644 --- a/test/expected_results/SEATEX_Midnight/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/SEATEX_Midnight/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,6 +1,6 @@ { - "SHGC": 0.3469553934301981, - "U": 5.714238923064306, + "SHGC": 0.3469553934302002, + "U": 5.714238923063876, "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ @@ -9,15 +9,15 @@ ], "layer_temperatures_u": [ 303.0716508774541, - 302.89743583168064 + 302.8974358316807 ], - "relative_heat_gain": 296.0592589537514, + "relative_heat_gain": 296.059258953751, "solid_layer_effective_conductivities_shgc": [ 0.09862766207478524 ], "solid_layer_effective_conductivities_u": [ - 0.12595167866902415 + 0.12595167866902104 ], "system_effective_conductivity_shgc": 0.7596234157203511, - "system_effective_conductivity_u": 0.12595167866901408 + "system_effective_conductivity_u": 0.1259516786690594 } 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 6a05db50..25094d42 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 @@ -8,16 +8,16 @@ 0.08777468757686711 ], "layer_temperatures_shgc": [ - 314.12262285926283, - 314.122662676157, - 305.56034460822923, - 305.36979470457607 + 314.1226228570718, + 314.1226626739659, + 305.5603446071659, + 305.3697947035249 ], "layer_temperatures_u": [ - 304.01872468477285, - 304.0187098908228, - 300.5906124500185, - 300.51832402555726 + 304.0187246825556, + 304.0187098886055, + 300.590612448767, + 300.5183240243162 ], "relative_heat_gain": 65.69279231856943, "solid_layer_effective_conductivities_shgc": [ 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 01320b3b..19c91baf 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 @@ -8,16 +8,16 @@ 0.06935073635082742 ], "layer_temperatures_shgc": [ - 258.8313465676967, - 258.83141497129895, - 278.88146865514375, - 279.2161291080638 - ], - "layer_temperatures_u": [ 258.8313465676968, 258.83141497129907, - 278.881468655143, - 279.21612910806306 + 278.8814686551443, + 279.21612910806437 + ], + "layer_temperatures_u": [ + 258.83134656769664, + 258.8314149712989, + 278.8814686551442, + 279.21612910806425 ], "relative_heat_gain": 21.90304058671527, "solid_layer_effective_conductivities_shgc": [ 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 e415d2f6..c00017e8 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 @@ -8,16 +8,16 @@ 0.08777468757686711 ], "layer_temperatures_shgc": [ - 314.12372573815975, - 314.1237655617978, - 305.561229122891, - 305.37066492474804 + 314.12372573791197, + 314.12376556155004, + 305.5612291227693, + 305.3706649246324 ], "layer_temperatures_u": [ - 304.01872468477285, - 304.0187098908228, - 300.5906124500185, - 300.51832402555726 + 304.0187246825556, + 304.0187098886055, + 300.590612448767, + 300.5183240243162 ], "relative_heat_gain": 65.61794950523233, "solid_layer_effective_conductivities_shgc": [ 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 01320b3b..19c91baf 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 @@ -8,16 +8,16 @@ 0.06935073635082742 ], "layer_temperatures_shgc": [ - 258.8313465676967, - 258.83141497129895, - 278.88146865514375, - 279.2161291080638 - ], - "layer_temperatures_u": [ 258.8313465676968, 258.83141497129907, - 278.881468655143, - 279.21612910806306 + 278.8814686551443, + 279.21612910806437 + ], + "layer_temperatures_u": [ + 258.83134656769664, + 258.8314149712989, + 278.8814686551442, + 279.21612910806425 ], "relative_heat_gain": 21.90304058671527, "solid_layer_effective_conductivities_shgc": [ 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 f0a6603e..3c6b7eda 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.057801088055073044, - "U": 2.9645842413860044, + "SHGC": 0.057801088054421856, + "U": 2.9645842418938915, "gap_layer_effective_conductivities_shgc": [ - 0.09212440928358841 + 0.09212440928130339 ], "gap_layer_effective_conductivities_u": [ - 0.08777468755576874 + 0.08777468754969073 ], "layer_temperatures_shgc": [ - 313.9288075404715, - 313.92884630387766, - 305.4641652436831, - 305.2760026882268 + 313.9288075399408, + 313.928846303347, + 305.46416524342055, + 305.2760026879762 ], "layer_temperatures_u": [ - 304.0187246831789, - 304.0187098892289, - 300.59061244909594, - 300.51832402463765 + 304.01872468277116, + 304.01870988882115, + 300.59061244890233, + 300.5183240244497 ], - "relative_heat_gain": 64.980219940045, + "relative_heat_gain": 64.98021994411573, "solid_layer_effective_conductivities_shgc": [ - 158.64482779991627, + 158.64482780068798, 1.0 ], "solid_layer_effective_conductivities_u": [ - 159.99230379398773, + 159.9923037938442, 1.0 ], - "system_effective_conductivity_shgc": 0.1137595317085968, - "system_effective_conductivity_u": 0.1073768083696384 + "system_effective_conductivity_shgc": 0.11375953170714205, + "system_effective_conductivity_u": 0.10737680836917625 } 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 2d530f13..d3161f5a 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.815300846621398, + "U": 2.815300846621538, "gap_layer_effective_conductivities_shgc": [ - 0.06935073635083192 + 0.06935073635083412 ], "gap_layer_effective_conductivities_u": [ - 0.06935073635082983 + 0.06935073635082996 ], "layer_temperatures_shgc": [ - 258.83134656769744, - 258.83141497129964, - 278.8814686551432, - 279.2161291080632 + 258.83134656769687, + 258.83141497129907, + 278.88146865514335, + 279.2161291080634 ], "layer_temperatures_u": [ - 258.8313465676967, - 258.83141497129895, - 278.88146865514375, - 279.2161291080638 + 258.8313465676972, + 258.83141497129947, + 278.88146865514057, + 279.2161291080606 ], - "relative_heat_gain": 21.903040586715363, + "relative_heat_gain": 21.903040586715612, "solid_layer_effective_conductivities_shgc": [ - 159.60773210779746, + 159.6077321077975, 1.0 ], "solid_layer_effective_conductivities_u": [ - 159.60773210679403, + 159.60773210779743, 1.0 ], - "system_effective_conductivity_shgc": 0.085360667061706, - "system_effective_conductivity_u": 0.08536066706171098 + "system_effective_conductivity_shgc": 0.08536066706170155, + "system_effective_conductivity_u": 0.08536066706170184 } 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 bcb0ed87..0b053dc0 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.05769755211800518, - "U": 2.9645842413860044, + "SHGC": 0.057697552120433836, + "U": 2.9645842418938915, "gap_layer_effective_conductivities_shgc": [ - 0.09212505302069529 + 0.09212505303129206 ], "gap_layer_effective_conductivities_u": [ - 0.08777468755576874 + 0.08777468754969073 ], "layer_temperatures_shgc": [ - 313.9298979089081, - 313.92993667904557, - 305.4650691935829, - 305.2768924737705 + 313.92989790689813, + 313.92993667703564, + 305.4650691926072, + 305.2768924727872 ], "layer_temperatures_u": [ - 304.0187246831789, - 304.0187098892289, - 300.59061244909594, - 300.51832402463765 + 304.01872468277116, + 304.01870988882115, + 300.59061244890233, + 300.5183240244497 ], - "relative_heat_gain": 64.90513853961579, + "relative_heat_gain": 64.90513854223224, "solid_layer_effective_conductivities_shgc": [ - 158.64493016866226, + 158.6449301683979, 0.9999999999999999 ], "solid_layer_effective_conductivities_u": [ - 159.99230379398773, + 159.9923037938442, 1.0 ], - "system_effective_conductivity_shgc": 0.11377068246170295, - "system_effective_conductivity_u": 0.1073768083696384 + "system_effective_conductivity_shgc": 0.1137706824530823, + "system_effective_conductivity_u": 0.10737680836917625 } 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 2d530f13..d3161f5a 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.815300846621398, + "U": 2.815300846621538, "gap_layer_effective_conductivities_shgc": [ - 0.06935073635083192 + 0.06935073635083412 ], "gap_layer_effective_conductivities_u": [ - 0.06935073635082983 + 0.06935073635082996 ], "layer_temperatures_shgc": [ - 258.83134656769744, - 258.83141497129964, - 278.8814686551432, - 279.2161291080632 + 258.83134656769687, + 258.83141497129907, + 278.88146865514335, + 279.2161291080634 ], "layer_temperatures_u": [ - 258.8313465676967, - 258.83141497129895, - 278.88146865514375, - 279.2161291080638 + 258.8313465676972, + 258.83141497129947, + 278.88146865514057, + 279.2161291080606 ], - "relative_heat_gain": 21.903040586715363, + "relative_heat_gain": 21.903040586715612, "solid_layer_effective_conductivities_shgc": [ - 159.60773210779746, + 159.6077321077975, 1.0 ], "solid_layer_effective_conductivities_u": [ - 159.60773210679403, + 159.60773210779743, 1.0 ], - "system_effective_conductivity_shgc": 0.085360667061706, - "system_effective_conductivity_u": 0.08536066706171098 + "system_effective_conductivity_shgc": 0.08536066706170155, + "system_effective_conductivity_u": 0.08536066706170184 } 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 99ab4cbf..cab12585 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 @@ -8,16 +8,16 @@ 0.10573601232800196 ], "layer_temperatures_shgc": [ - 317.2731884616027, - 317.63675453381654, - 308.12606039663365, - 307.92945491830784 + 317.2731884616028, + 317.63675453381677, + 308.12606039663376, + 307.929454918308 ], "layer_temperatures_u": [ - 304.3216690864252, - 304.2542967224531, - 301.0683027154551, - 300.98510485072075 + 304.32166908642523, + 304.2542967224532, + 301.0683027154592, + 300.9851048507248 ], "relative_heat_gain": 410.6829068074956, "solid_layer_effective_conductivities_shgc": [ 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 fcf60e2e..eab64620 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 @@ -8,16 +8,16 @@ 0.07594394698258924 ], "layer_temperatures_shgc": [ - 257.6057068454707, + 257.60570684547065, 257.9109151298144, - 276.7578480002485, - 277.141508416042 + 276.7578480002483, + 277.1415084160418 ], "layer_temperatures_u": [ - 257.60570684547065, - 257.9109151298144, - 276.75784800024786, - 277.14150841604135 + 257.6057068454703, + 257.910915129814, + 276.7578480002452, + 277.1415084160386 ], "relative_heat_gain": 25.110016989804688, "solid_layer_effective_conductivities_shgc": [ 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 8ca3c459..0a049a01 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 @@ -8,16 +8,16 @@ 0.10573601232800196 ], "layer_temperatures_shgc": [ - 322.3208655185602, - 322.8281650388187, - 309.158297477391, - 308.9176147341868 + 322.320865518561, + 322.8281650388195, + 309.15829747739247, + 308.9176147341883 ], "layer_temperatures_u": [ - 304.3216690864252, - 304.2542967224531, - 301.0683027154551, - 300.98510485072075 + 304.32166908642523, + 304.2542967224532, + 301.0683027154592, + 300.9851048507248 ], "relative_heat_gain": 317.08456103878376, "solid_layer_effective_conductivities_shgc": [ 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 fcf60e2e..eab64620 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 @@ -8,16 +8,16 @@ 0.07594394698258924 ], "layer_temperatures_shgc": [ - 257.6057068454707, + 257.60570684547065, 257.9109151298144, - 276.7578480002485, - 277.141508416042 + 276.7578480002483, + 277.1415084160418 ], "layer_temperatures_u": [ - 257.60570684547065, - 257.9109151298144, - 276.75784800024786, - 277.14150841604135 + 257.6057068454703, + 257.910915129814, + 276.7578480002452, + 277.1415084160386 ], "relative_heat_gain": 25.110016989804688, "solid_layer_effective_conductivities_shgc": [ 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 99b9e0c5..d2e53aeb 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.5304977778762587, - "U": 3.4119858136166505, + "SHGC": 0.5304977778762487, + "U": 3.4119858136154746, "gap_layer_effective_conductivities_shgc": [ - 0.06535359237072948 + 0.06535359237073275 ], "gap_layer_effective_conductivities_u": [ - 0.1057360123278273 + 0.10573601232784297 ], "layer_temperatures_shgc": [ - 317.22025661052754, - 317.58154431844986, - 308.04392545676126, - 307.8478538824532 + 317.220256610527, + 317.58154431844935, + 308.0439254567561, + 307.84785388244796 ], "layer_temperatures_u": [ - 304.3216690864255, - 304.25429672245355, - 301.06830271545897, - 300.9851048507245 + 304.3216690864257, + 304.2542967224537, + 301.0683027154571, + 300.9851048507227 ], - "relative_heat_gain": 411.24760372441636, + "relative_heat_gain": 411.2476037244203, "solid_layer_effective_conductivities_shgc": [ - 0.39005304765188337, + 0.39005304765187865, 0.9999999999999999 ], "solid_layer_effective_conductivities_u": [ - 0.5468818226313974, + 0.5468818226314116, 1.0 ], - "system_effective_conductivity_shgc": 0.15540386982720306, - "system_effective_conductivity_u": 0.14129384711859103 + "system_effective_conductivity_shgc": 0.1554038698272837, + "system_effective_conductivity_u": 0.1412938471186312 } 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 04abab1e..f36c2604 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.2275086105154496, + "U": 3.2275086105154784, "gap_layer_effective_conductivities_shgc": [ - 0.07594394698258783 + 0.07594394698258539 ], "gap_layer_effective_conductivities_u": [ - 0.0759439469825814 + 0.07594394698258085 ], "layer_temperatures_shgc": [ - 257.6057068454705, - 257.91091512981416, - 276.75784800024553, - 277.14150841603896 + 257.6057068454707, + 257.91091512981444, + 276.75784800024815, + 277.14150841604163 ], "layer_temperatures_u": [ - 257.60570684547065, - 257.9109151298144, - 276.75784800024746, - 277.1415084160409 + 257.60570684547054, + 257.91091512981427, + 276.75784800024815, + 277.1415084160416 ], - "relative_heat_gain": 25.110016989809626, + "relative_heat_gain": 25.11001698981044, "solid_layer_effective_conductivities_shgc": [ - 0.5020877735343626, + 0.5020877735343522, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.5020877735343807, + 0.502087773534345, 1.0 ], - "system_effective_conductivity_shgc": 0.11128235759533162, - "system_effective_conductivity_u": 0.11128235759535648 + "system_effective_conductivity_shgc": 0.1112823575953128, + "system_effective_conductivity_u": 0.11128235759535303 } 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 90c88c2c..f7fea71d 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.40122153901779567, - "U": 3.4119858136166505, + "SHGC": 0.40122153901780394, + "U": 3.4119858136154746, "gap_layer_effective_conductivities_shgc": [ - 0.06724717139183657 + 0.06724717139183811 ], "gap_layer_effective_conductivities_u": [ - 0.1057360123278273 + 0.10573601232784297 ], "layer_temperatures_shgc": [ - 322.2756945325059, - 322.78120676693095, - 309.1009137710485, - 308.8606785159704 + 322.27569453250453, + 322.78120676692936, + 309.1009137710475, + 308.86067851596937 ], "layer_temperatures_u": [ - 304.3216690864255, - 304.25429672245355, - 301.06830271545897, - 300.9851048507245 + 304.3216690864257, + 304.2542967224537, + 301.0683027154571, + 300.9851048507227 ], - "relative_heat_gain": 317.50004154533735, + "relative_heat_gain": 317.5000415453457, "solid_layer_effective_conductivities_shgc": [ - 0.3903297088480047, + 0.3903297088480061, 0.9999999999999999 ], "solid_layer_effective_conductivities_u": [ - 0.5468818226313974, + 0.5468818226314116, 1.0 ], - "system_effective_conductivity_shgc": 0.12014693449642241, - "system_effective_conductivity_u": 0.14129384711859103 + "system_effective_conductivity_shgc": 0.12014693449643318, + "system_effective_conductivity_u": 0.1412938471186312 } 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 04abab1e..f36c2604 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.2275086105154496, + "U": 3.2275086105154784, "gap_layer_effective_conductivities_shgc": [ - 0.07594394698258783 + 0.07594394698258539 ], "gap_layer_effective_conductivities_u": [ - 0.0759439469825814 + 0.07594394698258085 ], "layer_temperatures_shgc": [ - 257.6057068454705, - 257.91091512981416, - 276.75784800024553, - 277.14150841603896 + 257.6057068454707, + 257.91091512981444, + 276.75784800024815, + 277.14150841604163 ], "layer_temperatures_u": [ - 257.60570684547065, - 257.9109151298144, - 276.75784800024746, - 277.1415084160409 + 257.60570684547054, + 257.91091512981427, + 276.75784800024815, + 277.1415084160416 ], - "relative_heat_gain": 25.110016989809626, + "relative_heat_gain": 25.11001698981044, "solid_layer_effective_conductivities_shgc": [ - 0.5020877735343626, + 0.5020877735343522, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.5020877735343807, + 0.502087773534345, 1.0 ], - "system_effective_conductivity_shgc": 0.11128235759533162, - "system_effective_conductivity_u": 0.11128235759535648 + "system_effective_conductivity_shgc": 0.1112823575953128, + "system_effective_conductivity_u": 0.11128235759535303 } 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 6578f7f9..85afc258 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 @@ -8,16 +8,16 @@ 0.10679983500182168 ], "layer_temperatures_shgc": [ - 313.13412954129336, - 313.29191056364937, - 306.8840815131106, - 306.7423120519073 + 313.1341295412941, + 313.29191056365005, + 306.8840815131101, + 306.7423120519067 ], "layer_temperatures_u": [ - 304.4672993159638, - 304.4327718522484, - 301.174390431332, - 301.0887504290042 + 304.4672993159641, + 304.4327718522486, + 301.1743904313361, + 301.08875042900837 ], "relative_heat_gain": 525.3759522462149, "solid_layer_effective_conductivities_shgc": [ 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 6d8c1322..5e7e8f99 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 @@ -9,15 +9,15 @@ ], "layer_temperatures_shgc": [ 257.1124918928292, - 257.27299263438965, - 276.42501734628155, - 276.8163731195991 + 257.27299263438977, + 276.4250173462814, + 276.81637311959895 ], "layer_temperatures_u": [ - 257.11249189282984, - 257.2729926343903, - 276.4250173462848, - 276.8163731196023 + 257.1124918928292, + 257.2729926343896, + 276.42501734627956, + 276.8163731195971 ], "relative_heat_gain": 25.613666963107544, "solid_layer_effective_conductivities_shgc": [ 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 fc2ad699..7325bb10 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 @@ -8,16 +8,16 @@ 0.10679983500182168 ], "layer_temperatures_shgc": [ - 315.1650548788799, - 315.3605167583372, - 307.06404350540464, - 306.91018170360167 + 315.16505487887895, + 315.3605167583362, + 307.0640435054049, + 306.9101817036019 ], "layer_temperatures_u": [ - 304.4672993159638, - 304.4327718522484, - 301.174390431332, - 301.0887504290042 + 304.4672993159641, + 304.4327718522486, + 301.1743904313361, + 301.08875042900837 ], "relative_heat_gain": 476.04805688412205, "solid_layer_effective_conductivities_shgc": [ 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 6d8c1322..5e7e8f99 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 @@ -9,15 +9,15 @@ ], "layer_temperatures_shgc": [ 257.1124918928292, - 257.27299263438965, - 276.42501734628155, - 276.8163731195991 + 257.27299263438977, + 276.4250173462814, + 276.81637311959895 ], "layer_temperatures_u": [ - 257.11249189282984, - 257.2729926343903, - 276.4250173462848, - 276.8163731196023 + 257.1124918928292, + 257.2729926343896, + 276.42501734627956, + 276.8163731195971 ], "relative_heat_gain": 25.613666963107544, "solid_layer_effective_conductivities_shgc": [ 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 fc7748ea..c4ffdd68 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.6877111307421737, - "U": 3.512139090988507, + "SHGC": 0.6877111307421611, + "U": 3.5121390909901686, "gap_layer_effective_conductivities_shgc": [ - 0.041865220447362794 + 0.0418652204473706 ], "gap_layer_effective_conductivities_u": [ - 0.10679983500162636 + 0.10679983500163417 ], "layer_temperatures_shgc": [ - 313.097386198817, - 313.2539455249595, - 306.77826976904385, - 306.63682823831084 + 313.0973861988158, + 313.2539455249582, + 306.77826976904646, + 306.6368282383134 ], "layer_temperatures_u": [ - 304.4672993159637, - 304.43277185224827, - 301.1743904313363, - 301.0887504290084 + 304.4672993159626, + 304.4327718522471, + 301.17439043133373, + 301.0887504290059 ], - "relative_heat_gain": 526.0335828005042, + "relative_heat_gain": 526.033582800499, "solid_layer_effective_conductivities_shgc": [ - 0.3545573923121366, - 1.0 + 0.35455739231216366, + 0.9999999999999998 ], "solid_layer_effective_conductivities_u": [ - 0.6800728735550791, + 0.6800728735563507, 1.0 ], - "system_effective_conductivity_shgc": 0.19023316165480153, - "system_effective_conductivity_u": 0.13857666726344045 + "system_effective_conductivity_shgc": 0.19023316165487483, + "system_effective_conductivity_u": 0.13857666726336557 } 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 748e7af8..47048801 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.2922451109402626, + "U": 3.2922451109404665, "gap_layer_effective_conductivities_shgc": [ - 0.07690532720090985 + 0.07690532720090716 ], "gap_layer_effective_conductivities_u": [ - 0.07690532720090876 + 0.07690532720090736 ], "layer_temperatures_shgc": [ - 257.1124918928292, - 257.2729926343897, - 276.42501734628155, + 257.1124918928295, + 257.27299263438994, + 276.4250173462816, 276.8163731195991 ], "layer_temperatures_u": [ 257.11249189282904, 257.2729926343895, - 276.4250173462787, - 276.8163731195963 + 276.42501734627837, + 276.8163731195958 ], - "relative_heat_gain": 25.613666963113907, + "relative_heat_gain": 25.61366696311362, "solid_layer_effective_conductivities_shgc": [ - 0.5945199037093901, + 0.5945199037092874, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.5945199037093039, + 0.5945199037094028, 1.0 ], - "system_effective_conductivity_shgc": 0.10858344429825237, - "system_effective_conductivity_u": 0.1085834442982692 + "system_effective_conductivity_shgc": 0.10858344429825044, + "system_effective_conductivity_u": 0.10858344429825116 } 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 7f192588..36f7ed2f 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.619598397069481, - "U": 3.512139090988507, + "SHGC": 0.6195983970694743, + "U": 3.5121390909901686, "gap_layer_effective_conductivities_shgc": [ - 0.04357379348692639 + 0.0435737934869288 ], "gap_layer_effective_conductivities_u": [ - 0.10679983500162636 + 0.10679983500163417 ], "layer_temperatures_shgc": [ - 315.1226699691886, - 315.316876094824, - 306.96934244031, - 306.8158244006848 + 315.1226699691881, + 315.31687609482344, + 306.96934244031047, + 306.8158244006852 ], "layer_temperatures_u": [ - 304.4672993159637, - 304.43277185224827, - 301.1743904313363, - 301.0887504290084 + 304.4672993159626, + 304.4327718522471, + 301.17439043133373, + 301.0887504290059 ], - "relative_heat_gain": 476.6401073130116, + "relative_heat_gain": 476.6401073130125, "solid_layer_effective_conductivities_shgc": [ - 0.35142576067499093, + 0.3514257606750046, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.6800728735550791, + 0.6800728735563507, 1.0 ], - "system_effective_conductivity_shgc": 0.15106251759006883, - "system_effective_conductivity_u": 0.13857666726344045 + "system_effective_conductivity_shgc": 0.1510625175900742, + "system_effective_conductivity_u": 0.13857666726336557 } 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 748e7af8..47048801 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.2922451109402626, + "U": 3.2922451109404665, "gap_layer_effective_conductivities_shgc": [ - 0.07690532720090985 + 0.07690532720090716 ], "gap_layer_effective_conductivities_u": [ - 0.07690532720090876 + 0.07690532720090736 ], "layer_temperatures_shgc": [ - 257.1124918928292, - 257.2729926343897, - 276.42501734628155, + 257.1124918928295, + 257.27299263438994, + 276.4250173462816, 276.8163731195991 ], "layer_temperatures_u": [ 257.11249189282904, 257.2729926343895, - 276.4250173462787, - 276.8163731195963 + 276.42501734627837, + 276.8163731195958 ], - "relative_heat_gain": 25.613666963113907, + "relative_heat_gain": 25.61366696311362, "solid_layer_effective_conductivities_shgc": [ - 0.5945199037093901, + 0.5945199037092874, 1.0 ], "solid_layer_effective_conductivities_u": [ - 0.5945199037093039, + 0.5945199037094028, 1.0 ], - "system_effective_conductivity_shgc": 0.10858344429825237, - "system_effective_conductivity_u": 0.1085834442982692 + "system_effective_conductivity_shgc": 0.10858344429825044, + "system_effective_conductivity_u": 0.10858344429825116 } 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 e5f5a96f..0c09f898 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 @@ -8,16 +8,16 @@ 0.08901683246171387 ], "layer_temperatures_shgc": [ - 313.35145203769235, - 313.35225590133524, - 305.5951628262399, - 305.4155380621756 + 313.3514520381021, + 313.352255901745, + 305.5951628264325, + 305.4155380623653 ], "layer_temperatures_u": [ - 304.0544237239466, - 304.05410702538705, - 300.6553712349553, - 300.58161242542565 + 304.054423723928, + 304.0541070253684, + 300.6553712349606, + 300.58161242543144 ], "relative_heat_gain": 130.67966289798923, "solid_layer_effective_conductivities_shgc": [ 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 91cb238f..e5df00bb 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 @@ -8,16 +8,16 @@ 0.07046468526070541 ], "layer_temperatures_shgc": [ - 258.5898647852905, - 258.59128366103687, - 278.27761838914523, - 278.62619256301804 + 258.5898647852916, + 258.591283661038, + 278.27761838914466, + 278.62619256301747 ], "layer_temperatures_u": [ - 258.58986478529044, - 258.59128366103687, - 278.2776183891424, - 278.62619256301514 + 258.5898647852901, + 258.5912836610365, + 278.27761838914404, + 278.62619256301684 ], "relative_heat_gain": 22.8136734149428, "solid_layer_effective_conductivities_shgc": [ 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 65f2190c..dc679234 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 @@ -8,16 +8,16 @@ 0.08901683246171387 ], "layer_temperatures_shgc": [ - 313.4672723495539, - 313.46808834811645, - 305.6190671783528, - 305.4381330923246 + 313.4672723497972, + 313.46808834835974, + 305.6190671784633, + 305.4381330924327 ], "layer_temperatures_u": [ - 304.0544237239466, - 304.05410702538705, - 300.6553712349553, - 300.58161242542565 + 304.054423723928, + 304.0541070253684, + 300.6553712349606, + 300.58161242543144 ], "relative_heat_gain": 125.417376576118, "solid_layer_effective_conductivities_shgc": [ 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 91cb238f..e5df00bb 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 @@ -8,16 +8,16 @@ 0.07046468526070541 ], "layer_temperatures_shgc": [ - 258.5898647852905, - 258.59128366103687, - 278.27761838914523, - 278.62619256301804 + 258.5898647852916, + 258.591283661038, + 278.27761838914466, + 278.62619256301747 ], "layer_temperatures_u": [ - 258.58986478529044, - 258.59128366103687, - 278.2776183891424, - 278.62619256301514 + 258.5898647852901, + 258.5912836610365, + 278.27761838914404, + 278.62619256301684 ], "relative_heat_gain": 22.8136734149428, "solid_layer_effective_conductivities_shgc": [ 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 c4f516e0..9bdaa84f 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.14705152268297694, - "U": 3.024885464862555, + "SHGC": 0.14705152268284127, + "U": 3.0248854648534964, "gap_layer_effective_conductivities_shgc": [ - 0.09045137696787621 + 0.09045137696729777 ], "gap_layer_effective_conductivities_u": [ - 0.08901683246197051 + 0.08901683246308564 ], "layer_temperatures_shgc": [ - 313.1729916148585, - 313.1737738123806, - 305.496215952003, - 305.3187210189477 + 313.1729916149748, + 313.1737738124969, + 305.49621595205974, + 305.3187210190037 ], "layer_temperatures_u": [ - 304.05442372398267, - 304.0541070254231, - 300.65537123497194, - 300.5816124254421 + 304.0544237239244, + 304.0541070253647, + 300.65537123495756, + 300.5816124254285 ], - "relative_heat_gain": 130.17131657306987, + "relative_heat_gain": 130.171316573026, "solid_layer_effective_conductivities_shgc": [ - 143.11625024658673, + 143.11625024663897, 1.0 ], "solid_layer_effective_conductivities_u": [ - 148.06350922336765, + 148.0635092223822, 1.0 ], - "system_effective_conductivity_shgc": 0.14116743504139603, - "system_effective_conductivity_u": 0.12367079673506715 + "system_effective_conductivity_shgc": 0.1411674350413281, + "system_effective_conductivity_u": 0.12367079673354263 } 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 1ec07dce..e1160984 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.9323487679879956, + "U": 2.9323487679881604, "gap_layer_effective_conductivities_shgc": [ - 0.07046468526070526 + 0.07046468526070944 ], "gap_layer_effective_conductivities_u": [ - 0.07046468526071045 + 0.07046468526070876 ], "layer_temperatures_shgc": [ - 258.5898647852904, - 258.59128366103675, - 278.2776183891431, - 278.62619256301593 + 258.5898647852905, + 258.591283661037, + 278.2776183891451, + 278.62619256301787 ], "layer_temperatures_u": [ - 258.5898647852904, - 258.5912836610368, - 278.27761838914535, - 278.6261925630181 + 258.5898647852912, + 258.59128366103766, + 278.27761838914375, + 278.6261925630165 ], - "relative_heat_gain": 22.813673414945633, + "relative_heat_gain": 22.81367341494481, "solid_layer_effective_conductivities_shgc": [ - 146.7270602598762, + 146.72706025987634, 1.0 ], "solid_layer_effective_conductivities_u": [ - 146.72706025987642, + 146.7270602598763, 1.0 ], - "system_effective_conductivity_shgc": 0.10130048505278341, - "system_effective_conductivity_u": 0.10130048505279814 + "system_effective_conductivity_shgc": 0.10130048505278014, + "system_effective_conductivity_u": 0.1013004850527772 } 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 63a32bc0..d2184bf7 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.13978709072053058, - "U": 3.024885464862555, + "SHGC": 0.1397870907209529, + "U": 3.0248854648534964, "gap_layer_effective_conductivities_shgc": [ - 0.09049911923225361 + 0.0904991192321512 ], "gap_layer_effective_conductivities_u": [ - 0.08901683246197051 + 0.08901683246308564 ], "layer_temperatures_shgc": [ - 313.2871988268496, - 313.287993057469, - 305.52116605855576, - 305.3423791677548 + 313.2871988268628, + 313.2879930574822, + 305.5211660585612, + 305.34237916776027 ], "layer_temperatures_u": [ - 304.05442372398267, - 304.0541070254231, - 300.65537123497194, - 300.5816124254421 + 304.0544237239244, + 304.0541070253647, + 300.65537123495756, + 300.5816124254285 ], - "relative_heat_gain": 124.90335091172861, + "relative_heat_gain": 124.90335091203299, "solid_layer_effective_conductivities_shgc": [ - 143.12586674056422, + 143.12586674049555, 1.0 ], "solid_layer_effective_conductivities_u": [ - 148.06350922336765, + 148.0635092223822, 1.0 ], - "system_effective_conductivity_shgc": 0.1400060746519116, - "system_effective_conductivity_u": 0.12367079673506715 + "system_effective_conductivity_shgc": 0.1400060746520925, + "system_effective_conductivity_u": 0.12367079673354263 } 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 1ec07dce..e1160984 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.9323487679879956, + "U": 2.9323487679881604, "gap_layer_effective_conductivities_shgc": [ - 0.07046468526070526 + 0.07046468526070944 ], "gap_layer_effective_conductivities_u": [ - 0.07046468526071045 + 0.07046468526070876 ], "layer_temperatures_shgc": [ - 258.5898647852904, - 258.59128366103675, - 278.2776183891431, - 278.62619256301593 + 258.5898647852905, + 258.591283661037, + 278.2776183891451, + 278.62619256301787 ], "layer_temperatures_u": [ - 258.5898647852904, - 258.5912836610368, - 278.27761838914535, - 278.6261925630181 + 258.5898647852912, + 258.59128366103766, + 278.27761838914375, + 278.6261925630165 ], - "relative_heat_gain": 22.813673414945633, + "relative_heat_gain": 22.81367341494481, "solid_layer_effective_conductivities_shgc": [ - 146.7270602598762, + 146.72706025987634, 1.0 ], "solid_layer_effective_conductivities_u": [ - 146.72706025987642, + 146.7270602598763, 1.0 ], - "system_effective_conductivity_shgc": 0.10130048505278341, - "system_effective_conductivity_u": 0.10130048505279814 + "system_effective_conductivity_shgc": 0.10130048505278014, + "system_effective_conductivity_u": 0.1013004850527772 } diff --git a/test/expected_results/perforated_screen/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/perforated_screen/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index 6b569515..46ef43cf 100644 --- a/test/expected_results/perforated_screen/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/perforated_screen/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -4,12 +4,12 @@ "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ - 306.296787685247, - 306.249318980932 + 306.2967876852483, + 306.2493189809333 ], "layer_temperatures_u": [ - 303.23189396063316, - 303.13653388535306 + 303.2318939606329, + 303.13653388535283 ], "relative_heat_gain": 310.1805462624095, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/perforated_screen/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/perforated_screen/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 3daebbb0..6e8b1e09 100644 --- a/test/expected_results/perforated_screen/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/perforated_screen/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -8,8 +8,8 @@ 306.3033899886519 ], "layer_temperatures_u": [ - 303.23189396063316, - 303.13653388535306 + 303.2318939606329, + 303.13653388535283 ], "relative_heat_gain": 302.06833058592997, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/perforated_screen/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/perforated_screen/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index d8830a26..a83f0adc 100644 --- a/test/expected_results/perforated_screen/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/perforated_screen/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -1,15 +1,15 @@ { "SHGC": 0.3621591045562007, - "U": 6.097620399403647, + "U": 6.0976203994036835, "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ - 306.2801811111276, - 306.232456275148 + 306.28018111112794, + 306.23245627514825 ], "layer_temperatures_u": [ - 303.2318939606329, - 303.13653388535283 + 303.23189396063316, + 303.13653388535306 ], "relative_heat_gain": 310.067278735482, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/perforated_screen/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/perforated_screen/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index bcd34c63..b9104ec5 100644 --- a/test/expected_results/perforated_screen/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/perforated_screen/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -1,6 +1,6 @@ { "SHGC": 0.35096966676226754, - "U": 6.097620399403647, + "U": 6.0976203994036835, "gap_layer_effective_conductivities_shgc": [], "gap_layer_effective_conductivities_u": [], "layer_temperatures_shgc": [ @@ -8,8 +8,8 @@ 306.2862371330193 ], "layer_temperatures_u": [ - 303.2318939606329, - 303.13653388535283 + 303.23189396063316, + 303.13653388535306 ], "relative_heat_gain": 301.9530071214641, "solid_layer_effective_conductivities_shgc": [ 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 0d60b038..9f800983 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.1491474952599054, - "U": 0.9236681868308737, + "SHGC": 0.14912764962496775, + "U": 0.9236506345323423, "gap_layer_effective_conductivities_shgc": [ - 0.10190367053544434, - 0.024196524024018548, - 0.11076597312328174 + 0.10190524759482016, + 0.024196567490625903, + 0.11075715272071919 ], "gap_layer_effective_conductivities_u": [ - 0.0773552018108165, - 0.021624843640992843, - 0.09273589449601922 + 0.07735521515155216, + 0.021624848853803412, + 0.09273538694481204 ], "layer_temperatures_shgc": [ - 339.7810871078543, - 341.34113494233964, - 336.6975160037316, - 336.5693513275407, - 311.9857739852148, - 311.7201452267867, - 306.56125502529807, - 306.2629209665015 + 339.7820367912127, + 341.3421774487728, + 336.70058444942924, + 336.57246756457903, + 311.99716408773463, + 311.73161137097543, + 306.5691770041475, + 306.27041006635164 ], "layer_temperatures_u": [ - 304.69079233195237, - 304.6470474060376, - 303.43388157277883, - 303.41135884698065, - 299.07168872546265, - 299.0358524130026, - 298.0772319213014, - 298.0391300630777 + 304.6908010595538, + 304.6470569649182, + 303.4339143948349, + 303.4113920970331, + 299.07180548779627, + 299.0359698563289, + 298.07731371451297, + 298.03920830128993 ], - "relative_heat_gain": 115.34378765640359, + "relative_heat_gain": 115.32925957670635, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0, - 1.000344821148416, - 0.17569138154744415 + 1.0003448211849422, + 0.17567222997908608 ], "solid_layer_effective_conductivities_u": [ 1.0, 1.0, - 1.000344832952456, - 0.17349344944757428 + 1.0003448329547813, + 0.17349260079322482 ], - "system_effective_conductivity_shgc": 0.12243296033269695, - "system_effective_conductivity_u": 0.0525913065484085 + "system_effective_conductivity_shgc": 0.12256791433208597, + "system_effective_conductivity_u": 0.05259650580597057 } 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 de0e1502..8a8ba437 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.9150662116935239, + "U": 0.9149463823502025, "gap_layer_effective_conductivities_shgc": [ - 0.05390132823666048, - 0.021618079439117702, - 0.08683764219991606 + 0.05390086862357082, + 0.021617555867898403, + 0.08682929331124298 ], "gap_layer_effective_conductivities_u": [ - 0.053901328237853346, - 0.021618079439099956, - 0.08683764219894333 + 0.053900868624794616, + 0.021617555867880448, + 0.08682929331023358 ], "layer_temperatures_shgc": [ - 256.48939392979423, - 256.7006644195452, - 265.1092196376501, - 265.2179953918753, - 286.1834237077219, - 286.35649876618805, - 290.7963149144001, - 290.94058170149947 + 256.48921856747165, + 256.7004613910274, + 265.10798718633396, + 265.21674869620705, + 286.17993926738325, + 286.35299166140237, + 290.7940970959295, + 290.93846511463295 ], "layer_temperatures_u": [ - 256.4893939298058, - 256.7006644195585, - 265.10921963791407, - 265.21799539214015, - 286.1834237082074, - 286.3564987666751, - 290.7963149147844, - 290.9405817018795 + 256.48921856746273, + 256.7004613910171, + 265.1079871861251, + 265.2167486959975, + 286.1799392669982, + 286.3529916610161, + 290.7940970956257, + 290.93846511433253 ], - "relative_heat_gain": 7.119215128174528, + "relative_heat_gain": 7.118282855976525, "solid_layer_effective_conductivities_shgc": [ + 0.9999999999999999, 1.0, - 1.0000000000000002, - 1.0003447898816213, - 0.1734832906802519 + 1.0003447898943436, + 0.1734756956701774 ], "solid_layer_effective_conductivities_u": [ 1.0, 1.0, - 1.0003447898816216, - 0.17348329067895418 + 1.0003447898943438, + 0.17347569566890775 ], - "system_effective_conductivity_shgc": 0.03844454486529774, - "system_effective_conductivity_u": 0.03844454485920177 + "system_effective_conductivity_shgc": 0.03847200481814303, + "system_effective_conductivity_u": 0.03847200481179091 } 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 5d9bb69b..b335b891 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.15084671096256427, - "U": 0.9236681868308737, + "SHGC": 0.15082655942536896, + "U": 0.9236506345323423, "gap_layer_effective_conductivities_shgc": [ - 0.10211283490771075, - 0.024217701813438443, - 0.1108813506876928 + 0.10211443681884143, + 0.02421774466612055, + 0.1108724690855629 ], "gap_layer_effective_conductivities_u": [ - 0.0773552018108165, - 0.021624843640992843, - 0.09273589449601922 + 0.07735521515155216, + 0.021624848853803412, + 0.09273538694481204 ], "layer_temperatures_shgc": [ - 340.04866250462896, - 341.6211004300304, - 336.95809057591464, - 336.8291126447971, - 312.1090583824338, - 311.84114965100446, - 306.64189998311883, - 306.3410473062438 + 340.0496264870178, + 341.62215865347554, + 336.96120181230475, + 336.83227240259686, + 312.1206099974013, + 311.8527784692666, + 306.6499340710092, + 306.3486418637561 ], "layer_temperatures_u": [ - 304.69079233195237, - 304.6470474060376, - 303.43388157277883, - 303.41135884698065, - 299.07168872546265, - 299.0358524130026, - 298.0772319213014, - 298.0391300630777 + 304.6908010595538, + 304.6470569649182, + 303.4339143948349, + 303.4113920970331, + 299.07180548779627, + 299.0359698563289, + 298.07731371451297, + 298.03920830128993 ], - "relative_heat_gain": 116.57601200991833, + "relative_heat_gain": 116.5612620967721, "solid_layer_effective_conductivities_shgc": [ 1.0, 1.0, - 1.0003448209691828, - 0.17570680868282396 + 1.0003448210059327, + 0.17568750306362782 ], "solid_layer_effective_conductivities_u": [ 1.0, 1.0, - 1.000344832952456, - 0.17349344944757428 + 1.0003448329547813, + 0.17349260079322482 ], - "system_effective_conductivity_shgc": 0.12289845894703531, - "system_effective_conductivity_u": 0.0525913065484085 + "system_effective_conductivity_shgc": 0.12303477424539386, + "system_effective_conductivity_u": 0.05259650580597057 } 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 de0e1502..8a8ba437 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.9150662116935239, + "U": 0.9149463823502025, "gap_layer_effective_conductivities_shgc": [ - 0.05390132823666048, - 0.021618079439117702, - 0.08683764219991606 + 0.05390086862357082, + 0.021617555867898403, + 0.08682929331124298 ], "gap_layer_effective_conductivities_u": [ - 0.053901328237853346, - 0.021618079439099956, - 0.08683764219894333 + 0.053900868624794616, + 0.021617555867880448, + 0.08682929331023358 ], "layer_temperatures_shgc": [ - 256.48939392979423, - 256.7006644195452, - 265.1092196376501, - 265.2179953918753, - 286.1834237077219, - 286.35649876618805, - 290.7963149144001, - 290.94058170149947 + 256.48921856747165, + 256.7004613910274, + 265.10798718633396, + 265.21674869620705, + 286.17993926738325, + 286.35299166140237, + 290.7940970959295, + 290.93846511463295 ], "layer_temperatures_u": [ - 256.4893939298058, - 256.7006644195585, - 265.10921963791407, - 265.21799539214015, - 286.1834237082074, - 286.3564987666751, - 290.7963149147844, - 290.9405817018795 + 256.48921856746273, + 256.7004613910171, + 265.1079871861251, + 265.2167486959975, + 286.1799392669982, + 286.3529916610161, + 290.7940970956257, + 290.93846511433253 ], - "relative_heat_gain": 7.119215128174528, + "relative_heat_gain": 7.118282855976525, "solid_layer_effective_conductivities_shgc": [ + 0.9999999999999999, 1.0, - 1.0000000000000002, - 1.0003447898816213, - 0.1734832906802519 + 1.0003447898943436, + 0.1734756956701774 ], "solid_layer_effective_conductivities_u": [ 1.0, 1.0, - 1.0003447898816216, - 0.17348329067895418 + 1.0003447898943438, + 0.17347569566890775 ], - "system_effective_conductivity_shgc": 0.03844454486529774, - "system_effective_conductivity_u": 0.03844454485920177 + "system_effective_conductivity_shgc": 0.03847200481814303, + "system_effective_conductivity_u": 0.03847200481179091 } 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 70ac2212..0e31f4b6 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.1488645050057632, - "U": 0.9236681873532367, + "SHGC": 0.14884476907427097, + "U": 0.9236506350169973, "gap_layer_effective_conductivities_shgc": [ - 0.10179552252502662, - 0.02418399141273416, - 0.11083814902274934 + 0.1017970906248397, + 0.02418403604547225, + 0.11082929616729441 ], "gap_layer_effective_conductivities_u": [ - 0.07735520179460614, - 0.02162484364086829, - 0.09273589449739761 + 0.07735521513680173, + 0.02162484885369496, + 0.09273538694599626 ], "layer_temperatures_shgc": [ - 339.6573643897055, - 341.2110087308831, - 336.54739240126094, - 336.41935072310883, - 311.9288239399373, - 311.66476588309934, - 306.5515157196654, - 306.25431833886466 + 339.6583089634578, + 341.2120456190693, + 336.5504465614789, + 336.42245241278624, + 311.94015967652916, + 311.6761772446762, + 306.5594015911432, + 306.26177336116905 ], "layer_temperatures_u": [ - 304.6907923319632, - 304.64704740604947, - 303.4338815730233, - 303.4113588472257, - 299.07168872581724, - 299.035852413358, - 298.07723192164406, - 298.0391300634195 + 304.6908010595457, + 304.6470569649094, + 303.4339143946595, + 303.4113920968574, + 299.0718054875462, + 299.03596985607845, + 298.0773137142721, + 298.0392083010498 ], - "relative_heat_gain": 115.13857092378385, + "relative_heat_gain": 115.12412241283434, "solid_layer_effective_conductivities_shgc": [ + 0.9999999999999999, 1.0, - 1.0, - 1.0003448212694523, - 0.17569135774075897 + 1.0003448213059885, + 0.17567220781389473 ], "solid_layer_effective_conductivities_u": [ 1.0, 1.0, - 1.0003448329524562, - 0.1734934494508696 + 1.0003448329547813, + 0.17349260079636275 ], - "system_effective_conductivity_shgc": 0.12268425712632333, - "system_effective_conductivity_u": 0.052591306566518906 + "system_effective_conductivity_shgc": 0.12281908920849205, + "system_effective_conductivity_u": 0.052596505822768584 } 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 cc3b2234..cd8afb03 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.915066212075617, + "U": 0.9149463827299323, "gap_layer_effective_conductivities_shgc": [ - 0.05390132823661225, - 0.021618079439119132, - 0.08683764219995264 + 0.05390086862350049, + 0.021617555867900266, + 0.08682929331130115 ], "gap_layer_effective_conductivities_u": [ - 0.053901328236320135, - 0.021618079439123073, - 0.08683764220020597 + 0.053900868623307355, + 0.02161755586790261, + 0.0868292933114412 ], "layer_temperatures_shgc": [ - 256.4893939297945, - 256.70066441954555, - 265.1092196376602, - 265.21799539188544, - 286.183423707746, - 286.3564987662123, - 290.79631491441967, - 290.9405817015189 + 256.4892185674718, + 256.7004613910276, + 265.107987186336, + 265.2167486962091, + 286.1799392673861, + 286.3529916614052, + 290.7940970959311, + 290.93846511463454 ], "layer_temperatures_u": [ - 256.4893939297925, - 256.7006644195433, - 265.109219637611, - 265.2179953918361, - 286.18342370765004, - 286.35649876611603, - 290.7963149143425, - 290.9405817014426 + 256.48921856747324, + 256.7004613910293, + 265.1079871863674, + 265.21674869624064, + 286.17993926744555, + 286.3529916614649, + 290.7940970959804, + 290.93846511468325 ], - "relative_heat_gain": 7.119215129690146, + "relative_heat_gain": 7.118282857448514, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.9999999999999999, - 1.0003447898816213, - 0.17348329068045368 + 1.0, + 1.0003447898943436, + 0.17347569567042953 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.9999999999999999, - 1.0003447898816213, - 0.17348329068077833 + 1.0, + 1.0003447898943438, + 0.173475695670663 ], - "system_effective_conductivity_shgc": 0.038444544863786866, - "system_effective_conductivity_u": 0.038444544864744135 + "system_effective_conductivity_shgc": 0.038472004816573625, + "system_effective_conductivity_u": 0.03847200481729396 } 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 9614524f..25f78b6f 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.1505612287807067, - "U": 0.9236681873532367, + "SHGC": 0.15054118836082292, + "U": 0.9236506350169973, "gap_layer_effective_conductivities_shgc": [ - 0.10200381134025363, - 0.024205087484447493, - 0.11095347726512307 + 0.10200540416943212, + 0.024205131521866343, + 0.1109445627292917 ], "gap_layer_effective_conductivities_u": [ - 0.07735520179460614, - 0.02162484364086829, - 0.09273589449739761 + 0.07735521513680173, + 0.02162484885369496, + 0.09273538694599626 ], "layer_temperatures_shgc": [ - 339.924126476993, - 341.4901170849538, - 336.8069737692691, - 336.67811982389287, - 312.0517111402958, - 311.78538673957917, - 306.6321209116405, - 306.33241339299843 + 339.9250852859127, + 341.4911696197222, + 336.8100705753513, + 336.68126488612234, + 312.0632078100062, + 311.7969601905207, + 306.6401185055213, + 306.33997351062004 ], "layer_temperatures_u": [ - 304.6907923319632, - 304.64704740604947, - 303.4338815730233, - 303.4113588472257, - 299.07168872581724, - 299.035852413358, - 298.07723192164406, - 298.0391300634195 + 304.6908010595457, + 304.6470569649094, + 303.4339143946595, + 303.4113920968574, + 299.0718054875462, + 299.03596985607845, + 298.0773137142721, + 298.0392083010498 ], - "relative_heat_gain": 116.36898819980159, + "relative_heat_gain": 116.35431888219495, "solid_layer_effective_conductivities_shgc": [ - 0.9999999999999999, + 1.0, 0.9999999999999998, - 1.0003448210887125, - 0.17570677546626196 + 1.0003448211254724, + 0.17568747123460463 ], "solid_layer_effective_conductivities_u": [ 1.0, 1.0, - 1.0003448329524562, - 0.1734934494508696 + 1.0003448329547813, + 0.17349260079636275 ], - "system_effective_conductivity_shgc": 0.1231517904284837, - "system_effective_conductivity_u": 0.052591306566518906 + "system_effective_conductivity_shgc": 0.12328798555718887, + "system_effective_conductivity_u": 0.052596505822768584 } 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 cc3b2234..cd8afb03 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.915066212075617, + "U": 0.9149463827299323, "gap_layer_effective_conductivities_shgc": [ - 0.05390132823661225, - 0.021618079439119132, - 0.08683764219995264 + 0.05390086862350049, + 0.021617555867900266, + 0.08682929331130115 ], "gap_layer_effective_conductivities_u": [ - 0.053901328236320135, - 0.021618079439123073, - 0.08683764220020597 + 0.053900868623307355, + 0.02161755586790261, + 0.0868292933114412 ], "layer_temperatures_shgc": [ - 256.4893939297945, - 256.70066441954555, - 265.1092196376602, - 265.21799539188544, - 286.183423707746, - 286.3564987662123, - 290.79631491441967, - 290.9405817015189 + 256.4892185674718, + 256.7004613910276, + 265.107987186336, + 265.2167486962091, + 286.1799392673861, + 286.3529916614052, + 290.7940970959311, + 290.93846511463454 ], "layer_temperatures_u": [ - 256.4893939297925, - 256.7006644195433, - 265.109219637611, - 265.2179953918361, - 286.18342370765004, - 286.35649876611603, - 290.7963149143425, - 290.9405817014426 + 256.48921856747324, + 256.7004613910293, + 265.1079871863674, + 265.21674869624064, + 286.17993926744555, + 286.3529916614649, + 290.7940970959804, + 290.93846511468325 ], - "relative_heat_gain": 7.119215129690146, + "relative_heat_gain": 7.118282857448514, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.9999999999999999, - 1.0003447898816213, - 0.17348329068045368 + 1.0, + 1.0003447898943436, + 0.17347569567042953 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.9999999999999999, - 1.0003447898816213, - 0.17348329068077833 + 1.0, + 1.0003447898943438, + 0.173475695670663 ], - "system_effective_conductivity_shgc": 0.038444544863786866, - "system_effective_conductivity_u": 0.038444544864744135 + "system_effective_conductivity_shgc": 0.038472004816573625, + "system_effective_conductivity_u": 0.03847200481729396 } 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 ab5784e2..6e187072 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.4053279785807639, - "U": 3.721566952415843, + "SHGC": 0.4046644123129015, + "U": 3.715067193084567, "gap_layer_effective_conductivities_shgc": [ - 0.08217717560492359 + 0.08207659871612928 ], "gap_layer_effective_conductivities_u": [ - 0.09599999216193492 + 0.09598163062067631 ], "layer_temperatures_shgc": [ - 311.3133776937864, - 311.5409011043744, - 320.01777654625687, - 319.69705820691956 + 311.3409253230297, + 311.5701908804203, + 320.06576252208555, + 319.7419839195512 ], "layer_temperatures_u": [ - 303.68871816235264, - 303.59797147088176, - 300.1154998795767, - 299.9838631640594 + 303.6912751480405, + 303.60068694670736, + 300.11918600624375, + 299.9873731664575 ], - "relative_heat_gain": 322.8864594950261, + "relative_heat_gain": 322.35469142164163, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.17734477149443573 + 0.17710218666206448 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17378016005377203 + 0.17375474313069209 ], - "system_effective_conductivity_shgc": 0.401538108426194, - "system_effective_conductivity_u": 0.10341153153561992 + "system_effective_conductivity_shgc": 0.4016328689604846, + "system_effective_conductivity_u": 0.10356138617859538 } 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 a3f13cd6..812e84c9 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.667785945464796, + "U": 4.6383369716101805, "gap_layer_effective_conductivities_shgc": [ - 0.08232989929134765 + 0.08213900776489043 ], "gap_layer_effective_conductivities_u": [ - 0.08232989929140304 + 0.08213900776492847 ], "layer_temperatures_shgc": [ - 261.36693342643997, - 261.92180249508465, - 282.9248914982022, - 283.4447112102831 + 261.3278692411593, + 261.8792376512664, + 282.87244843035205, + 283.3948383912533 ], "layer_temperatures_u": [ - 261.36693342644264, - 261.9218024950876, - 282.9248914982118, - 283.4447112102926 + 261.32786924115806, + 261.87923765126504, + 282.87244843034875, + 283.39483839124995 ], - "relative_heat_gain": 36.31537465730443, + "relative_heat_gain": 36.08626164037341, "solid_layer_effective_conductivities_shgc": [ - 1.0, - 0.17365348770675612 + 0.9999999999999998, + 0.17354439693424792 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17365348770673167 + 0.17354439693421841 ], - "system_effective_conductivity_shgc": 0.06847686219885994, - "system_effective_conductivity_u": 0.06847686219771126 + "system_effective_conductivity_shgc": 0.06880590091476965, + "system_effective_conductivity_u": 0.06880590091385595 } 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 294efb5f..8e4701c9 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.40368319547337594, - "U": 3.721566952415843, + "SHGC": 0.4030191131878571, + "U": 3.715067193084567, "gap_layer_effective_conductivities_shgc": [ - 0.08213181540978041 + 0.08203129791113885 ], "gap_layer_effective_conductivities_u": [ - 0.09599999216193492 + 0.09598163062067631 ], "layer_temperatures_shgc": [ - 311.3302501215466, - 311.55801937833405, - 320.012839460725, - 319.69179089900877 + 311.3578159817078, + 311.58732861681756, + 320.0608419494041, + 319.73673222053594 ], "layer_temperatures_u": [ - 303.68871816235264, - 303.59797147088176, - 300.1154998795767, - 299.9838631640594 + 303.6912751480405, + 303.60068694670736, + 300.11918600624375, + 299.9873731664575 ], - "relative_heat_gain": 321.69370815888306, + "relative_heat_gain": 321.1615658836949, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.17734278503519632 + 0.1771004260866052 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17378016005377203 + 0.17375474313069209 ], - "system_effective_conductivity_shgc": 0.4025187520779976, - "system_effective_conductivity_u": 0.10341153153561992 + "system_effective_conductivity_shgc": 0.40261214916871774, + "system_effective_conductivity_u": 0.10356138617859538 } 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 a3f13cd6..812e84c9 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.667785945464796, + "U": 4.6383369716101805, "gap_layer_effective_conductivities_shgc": [ - 0.08232989929134765 + 0.08213900776489043 ], "gap_layer_effective_conductivities_u": [ - 0.08232989929140304 + 0.08213900776492847 ], "layer_temperatures_shgc": [ - 261.36693342643997, - 261.92180249508465, - 282.9248914982022, - 283.4447112102831 + 261.3278692411593, + 261.8792376512664, + 282.87244843035205, + 283.3948383912533 ], "layer_temperatures_u": [ - 261.36693342644264, - 261.9218024950876, - 282.9248914982118, - 283.4447112102926 + 261.32786924115806, + 261.87923765126504, + 282.87244843034875, + 283.39483839124995 ], - "relative_heat_gain": 36.31537465730443, + "relative_heat_gain": 36.08626164037341, "solid_layer_effective_conductivities_shgc": [ - 1.0, - 0.17365348770675612 + 0.9999999999999998, + 0.17354439693424792 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17365348770673167 + 0.17354439693421841 ], - "system_effective_conductivity_shgc": 0.06847686219885994, - "system_effective_conductivity_u": 0.06847686219771126 + "system_effective_conductivity_shgc": 0.06880590091476965, + "system_effective_conductivity_u": 0.06880590091385595 } 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 bd4df54e..20ebaade 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.4044756997477991, - "U": 3.721566952705226, + "SHGC": 0.40381268985310453, + "U": 3.7150671933284842, "gap_layer_effective_conductivities_shgc": [ - 0.08238159271337644 + 0.08228067321225936 ], "gap_layer_effective_conductivities_u": [ - 0.09599999216176586 + 0.09598163062055948 ], "layer_temperatures_shgc": [ - 311.2622746265606, - 311.48940269796515, - 320.06871072321536, - 319.748913881956 + 311.28980501555696, + 311.5186739059323, + 320.11672436347976, + 319.7938640270217 ], "layer_temperatures_u": [ - 303.6887181623538, - 303.5979714708829, - 300.11549987957966, - 299.9838631640623 + 303.6912751480397, + 303.60068694670656, + 300.11918600624057, + 299.9873731664542 ], - "relative_heat_gain": 322.2684103954643, + "relative_heat_gain": 321.7370457887174, "solid_layer_effective_conductivities_shgc": [ - 1.0, - 0.17735526698948093 + 0.9999999999999999, + 0.1771115103412283 ], "solid_layer_effective_conductivities_u": [ - 1.0, - 0.17378016005379793 + 0.9999999999999999, + 0.17375474313070227 ], - "system_effective_conductivity_shgc": 0.39761567839302236, - "system_effective_conductivity_u": 0.10341153154078857 + "system_effective_conductivity_shgc": 0.39771624400749706, + "system_effective_conductivity_u": 0.10356138618299648 } 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 4f290119..8e4f5a50 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.6677859456951, + "U": 4.638336971789601, "gap_layer_effective_conductivities_shgc": [ - 0.08232989929135047 + 0.08213900776488683 ], "gap_layer_effective_conductivities_u": [ - 0.08232989929135137 + 0.08213900776488597 ], "layer_temperatures_shgc": [ - 261.3669334264399, - 261.92180249508465, - 282.92489149820165, - 283.44471121028255 + 261.3278692411588, + 261.87923765126584, + 282.8724484303526, + 283.3948383912539 ], "layer_temperatures_u": [ - 261.36693342643963, - 261.9218024950843, - 282.924891498202, - 283.4447112102829 + 261.3278692411593, + 261.8792376512664, + 282.87244843035404, + 283.3948383912553 ], - "relative_heat_gain": 36.31537465749592, + "relative_heat_gain": 36.08626164052019, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.17365348770675226 + 0.17354439693424123 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17365348770674918 + 0.1735443969342412 ], - "system_effective_conductivity_shgc": 0.06847686219879752, - "system_effective_conductivity_u": 0.06847686219881348 + "system_effective_conductivity_shgc": 0.06880590091473036, + "system_effective_conductivity_u": 0.06880590091472834 } 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 f018e4b5..60c8162c 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.4028225937767478, - "U": 3.721566952705226, + "SHGC": 0.4021590565125011, + "U": 3.7150671933284842, "gap_layer_effective_conductivities_shgc": [ - 0.08233732149091351 + 0.08223645695265848 ], "gap_layer_effective_conductivities_u": [ - 0.09599999216176586 + 0.09598163062055948 ], "layer_temperatures_shgc": [ - 311.279321444054, - 311.50670007019005, - 320.06394796537904, - 319.7438171687215 + 311.30687048323, + 311.53599118694854, + 320.1119787726099, + 319.78878352971833 ], "layer_temperatures_u": [ - 303.6887181623538, - 303.5979714708829, - 300.11549987957966, - 299.9838631640623 + 303.6912751480397, + 303.60068694670656, + 300.11918600624057, + 299.9873731664542 ], - "relative_heat_gain": 321.0696235481913, + "relative_heat_gain": 320.5378765076136, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.1773532713943419 + 0.17710974172929955 ], "solid_layer_effective_conductivities_u": [ - 1.0, - 0.17378016005379793 + 0.9999999999999999, + 0.17375474313070227 ], - "system_effective_conductivity_shgc": 0.3985778217999452, - "system_effective_conductivity_u": 0.10341153154078857 + "system_effective_conductivity_shgc": 0.39867709300556736, + "system_effective_conductivity_u": 0.10356138618299648 } 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 4f290119..8e4f5a50 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.6677859456951, + "U": 4.638336971789601, "gap_layer_effective_conductivities_shgc": [ - 0.08232989929135047 + 0.08213900776488683 ], "gap_layer_effective_conductivities_u": [ - 0.08232989929135137 + 0.08213900776488597 ], "layer_temperatures_shgc": [ - 261.3669334264399, - 261.92180249508465, - 282.92489149820165, - 283.44471121028255 + 261.3278692411588, + 261.87923765126584, + 282.8724484303526, + 283.3948383912539 ], "layer_temperatures_u": [ - 261.36693342643963, - 261.9218024950843, - 282.924891498202, - 283.4447112102829 + 261.3278692411593, + 261.8792376512664, + 282.87244843035404, + 283.3948383912553 ], - "relative_heat_gain": 36.31537465749592, + "relative_heat_gain": 36.08626164052019, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.17365348770675226 + 0.17354439693424123 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17365348770674918 + 0.1735443969342412 ], - "system_effective_conductivity_shgc": 0.06847686219879752, - "system_effective_conductivity_u": 0.06847686219881348 + "system_effective_conductivity_shgc": 0.06880590091473036, + "system_effective_conductivity_u": 0.06880590091472834 } 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 3ce84002..b5197376 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.4043776222768461, - "U": 3.4274239622312064, + "SHGC": 0.40258826262883446, + "U": 3.411096903691415, "gap_layer_effective_conductivities_shgc": [ - 0.08468420346526306 + 0.08447331380035665 ], "gap_layer_effective_conductivities_u": [ - 0.09912576819413287 + 0.09910566271894886 ], "layer_temperatures_shgc": [ - 311.46263079424534, - 311.6995946929757, - 321.1585844502323, - 318.30302895170604 + 311.53641850111643, + 311.77805097610826, + 321.3108805573845, + 318.3854754216263 ], "layer_temperatures_u": [ - 303.8044161567331, - 303.7208418481646, - 300.74409714864385, - 299.4302926497016 + 303.81083721397493, + 303.72766102442927, + 300.75524439851563, + 299.4371742806882 ], - "relative_heat_gain": 319.90885485149266, + "relative_heat_gain": 318.48423607690626, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.1875037902028189 + 0.1866575921864271 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17833587354685232 + 0.17825931346910995 ], - "system_effective_conductivity_shgc": 0.7694468233059181, - "system_effective_conductivity_u": 0.12214486262527388 + "system_effective_conductivity_shgc": 0.772010423535702, + "system_effective_conductivity_u": 0.12250173016932339 } 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 9699935a..8c539799 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.622712676747092, + "U": 4.544244933388384, "gap_layer_effective_conductivities_shgc": [ - 0.08372775448811047 + 0.0832245235970355 ], "gap_layer_effective_conductivities_u": [ - 0.08372775448821652 + 0.08322452359693232 ], "layer_temperatures_shgc": [ - 261.30714272713413, - 261.8566538460132, - 280.9948925794413, - 285.94191403663365 + 261.2030421878565, + 261.7432256887844, + 280.8254229413696, + 285.83866357541945 ], "layer_temperatures_u": [ - 261.30714272713874, - 261.85665384601816, - 280.99489257946124, - 285.941914036652 + 261.20304218785884, + 261.7432256887868, + 280.8254229413816, + 285.8386635754306 ], - "relative_heat_gain": 35.96470462685124, + "relative_heat_gain": 35.35422557986944, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.17916832408263655 + 0.17878675690983814 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17916832408257669 + 0.17878675690989743 ], - "system_effective_conductivity_shgc": 0.08204521913267007, - "system_effective_conductivity_u": 0.08204521913099296 + "system_effective_conductivity_shgc": 0.08296351911581337, + "system_effective_conductivity_u": 0.08296351911764556 } 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 f63c9b24..e8c21c2e 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.40272845340345864, - "U": 3.4274239622312064, + "SHGC": 0.4009376497233539, + "U": 3.411096903691415, "gap_layer_effective_conductivities_shgc": [ - 0.08464901568215413 + 0.08443837199435408 ], "gap_layer_effective_conductivities_u": [ - 0.09912576819413287 + 0.09910566271894886 ], "layer_temperatures_shgc": [ - 311.4796619403096, - 311.7168821522388, - 321.1550320360725, - 318.29640120760365 + 311.5535007518947, + 311.79539298638934, + 321.3073920469057, + 318.37888482356 ], "layer_temperatures_u": [ - 303.8044161567331, - 303.7208418481646, - 300.74409714864385, - 299.4302926497016 + 303.81083721397493, + 303.72766102442927, + 300.75524439851563, + 299.4371742806882 ], - "relative_heat_gain": 318.7129230788269, + "relative_heat_gain": 317.28725713200396, "solid_layer_effective_conductivities_shgc": [ - 1.0, - 0.1874989758166088 + 0.9999999999999999, + 0.18665356647782952 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17833587354685232 + 0.17825931346910995 ], - "system_effective_conductivity_shgc": 0.7718977198509304, - "system_effective_conductivity_u": 0.12214486262527388 + "system_effective_conductivity_shgc": 0.774470139398038, + "system_effective_conductivity_u": 0.12250173016932339 } 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 9699935a..8c539799 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.622712676747092, + "U": 4.544244933388384, "gap_layer_effective_conductivities_shgc": [ - 0.08372775448811047 + 0.0832245235970355 ], "gap_layer_effective_conductivities_u": [ - 0.08372775448821652 + 0.08322452359693232 ], "layer_temperatures_shgc": [ - 261.30714272713413, - 261.8566538460132, - 280.9948925794413, - 285.94191403663365 + 261.2030421878565, + 261.7432256887844, + 280.8254229413696, + 285.83866357541945 ], "layer_temperatures_u": [ - 261.30714272713874, - 261.85665384601816, - 280.99489257946124, - 285.941914036652 + 261.20304218785884, + 261.7432256887868, + 280.8254229413816, + 285.8386635754306 ], - "relative_heat_gain": 35.96470462685124, + "relative_heat_gain": 35.35422557986944, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.17916832408263655 + 0.17878675690983814 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17916832408257669 + 0.17878675690989743 ], - "system_effective_conductivity_shgc": 0.08204521913267007, - "system_effective_conductivity_u": 0.08204521913099296 + "system_effective_conductivity_shgc": 0.08296351911581337, + "system_effective_conductivity_u": 0.08296351911764556 } 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 f9b57c8b..8148e553 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.4035414716377996, - "U": 3.4274239624875733, + "SHGC": 0.401753602892081, + "U": 3.411096903339812, "gap_layer_effective_conductivities_shgc": [ - 0.08484897735259835 + 0.08463685453554544 ], "gap_layer_effective_conductivities_u": [ - 0.09912576819391294 + 0.09910566271924726 ], "layer_temperatures_shgc": [ - 311.41093958443173, - 311.64746965268137, - 321.20496539016244, - 318.35854739587 + 311.48468123921043, + 311.72587632552035, + 321.35732588821634, + 318.44100736504123 ], "layer_temperatures_u": [ - 303.8044161567337, - 303.72084184816515, - 300.7440971486491, - 299.43029264970676 + 303.81083721397613, + 303.7276610244306, + 300.75524439851927, + 299.4371742806918 ], - "relative_heat_gain": 319.30250147498595, + "relative_heat_gain": 317.87896387228204, "solid_layer_effective_conductivities_shgc": [ - 1.0, - 0.18753275026451582 + 0.9999999999999999, + 0.1866822225582443 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17833587354686845 + 0.17825931346908555 ], - "system_effective_conductivity_shgc": 0.7596255881245073, - "system_effective_conductivity_u": 0.12214486263004634 + "system_effective_conductivity_shgc": 0.7621575515481904, + "system_effective_conductivity_u": 0.12250173016260152 } 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 8eefe6b6..55c0b18c 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.62271267701584, + "U": 4.544244933105067, "gap_layer_effective_conductivities_shgc": [ - 0.08372775448810987 + 0.08322452359703583 ], "gap_layer_effective_conductivities_u": [ - 0.08372775448810875 + 0.08322452359703586 ], "layer_temperatures_shgc": [ - 261.3071427271341, - 261.85665384601316, - 280.9948925794414, - 285.9419140366338 + 261.2030421878565, + 261.7432256887844, + 280.8254229413699, + 285.8386635754197 ], "layer_temperatures_u": [ - 261.30714272713413, - 261.8566538460132, - 280.99489257944117, - 285.94191403663365 + 261.2030421878565, + 261.7432256887843, + 280.8254229413698, + 285.8386635754197 ], - "relative_heat_gain": 35.96470462715988, + "relative_heat_gain": 35.354225579565956, "solid_layer_effective_conductivities_shgc": [ - 1.0, - 0.17916832408263791 + 0.9999999999999998, + 0.17878675690983686 ], "solid_layer_effective_conductivities_u": [ - 1.0, - 0.1791683240826387 + 0.9999999999999998, + 0.17878675690983642 ], - "system_effective_conductivity_shgc": 0.0820452191325381, - "system_effective_conductivity_u": 0.08204521913255872 + "system_effective_conductivity_shgc": 0.08296351911593922, + "system_effective_conductivity_u": 0.08296351911593211 } 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 ed6ed682..e2661a75 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.40188394802079397, - "U": 3.4274239624875733, + "SHGC": 0.40009460320509976, + "U": 3.411096903339812, "gap_layer_effective_conductivities_shgc": [ - 0.08481458030603718 + 0.08460269108413114 ], "gap_layer_effective_conductivities_u": [ - 0.09912576819391294 + 0.09910566271924726 ], "layer_temperatures_shgc": [ - 311.4281463043251, - 311.66493747038993, - 321.2015986485951, - 318.35207449391936 + 311.50194024795996, + 311.74339995485, + 321.3540253218425, + 318.4345727679005 ], "layer_temperatures_u": [ - 303.8044161567337, - 303.72084184816515, - 300.7440971486491, - 299.43029264970676 + 303.81083721397613, + 303.7276610244306, + 300.75524439851927, + 299.4371742806918 ], - "relative_heat_gain": 318.10051107271704, + "relative_heat_gain": 316.6759030648038, "solid_layer_effective_conductivities_shgc": [ 1.0, - 0.1875279382743966 + 0.18667820222530465 ], "solid_layer_effective_conductivities_u": [ 1.0, - 0.17833587354686845 + 0.17825931346908555 ], - "system_effective_conductivity_shgc": 0.7620137001504015, - "system_effective_conductivity_u": 0.12214486263004634 + "system_effective_conductivity_shgc": 0.7645543428213314, + "system_effective_conductivity_u": 0.12250173016260152 } 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 8eefe6b6..55c0b18c 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.62271267701584, + "U": 4.544244933105067, "gap_layer_effective_conductivities_shgc": [ - 0.08372775448810987 + 0.08322452359703583 ], "gap_layer_effective_conductivities_u": [ - 0.08372775448810875 + 0.08322452359703586 ], "layer_temperatures_shgc": [ - 261.3071427271341, - 261.85665384601316, - 280.9948925794414, - 285.9419140366338 + 261.2030421878565, + 261.7432256887844, + 280.8254229413699, + 285.8386635754197 ], "layer_temperatures_u": [ - 261.30714272713413, - 261.8566538460132, - 280.99489257944117, - 285.94191403663365 + 261.2030421878565, + 261.7432256887843, + 280.8254229413698, + 285.8386635754197 ], - "relative_heat_gain": 35.96470462715988, + "relative_heat_gain": 35.354225579565956, "solid_layer_effective_conductivities_shgc": [ - 1.0, - 0.17916832408263791 + 0.9999999999999998, + 0.17878675690983686 ], "solid_layer_effective_conductivities_u": [ - 1.0, - 0.1791683240826387 + 0.9999999999999998, + 0.17878675690983642 ], - "system_effective_conductivity_shgc": 0.0820452191325381, - "system_effective_conductivity_u": 0.08204521913255872 + "system_effective_conductivity_shgc": 0.08296351911593922, + "system_effective_conductivity_u": 0.08296351911593211 } diff --git a/test/expected_results/woven_shade/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/woven_shade/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index ce8714b3..b871ce1a 100644 --- a/test/expected_results/woven_shade/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/woven_shade/condensed_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -8,8 +8,8 @@ 305.12635318560626 ], "layer_temperatures_u": [ - 303.60269576904375, - 302.3981050748999 + 303.6026957690438, + 302.39810507489995 ], "relative_heat_gain": 443.52995716467996, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/woven_shade/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/woven_shade/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index 4f09d093..f21676f9 100644 --- a/test/expected_results/woven_shade/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/woven_shade/condensed_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -8,8 +8,8 @@ 305.14429074530744 ], "layer_temperatures_u": [ - 303.60269576904375, - 302.3981050748999 + 303.6026957690438, + 302.39810507489995 ], "relative_heat_gain": 441.40567626069503, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/woven_shade/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json b/test/expected_results/woven_shade/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json index d40e4073..f525dd70 100644 --- a/test/expected_results/woven_shade/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json +++ b/test/expected_results/woven_shade/full_spectrum/theta=0_phi=0/thermal_SHGC_Environment.json @@ -8,8 +8,8 @@ 305.11160040764264 ], "layer_temperatures_u": [ - 303.6026957690438, - 302.39810507489995 + 303.60269576904375, + 302.3981050748999 ], "relative_heat_gain": 443.4887945313417, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/expected_results/woven_shade/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json b/test/expected_results/woven_shade/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json index b45ed050..ba48a0c8 100644 --- a/test/expected_results/woven_shade/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json +++ b/test/expected_results/woven_shade/full_spectrum/theta=15_phi=270/thermal_SHGC_Environment.json @@ -8,8 +8,8 @@ 305.12944200028255 ], "layer_temperatures_u": [ - 303.6026957690438, - 302.39810507489995 + 303.60269576904375, + 302.3981050748999 ], "relative_heat_gain": 441.3648585045722, "solid_layer_effective_conductivities_shgc": [ diff --git a/test/main.cpp b/test/main.cpp index 5d2bebe8..7a92ed76 100644 --- a/test/main.cpp +++ b/test/main.cpp @@ -11,7 +11,7 @@ int main( int argc, char* argv[] ) { ::testing::GTEST_FLAG(catch_exceptions) = false; #endif ::testing::InitGoogleTest( &argc, argv ); - test_dir = argv[1]; + test_dir = TEST_DATA_DIR; update_results = false; return RUN_ALL_TESTS(); } diff --git a/test/nfrc_102_102.unit.cpp b/test/nfrc_102_102.unit.cpp new file mode 100644 index 00000000..7e903788 --- /dev/null +++ b/test/nfrc_102_102.unit.cpp @@ -0,0 +1,67 @@ +#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 TestNFRC102102 : 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::vector products; + OpticsParser::Parser parser; + auto clear_3 = parser.parseJSONFile(clear_3_path.string()); + products.push_back(clear_3); + products.push_back(clear_3); + + 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()); + + 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(TestNFRC102102, Test_Thermal) +{ + test_thermal_results("NFRC_102_102", "thermal_U_Environment", glazing_system_u, update_results); + test_thermal_results( + "NFRC_102_102", "thermal_SHGC_Environment", glazing_system_shgc, update_results); +} + + +TEST_F(TestNFRC102102, Test_Optical) +{ + test_optical_results("NFRC_102_102", glazing_system_u, update_results); +}