stardis-test

Test Stardis behaviors
git clone git://git.meso-star.fr/stardis-test.git
Log | Files | Refs | README | LICENSE

commit c9f8b3d9f7e7d95e446d04377bd5fce01f38c38d
parent a5e41da8bd3e495a7f3d1f204bc12942900c1607
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Tue, 25 Jun 2024 14:48:43 +0200

Fix typos in the conducto/radiative test

Diffstat:
Msrc/sadist_conducto_radiative.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/sadist_conducto_radiative.c b/src/sadist_conducto_radiative.c @@ -150,7 +150,7 @@ error: } static double -analatical_solution(void) +analytical_solution(void) { const double tmp = LAMBDA / (2*LAMBDA + HR) * (T1 - T0); const double Ts0 = T0 + tmp; @@ -194,7 +194,7 @@ run(const char* command) goto error; } - ref = analatical_solution(); + ref = analytical_solution(); printf("T = %g ~ %g +/- %g\n", ref, E, SE); if(!eq_eps(ref, E, SE*3)) { err = 1;