RunModel_Lag: wrong values in parameter screening
Lag parameter screening values are currently:
ParamTSD <- matrix(c(+1.25,
+2.50,
+5.00), ncol = 1, byrow = TRUE)
These values corresponds to a correct definition for Real parameters but, as we see that all other model screening values are between -10 and 10, Transformed parameters should be used here.
This wrong screening could explain the trend of the calibration to converge to high values of celerity when sensibility to this parameter is low.
As the range of the real parameter celerity is defined in the range [0, 20]
, corresponding transformed parameters should be:
ParamTSD <- matrix(c(-8.75,
-7.50,
-5.00), ncol = 1, byrow = TRUE)