Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
config_model.yml 1.58 KiB
# Path to data folder
#data_path: 'D:/ULg_PhD_work/datasets/resite_ip/'
data_path: '/home/dcradu/data/resite_ip/'

# Spatial resolution (in degrees) of the potential sites.
spatial_resolution: 0.25
# Start time and end time of the analysis.
time_slice: ['2011-01-01T00:00', '2020-12-31T23:00']
# Technologies to deploy.
regions: ['EU']
technologies: ['wind_onshore']
deployments: [[560]]

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.
  c: 1

  solution_method:
    BB:
      # Branch & Bound
      set: True
      mir: False
      solver: 'gurobi'
      mipgap: 0.01
      timelimit: 43200
      threads: 0
    LS:
      set: False
      neighborhood: 1
      no_iterations: 2000
      no_epochs: 500
      initial_temp: 100.
      no_runs: 20
      algorithm: 'MIR' # 'SGH', 'RS'
    GRED_DET:
      set: False
      no_runs: 10
      p: 0
      algorithm: 'TGH'
    GRED_STO:
      set: False
      p: 0.05
      no_runs: 20
      algorithm: 'STGH'
    RAND:
      # Random Search
      set: False
      no_iterations: 100000
      no_runs: 100
      algorithm: 'RS'
    CROSS:
      # Cross validation
      set: False
      k: 2
      no_years: 10
      no_years_train: 5
      no_years_test: 5
      no_experiments: 10
      no_runs_per_experiment: 10
      criterion: 'max'
      algorithm: 'custom' # 'k_fold'