-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsimconfig.yml
34 lines (30 loc) · 1.1 KB
/
simconfig.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Grid:
NX: 256 # number of X gridcells
NY: 256 # number of Y gridcells
ResRate: 0.5 # rate of resource regrowing
Sim:
FastForward: 10 # plot just every nth time step
NEpoch: 200 # number of epochs the simulation should run
Timesteps: 1000 # number of timesteps per epoch
RhoPred: 0.2 # density of predators
RhoPrey: 0.215 # density of preys
Prey:
Pflee: 0.4 # probability to flee
Pbreed: 0.2 # prob to mate
FoodReserve: 4 # initial food reserve
FoodReserveMax: 8 # maximum food reserve
#Rules: "NN" # using neural network rules
Rules: "default" #using default prey rules
Score: -1 # this should be more precise, but not possible atm
Pred:
Pbreed: 0.2 # prob to mate
FoodReserve: 4 # see above
FoodReserveMax: 8 # see above
#Rules: "NN" # using neural network rules
Rules: "default" # using default predator rules
Score: -1 # this should be more precise, but not possible atm
Plots:
filepath: "plots/"
figsize: !!python/tuple [9,12] # important to tell python that this is a tuple
format: 'png'
DPI: 300