stardis-solver

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

commit b6a5a6f7317f939a70e3a346d8913e489ec87ff7
parent 094c34a2d8b5cca1d48e7a3da5156b7149f754ae
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Thu, 17 Apr 2025 16:30:15 +0200

Fix the Picard test

The value of the specular fraction was incorrect, whereas it is now
checked by the solver. As a result, the test fails when it didn't
before.

Diffstat:
Msrc/test_sdis_picard.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test_sdis_picard.c b/src/test_sdis_picard.c @@ -687,7 +687,7 @@ main(int argc, char** argv) interf_props.temperature = 350; interf_props.h = -1; interf_props.emissivity = 1; - interf_props.specular_fraction = -1; + interf_props.specular_fraction = 0; interf_props.Tref = 350; create_interface(dev, fluid, dummy, &interf_props, interfaces+BOUNDARY_pX);