stardis-solver

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

commit 5519bbd85d815fd64600f0dc8fe514da084045cc
parent bd678a12457e3e2d07b6c16ed8b77c18118c509d
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Fri, 18 Jun 2021 16:28:18 +0200

Minor update of comments

Diffstat:
Msrc/sdis_heat_path_boundary_Xd.h | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/sdis_heat_path_boundary_Xd.h b/src/sdis_heat_path_boundary_Xd.h @@ -587,15 +587,15 @@ XD(solid_solid_boundary_path) switch(rwalk->hit_side) { case SDIS_BACK: /* When coming from the BACK side, the probability to be reinjected on - * the FRONT side depends on the thermal contact resistance: it decrases - * when the TCR increases (and tends to 0 when TCR -> +\infty) */ + * the FRONT side depends on the thermal contact resistance: it + * decreases when the TCR increases (and tends to 0 when TCR -> +inf) */ proba = (tmp_front) / (tmp_front + tmp_back + tmp_r); break; case SDIS_FRONT: /* Same thing when coming from the FRONT side: the probability of * reinjection on the FRONT side depends on the thermal contact * resistance: it increases when the TCR increases (and tends to 1 when - * the TCR -> +\infty) */ + * the TCR -> +inf) */ proba = (tmp_front + tmp_r) / (tmp_front + tmp_back + tmp_r); break; default: FATAL("Unreachable code.\n"); break;