| 1234567891011121314151617181920212223242526272829303132333435363738 |
- [simulation]
- ; Whether to visualize the movement of vessels on the map
- visualization = true
- ; Whether to print internal simulation trace to the terminal
- verbose = false
- ; Whether to print the simulation statistics at the end
- statistics = true
- ; When positive, the time scale to run the simulator at
- ; 1 means wall-clock time (1:1 second scale)
- ; 2 means 1 simulated second takes 2 seconds to run
- ; When zero or negative, runs the simulator as fast as possible
- ; Note: timescale must be strictly positive when using the
- ; visualization!
- timescale = 0.002
- ; The time to end the simulation. When zero, no end time
- ; is considered.
- end_time = 0
- ; Schedule file for the simulation. The simulation also
- ; ends when there is nothing scheduled anymore
- schedule_file = results-de2/plan.csv
- [movement]
- ; When true, the velocities below are ignored and the ETA is used instead
- use_eta = false
- ; Both tugging and sailing are sampled from a normal distribution
- ; with the parameters defined below.
- ; Everything is using SI units, so m/s instead of knots!
- velocity_mean_tugging = 3.343889
- velocity_std_tugging = 0.2572222
- velocity_mean_sailing = 3.343889
- velocity_std_sailing = 0.2572222
- velocity_max = 10.28889
|