# Path to data folder
#data_path: 'D:/ULg_PhD_work/datasets/resite_ip/'
data_path: '/data/dcradu/resite_ip/'

# Spatial resolution (in degrees) of the potential sites.
spatial_resolution: 0.28
# Start time and end time of the analysis.
time_slice: ['2014-01-01T00:00', '2014-12-31T23:00']
# Technologies to deploy.
regions: ['FR', 'ES', 'PL']
technologies: ['wind_onshore']
deployments: [7, 5, 5]

siting_params:
  smooth_measure: 'mean'
  # Defines how \alpha is considered in space and time.
  alpha: 'load_central'
  # Normalization procedures (detailed in tools.py). (min, max)
  norm_type: 'max'
  # Time-window length used to compute the criticality indicator. Integer value.
  delta: 1
  # Solution method: BB or HEU or RAND or GRED.
  solution_method:
    BB:
      # Branch & Bound
      set: False
      c: 1
      solver: 'gurobi'
      mipgap: 0.05
      timelimit: 1800
      threads: 4
    MIRSA:
      # Simulated Annealing with Local Search
      set: True
      c: [9]
      neighborhood: 1
      no_iterations: 100
      no_epochs: 1000
      initial_temp: 200.
      no_runs: 1
      algorithm: 'SALS' #'GLS'
    GRED:
      set: False
      epsilon: 0.001
      c: [1, 106, 212, 318, 424, 530]
      no_runs: 1
      algorithm: 'RGH' # SGA
    RAND:
      # Random Search
      set: False
      c: [318]
      no_iterations: 50
      no_epochs: 500
      no_runs: 1
      algorithm: 'RS'