rnatm

Load and structure data describing an atmosphere
git clone git://git.meso-star.fr/rnatm.git
Log | Files | Refs | README | LICENSE

commit f911a7b09bc7e7977f0e888514a526a26d3e7976
parent d1af7378246bf7dd6569b436f154e91f5155c932
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Fri,  4 Nov 2022 17:50:05 +0100

Fix checking rnatm_get_radcoef input arguments

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

diff --git a/src/rnatm_properties.c b/src/rnatm_properties.c @@ -131,7 +131,7 @@ check_rnatm_cell_get_radcoef_args + args->barycentric_coords[1] + args->barycentric_coords[2] + args->barycentric_coords[3]; - if(!eq_eps(sum_bcoords, 1, 1.e-6)) + if(!eq_eps(sum_bcoords, 1, 1.e-4)) return RES_BAD_ARG; /* Invalid band index */