stardis

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

commit ab1857de0367968911af4efe3d2ef809b5fc6e84
parent df8d45e9ac39650666b2f00bd9b1af3922ec3731
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Fri, 23 Feb 2024 18:15:02 +0100

Fix query results for a set of bounding probes

The estimator buffer was incorrectly indexed.

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

diff --git a/src/stardis-compute-probe-boundary.c b/src/stardis-compute-probe-boundary.c @@ -725,7 +725,7 @@ solve_list res_T res2 = RES_OK; probe = darray_probe_boundary_cdata_get(&stardis->probe_boundary_list) + i; - ERR(sdis_estimator_buffer_at(buffer, i, 1, &estimator)); + ERR(sdis_estimator_buffer_at(buffer, i, 0, &estimator)); res2 = print_single_MC_result_probe_boundary (stardis, probe, estimator, stdout);