stardis-solver

Solve coupled heat transfers
git clone git://git.meso-star.fr/stardis-solver.git
Log | Files | Refs | README | LICENSE

commit 814dfa5db3b2f8ecde58bfbb0fec5d6cbd66853c
parent 2ded4cdaf561b9805467ac435cdbcc2b4142197c
Author: christophe coustet <christophe.coustet@meso-star.com>
Date:   Wed, 22 Aug 2018 15:47:43 +0200

Linux build

Diffstat:
Msrc/sdis_scene_Xd.h | 2+-
Msrc/sdis_solve_Xd.h | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/sdis_scene_Xd.h b/src/sdis_scene_Xd.h @@ -438,8 +438,8 @@ XD(setup_properties) /* Build per-interface hc upper bounds in a tmp table */ FOR_EACH(i, 0, 2) { - enc_upper_bound = htable_d_find(&scn->tmp_hc_ub, enclosures+i); double hc_ub = interface_get_convection_coef_upper_bound(itface); + enc_upper_bound = htable_d_find(&scn->tmp_hc_ub, enclosures+i); if(!enc_upper_bound) { res = htable_d_set(&scn->tmp_hc_ub, enclosures+i, &hc_ub); } else { diff --git a/src/sdis_solve_Xd.h b/src/sdis_solve_Xd.h @@ -540,7 +540,7 @@ XD(fluid_temperature) hc = interface_get_convection_coef(interf, &frag); if(hc > enc->hc_upper_bound) { log_err(scn->dev, - "%s: hc (%g) exceeds its provided upper bound (%g) at %g %g %.\n", + "%s: hc (%g) exceeds its provided upper bound (%g) at %g %g %g.\n", FUNC_NAME, hc, enc->hc_upper_bound, SPLIT3(rwalk->vtx.P)); return RES_BAD_OP; }