From 191d1a81486a9ab620bbfbae7fc11162af6b8ce1 Mon Sep 17 00:00:00 2001 From: Daniel Vedder <daniel.vedder@idiv.de> Date: Thu, 24 Nov 2022 17:26:27 +0100 Subject: [PATCH] Created a first configuration file --- src/parameters.toml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/parameters.toml diff --git a/src/parameters.toml b/src/parameters.toml new file mode 100644 index 0000000..29d79cc --- /dev/null +++ b/src/parameters.toml @@ -0,0 +1,27 @@ +### 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 +mapfile = "data/region_jena.tif" # location of the map file +outdir = "results" # location and name of the output folder +logfile = "simulation.log" # name of the log file +loglevel = "debug" # verbosity level: "debug", "normal", "errors" +quietmode = false # if true, only print log statements to file, not the screen +runtime = 10 # duration in days that the simulation will run for +seed = 0 # seed value for the RNG (0 -> random value) + +[farm] + + +[ecology] +targetspecies = [] # list of target species to simulate + +[crop] +cropmodel = "linear" # crop growth model to use, "linear" or "aquacrop" (not yet implemented) + -- GitLab