Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add sco2 test #1044

Merged
merged 23 commits into from
Sep 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
93c8bd4
add sco2 test
tyneises Aug 30, 2023
c6530e1
run all tests
tyneises Aug 30, 2023
505b4d0
comment code to test for mac test failure
tyneises Aug 30, 2023
eddfb57
comment code to test for mac test failure
tyneises Aug 30, 2023
238943b
comment code to test for mac test failure
tyneises Aug 30, 2023
46dbd7b
comment code to test for mac test failure
tyneises Aug 30, 2023
490759e
comment code to test for mac test failure
tyneises Aug 30, 2023
7344f1f
comment code to test for mac test failure
tyneises Aug 31, 2023
a17ae9d
comment code to test for mac test failure
tyneises Aug 31, 2023
1fc7ac3
comment code to test for mac test failure
tyneises Aug 31, 2023
5e10872
comment code to test for mac test failure
tyneises Aug 31, 2023
a593f15
comment code to test for mac test failure
tyneises Aug 31, 2023
75d4246
comment code to test for mac test failure
tyneises Aug 31, 2023
90878f4
comment code to test for mac test failure
tyneises Aug 31, 2023
5886f3e
comment code to test for mac test failure
tyneises Aug 31, 2023
8005c45
comment code to test for mac test failure
tyneises Aug 31, 2023
ce46644
comment code to test for mac test failure
tyneises Aug 31, 2023
b62b4cd
comment code to test for mac test failure
tyneises Aug 31, 2023
979669a
comment code to test for mac test failure
tyneises Aug 31, 2023
f64be22
comment code to test for mac test failure
tyneises Aug 31, 2023
0e6ce3c
comment code to test for mac test failure
tyneises Aug 31, 2023
79cec51
switch to shared_ptr, uncomment code, remove test returns
tyneises Sep 1, 2023
12e8040
switch to shared_ptr, uncomment code, remove test returns
tyneises Sep 1, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion ssc/cmod_sco2_csp_system.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,11 @@ class cm_sco2_csp_system : public compute_module

