stardis

Perform coupled heat transfer calculations
git clone git://git.meso-star.fr/stardis.git
Log | Files | Refs | README | LICENSE

commit 0b3807ca59cca47f8542a9509742310808136ce7
parent ce8998df9170829b4dad02be6c9f032647e97ddc
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date:   Mon, 11 Mar 2019 15:47:28 +0100

Cope with last changes in stardis-solver

Diffstat:
Msrc/stardis-compute.c | 8+++++---
1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/src/stardis-compute.c b/src/stardis-compute.c @@ -559,9 +559,9 @@ create_edge_file_if unsigned cc_count = 0; unsigned *cc, *ee, uimax = UINT_MAX; - res = sdis_get_scene_analyze(scn, &analyze); + res = sdis_scene_get_analysis(scn, &analyze); if (res != RES_OK) goto error; - res = sdis_release_scene_analyze(scn); + res = sdis_scene_release_analysis(scn); if (res != RES_OK) goto error; ASSERT(scn && allocator); @@ -1103,6 +1103,7 @@ stardis_compute(struct stardis* stardis, enum stardis_mode mode) stardis->scale_factor, stardis->radiative_temp[0], stardis->radiative_temp[1], + SDIS_HEAT_PATH_NONE, &estimator)); } else { SDIS(solve_probe_boundary(scn, @@ -1113,7 +1114,8 @@ stardis_compute(struct stardis* stardis, enum stardis_mode mode) SDIS_FRONT, stardis->scale_factor, stardis->radiative_temp[0], - stardis->radiative_temp[1], + stardis->radiative_temp[1], + SDIS_HEAT_PATH_NONE, &estimator)); } }