stardis

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

commit eb03f4a414f72da4144e0b2c3c4c99dfe8bacacb
parent 91f69384157d0ede5f6b5d331d3dc09f0d5df4a5
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Fri, 23 Feb 2024 12:01:18 +0100

 Fix extended output for probe on boundary with a time range

The position of the probe and the time range were incorrect.

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

diff --git a/src/stardis-output.c b/src/stardis-output.c @@ -1659,7 +1659,7 @@ print_single_MC_result else fprintf(stream, "Boundary temperature at [%g, %g, %g] with t in [%g %g] = %g K +/- %g\n", - SPLIT3(stardis->probe), SPLIT2(stardis->time_range), + SPLIT3(probe->position), SPLIT2(probe->time), result.E, /* Expected value */ result.SE); /* Standard error */ }