Module model.simulation_configuration
Simulation configuration such as the number of timesteps and Monte Carlo runs
Expand source code
"""
Simulation configuration such as the number of timesteps and Monte Carlo runs
"""
from model.constants import epochs_per_month, epochs_per_day
DELTA_TIME = epochs_per_day # epochs per timestep
SIMULATION_TIME_MONTHS = 12 # number of months
TIMESTEPS = (
epochs_per_month * SIMULATION_TIME_MONTHS // DELTA_TIME
) # number of simulation timesteps
MONTE_CARLO_RUNS = 1 # number of runs