Something went wrong on our end
-
xo30xoqa authored
Previously, a global logger was used, which would have given problems on a parallel run. Also split up the `setupdatadir()` function to improve code structure.
xo30xoqa authoredPreviously, a global logger was used, which would have given problems on a parallel run. Also split up the `setupdatadir()` function to improve code structure.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
parameters.toml 1.39 KiB
### Persephone - a socio-economic-ecological model of European agricultural landscapes.
###
### This is the default configuration file for Persephone, containing all model parameters.
### The syntax is described here: https://toml.io/en/
###
### DO NOT MODIFY THIS FILE FOR SIMULATION EXPERIMENTS!
### Instead, copy it to another directory and modify the copy.
[core]
configfile = "src/parameters.toml" # location of the configuration file
landcovermap = "data/landcover_jena.tif" # location of the landcover map
farmfieldsmap = "data/fields_jena.tif" # location of the field geometry map
outdir = "results" # location and name of the output folder
overwrite = "ask" # overwrite the output directory? (true/false/"ask")
loglevel = "debug" # verbosity level: "debug", "info", "warn"
seed = 2 # seed value for the RNG (0 -> random value)
# dates to start and end the simulation
startdate = 2022-01-01
#enddate = 2022-03-31
enddate = 2022-12-31
[farm]
farmmodel = "FieldManager" # which version of the farm model to use (not yet implemented)
[nature]
targetspecies = ["Wolpertinger", "Wyvern"] # list of target species to simulate
popoutfreq = "daily" # output frequency population-level data, daily/monthly/yearly/end/never
indoutfreq = "end" # output frequency individual-level data, daily/monthly/yearly/end/never
[crop]
cropmodel = "linear" # crop growth model to use, "linear" or "aquacrop" (not yet implemented)