config.ini 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. [simulation]
  2. ; Whether to visualize the movement of vessels on the map
  3. visualization = true
  4. ; Whether to print internal simulation trace to the terminal
  5. verbose = false
  6. ; Whether to print the simulation statistics at the end
  7. statistics = true
  8. ; When positive, the time scale to run the simulator at
  9. ; 1 means wall-clock time (1:1 second scale)
  10. ; 2 means 1 simulated second takes 2 seconds to run
  11. ; When zero or negative, runs the simulator as fast as possible
  12. ; Note: timescale must be strictly positive when using the
  13. ; visualization!
  14. timescale = 0.002
  15. ; The time to end the simulation. When zero, no end time
  16. ; is considered.
  17. end_time = 0
  18. ; Schedule file for the simulation. The simulation also
  19. ; ends when there is nothing scheduled anymore
  20. schedule_file = results-de2/plan.csv
  21. [movement]
  22. ; When true, the velocities below are ignored and the ETA is used instead
  23. use_eta = false
  24. ; Both tugging and sailing are sampled from a normal distribution
  25. ; with the parameters defined below.
  26. ; Everything is using SI units, so m/s instead of knots!
  27. velocity_mean_tugging = 3.343889
  28. velocity_std_tugging = 0.2572222
  29. velocity_mean_sailing = 3.343889
  30. velocity_std_sailing = 0.2572222
  31. velocity_max = 10.28889