void exec() override
{
C_sco2_phx_air_cooler c_sco2_cycle;
// Uncomment following 2 lines to write cmod to lk script
//FILE* fp = fopen("sco2_cmod_to_lk.lk", "w");
//write_cmod_to_lk_script(fp, m_vartab);

C_sco2_phx_air_cooler c_sco2_cycle;

int sco2_des_err = sco2_design_cmod_common(this, c_sco2_cycle);
if (sco2_des_err != 0)
Expand Down
1 change: 1 addition & 0 deletions ssc/csp_common.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1244,6 +1244,7 @@ int sco2_design_cmod_common(compute_module *cm, C_sco2_phx_air_cooler & c_sco2_c

throw exec_error("sco2_csp_system", csp_exception.m_error_message);
}

// If all calls were successful, log to SSC any messages from sco2_recomp_csp
while (c_sco2_cycle.mc_messages.get_message(&out_type, &out_msg))
{
Expand Down
6 changes: 3 additions & 3 deletions tcs/sco2_pc_csp_int.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ void C_sco2_phx_air_cooler::design_core()

if (ms_des_par.m_cycle_config == 2)
{
std::unique_ptr<C_PartialCooling_Cycle> c_pc_cycle = std::unique_ptr<C_PartialCooling_Cycle>(new C_PartialCooling_Cycle(
std::shared_ptr<C_PartialCooling_Cycle> c_pc_cycle = std::unique_ptr<C_PartialCooling_Cycle>(new C_PartialCooling_Cycle(
turbo_gen_motor_config,
eta_generator,
T_mc_in,
Expand All @@ -128,7 +128,7 @@ void C_sco2_phx_air_cooler::design_core()
}
else
{
std::unique_ptr<C_RecompCycle> c_rc_cycle = std::unique_ptr<C_RecompCycle>(new C_RecompCycle(
std::shared_ptr<C_RecompCycle> c_rc_cycle = std::unique_ptr<C_RecompCycle>(new C_RecompCycle(
turbo_gen_motor_config,
eta_generator,
T_mc_in,
Expand All @@ -151,7 +151,7 @@ void C_sco2_phx_air_cooler::design_core()

// Set min temp
m_T_mc_in_min = mpc_sco2_cycle->get_design_limits().m_T_mc_in_min; //[K]

if (ms_des_par.m_design_method == 1)
{
// Design the cycle to hit a specified efficiency
Expand Down
2 changes: 1 addition & 1 deletion tcs/sco2_pc_csp_int.h
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ class C_sco2_phx_air_cooler

private:

std::unique_ptr<C_sco2_cycle_core> mpc_sco2_cycle;
std::shared_ptr<C_sco2_cycle_core> mpc_sco2_cycle;

C_HX_co2_to_htf mc_phx;

Expand Down
135 changes: 135 additions & 0 deletions test/ssc_test/cmod_sco2_csp_system_test.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
/*
BSD 3-Clause License

Copyright Alliance for Sustainable Energy, LLC. See also https://github.com/NREL/ssc/blob/develop/LICENSE


Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.

3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/


#include <gtest/gtest.h>
//#include "tcsmolten_salt_defaults.h"
#include "csp_common_test.h"
#include "vs_google_test_explorer_namespace.h"

//#include "../input_cases/code_generator_utilities.h"

namespace sco2_tests {}
using namespace sco2_tests;

//========Tests===================================================================================
NAMESPACE_TEST(sco2_tests, SCO2Cycle, Parametrics)
{

ssc_data_t data = ssc_data_create();

ssc_data_set_number(data, "t_amb_des", 26);
ssc_data_set_number(data, "dt_mc_approach", 6);
ssc_data_set_number(data, "t_htf_hot_des", 720);
ssc_number_t p_od_cases[12] = { 720, 1, 26, 1, 1, 1, 720, 1, 20, 1, 1, 1 };

ssc_data_set_number(data, "n_nodes_air_cooler_pass", 10);
ssc_data_set_number(data, "htf", 6);
ssc_data_set_number(data, "design_method", 3);
ssc_data_set_number(data, "fan_power_frac", 0.02);
ssc_data_set_number(data, "deltap_counterhx_frac", -1);
ssc_data_set_number(data, "w_dot_net_des", 50);
ssc_data_set_number(data, "ltr_ua_des_in", -1);
ssc_data_set_number(data, "dt_phx_hot_approach", 20);
ssc_data_set_number(data, "site_elevation", 588);
ssc_data_set_number(data, "ua_recup_tot_des", -1);
ssc_data_set_number(data, "eta_thermal_des", -1);
ssc_data_set_number(data, "rel_tol", 3);
ssc_data_set_number(data, "ltr_design_code", 2);
ssc_data_set_number(data, "is_gen_od_polynomials", 0);
ssc_data_set_number(data, "ltr_min_dt_des_in", 10);
ssc_data_set_number(data, "lt_recup_eff_max", 1);
ssc_data_set_number(data, "ltr_eff_des_in", -1);
ssc_data_set_number(data, "p_high_limit", 25);
ssc_data_set_number(data, "eta_isen_mc", 0.84999999999999998);
ssc_data_set_number(data, "ltr_lp_deltap_des_in", 0.031099999999999999);
ssc_data_set_number(data, "ltr_hp_deltap_des_in", 0.0055999999999999999);
ssc_data_set_number(data, "htr_design_code", 2);
ssc_data_set_number(data, "htr_ua_des_in", -1);
ssc_data_set_number(data, "od_rel_tol", 3);
ssc_data_set_number(data, "htr_min_dt_des_in", 10);
ssc_data_set_number(data, "od_opt_objective", 0);
ssc_data_set_number(data, "ht_recup_eff_max", 1);
ssc_data_set_number(data, "htr_eff_des_in", -1);
ssc_data_set_number(data, "htr_lp_deltap_des_in", 0.031099999999999999);
ssc_data_set_number(data, "htr_hp_deltap_des_in", 0.0055999999999999999);

ssc_data_set_matrix(data, "od_cases", p_od_cases, 2, 6);
ssc_data_set_number(data, "cycle_config", 1);
ssc_data_set_number(data, "des_objective", 1);
ssc_data_set_number(data, "is_recomp_ok", 1);
ssc_data_set_number(data, "is_p_high_fixed", 1);
ssc_data_set_number(data, "is_pr_fixed", 0);
ssc_data_set_number(data, "od_t_t_in_mode", 0);
ssc_data_set_number(data, "is_ip_fixed", 0);
ssc_data_set_number(data, "min_phx_deltat", 1000);
ssc_data_set_number(data, "ltr_od_model", 1);
ssc_data_set_number(data, "deltap_cooler_frac", 0.0050000000000000001);
ssc_data_set_number(data, "eta_isen_rc", 0.84999999999999998);
ssc_data_set_number(data, "eta_isen_pc", 0.84999999999999998);
ssc_data_set_number(data, "eta_isen_t", 0.90000000000000002);
ssc_data_set_number(data, "phx_co2_deltap_des_in", 0.0055999999999999999);
ssc_data_set_number(data, "mc_comp_type", 1);
ssc_data_set_number(data, "dt_phx_cold_approach", 20);
ssc_data_set_number(data, "ltr_n_sub_hx", 10);
ssc_data_set_number(data, "htr_n_sub_hx", 10);
ssc_data_set_number(data, "htr_od_model", 1);
ssc_data_set_number(data, "phx_n_sub_hx", 10);
ssc_data_set_number(data, "phx_od_model", 1);
ssc_data_set_number(data, "is_design_air_cooler", 1);
ssc_data_set_number(data, "eta_air_cooler_fan", 0.5);

CmodUnderTest sco2 = CmodUnderTest("sco2_csp_system", data);

int errors = sco2.RunModule();
EXPECT_FALSE(errors);

if (!errors) {
EXPECT_NEAR_FRAC(sco2.GetOutput("T_htf_cold_des"), 529.6897, kErrorToleranceLo);
EXPECT_NEAR_FRAC(sco2.GetOutput("eta_thermal_calc"), 0.5071197, kErrorToleranceLo);
EXPECT_NEAR_FRAC(sco2.GetOutput("m_dot_htf_des"), 513.344, kErrorToleranceLo);
EXPECT_NEAR_FRAC(sco2.GetOutput("m_dot_co2_full"), 410.528, kErrorToleranceLo);
EXPECT_NEAR_FRAC(sco2.GetOutput("P_comp_in"), 7.67490, kErrorToleranceLo);
EXPECT_NEAR_FRAC(sco2.GetOutput("cycle_cost"), 53.2909, kErrorToleranceLo);

std::vector<ssc_number_t> eta_thermal_od_exp{ 0.50689, 0.507197 };
EXPECT_FLOATS_NEARLY_EQ(sco2.GetOutputVector("eta_thermal_od"), eta_thermal_od_exp, kErrorToleranceLo*eta_thermal_od_exp[0]);

std::vector<ssc_number_t> P_comp_in_od_exp{ 7.68424, 7.64808 };
EXPECT_FLOATS_NEARLY_EQ(sco2.GetOutputVector("P_comp_in_od"), P_comp_in_od_exp, kErrorToleranceLo*P_comp_in_od_exp[0]);

std::vector<ssc_number_t> W_dot_net_less_cooling_od_exp{ 48.9136, 49.98451 };
EXPECT_FLOATS_NEARLY_EQ(sco2.GetOutputVector("W_dot_net_less_cooling_od"), W_dot_net_less_cooling_od_exp, kErrorToleranceLo*W_dot_net_less_cooling_od_exp[0]);

}

}
Loading