COMOKIT / COMOKIT-Model

A GAMA (http://gama-platform.org) model on the assessment and comparisons of intervention policies against the CoVid19 pandemics
https://comokit.org
GNU General Public License v3.0
25 stars 18 forks source link

School and workplace shutdown.gaml: no infection #29

Closed benoitgaudou closed 4 years ago

benoitgaudou commented 4 years ago

I run the experiment School and workplace shutdown.gaml with no closure (so set in the user_input popup, both closures to false).

So we can observe individuals moving both to schools and working places.

But, even after running the experiment several times (3 or 4 times), I cannot observe that the disease spreads in the population (basically, only the 2 initial infected people are infected all over the simulations)

chapuisk commented 4 years ago

Same for the NoConfinement : There is no more spread at all !!!

Screen Shot 2020-05-10 at 17 07 58
chapuisk commented 4 years ago

It is because of bool casting in reading Epidemiological Parameters.csv variable allow_transmission_human and allow_transmission_building: value in the file was TRUE and the Gama cast bool(TRUE) seems to return false ...

AlexisDrogoul commented 4 years ago

Yes. Only bool("true") (i.e. the exact serialisation of true) returns true. All the other strings return false.

chapuisk commented 4 years ago

@AlexisDrogoul I change the value in the file ! Do we consider that COMOKIT should be more permissive or not: if we stick to gaml's requirement, we can close the issue, see 64527ccb