schiff

Estimate the radiative properties of soft particless
git clone git://git.meso-star.com/schiff.git
Log | Files | Refs | README | LICENSE

commit 2650825f11c077a63444d17a4abe30db35d3b167
parent 641cf947f92d3942498682a1f3ab8771468cce72
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Sun, 22 Sep 2019 16:25:38 +0200

Fix the minimum number of scattering angles to 2

Diffstat:
Msrc/schiff_args.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/schiff_args.c b/src/schiff_args.c @@ -28,8 +28,8 @@ #include <stdarg.h> #include <yaml.h> -#define MIN_NANGLES 100 -#define MIN_NANGLES_INV 100 +#define MIN_NANGLES 2 +#define MIN_NANGLES_INV 2 #ifdef COMPILER_CL #include <getopt.h>