commit 6feeb1d5e33c26191abb74f7f4e3b717f805917b
parent 9ee52e10d22762bb5cdeb41a91a385142c357692
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date: Fri, 19 May 2017 12:42:32 +0200
Change the order in global outputs.
The goal is to have same orders in global than in other categories.
Diffstat:
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/doc/solstice-output.5.ronn b/doc/solstice-output.5.ronn
@@ -72,8 +72,8 @@ the same line while a closed quote mark is not defined.
<cos-factor>
<shadow-loss>
<missing-loss>
- <absorptivity-loss>
<reflectivity-loss>
+ <absorptivity-loss>
----------------------------------------
@@ -181,10 +181,10 @@ its standard deviation. The global results are, in this order:
absorbed by a receiver; this irradiance could have been blocked along its
path, can have missed the receivers, or can have hit a receiver but without
being absorbed,
-* `absorptivity loss`: the irradiance that could have been absorbed by
- receivers if atmospheric absorption had not been taken into account,
* `reflectivity loss`: the additional irradiance that could have been absorbed
- by receivers if reflections had occured on materials with reflectivity 1.0.
+ by receivers if reflections had occured on materials with reflectivity 1.0,
+* `absorptivity loss`: the irradiance that could have been absorbed by
+ receivers if atmospheric absorption had not been taken into account.
### Per receiver results
diff --git a/src/solstice_solve.c b/src/solstice_solve.c
@@ -59,8 +59,8 @@ write_mc_global(struct solstice* solstice, struct ssol_estimator* estimator)
PRINT_MC_GLOBAL(cos_factor);
PRINT_MC_GLOBAL(shadowed);
PRINT_MC_GLOBAL(missing);
- PRINT_MC_GLOBAL(atmosphere);
PRINT_MC_GLOBAL(reflectivity);
+ PRINT_MC_GLOBAL(atmosphere);
#undef PRINT_MC_GLOBAL
/* Receivers' data */