stardis

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

commit 1d20a099d57794477e1ed78034891bd91fb467ce
parent 769e578ae198020789e1a1dfaef43b8aa7e9316e
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Thu, 23 Oct 2025 19:44:44 +0200

Fix the solid fluid interface with imposed flux

For a programmed interface, the user-defined function was not passed to
the solver.

Diffstat:
Msrc/stardis-intface.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/stardis-intface.c b/src/stardis-intface.c @@ -685,6 +685,7 @@ create_intface interface_props->get_alpha = intface->d.sf_connect_prog->alpha; interface_shader.convection_coef = intface_prog_get_hc; if(intface->d.sf_connect_prog->flux) { + interface_props->get_flux = intface->d.sf_connect_prog->flux; interface_shader.front.flux = intface_prog_get_flux; interface_shader.back.flux = intface_prog_get_flux; }