stardis

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

commit 5f53801bab782de9ba426db2c15dc28463b5d358
parent 6757775ea4e427faf6d3ff003f6ae086ba0876bb
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date:   Tue, 16 Aug 2022 16:24:03 +0200

Fix out of bound data access

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

diff --git a/src/stardis-compute.c b/src/stardis-compute.c @@ -751,7 +751,7 @@ compute_probe_on_interface(struct stardis* stardis, struct time* start) args.nrealisations = stardis->samples; args.iprim = iprim; - d3_set(args.uv, uv); + d2_set(args.uv, uv); args.side = compute_side; d2_set(args.time_range, stardis->time_range);