Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
config_model.yml 6.96 KiB
# Spatial resolution (in degrees) of the potential sites.
spatial_resolution: 0.28
# Path towards the various input data.
path_resource_data: '../input_data/resource_data'
path_transfer_function_data: '../input_data/transfer_functions'
path_population_density_data: '../input_data/population_density'
path_protected_areas_data: '../input_data/protected_areas'
path_land_data: '../input_data/land_data'
path_load_data: '../input_data/load_data'
path_transmission_data: '../input_data/transmission_data'
path_potential_data: '../input_data/potentials'
path_legacy_data : '../input_data/legacy'
path_shapefile_data: '../input_data/shapefiles'

# Various data layers to be taken into account in potential site selection.
resource_quality_layer: False
population_density_layer: False
protected_areas_layer: False
bathymetry_layer: False
orography_layer: False
forestry_layer: False
water_mask_layer: True
latitude_layer: False
legacy_layer: False
distance_layer: False

# Start time and end time of the analysis.
time_slice: ['2009-01-01T00:00', '2018-12-31T23:00']
# List of regions to be considered in the optimization.
#regions: ['DE', 'FR', 'ES', 'UK', 'IT', 'SE', 'PL', 'NL', 'PT', 'AT', 'EL', 'IE', 'DK', 'FI',
#          'RO', 'BE', 'BG', 'LT', 'CZ', 'EE', 'LV', 'HR', 'NO']
regions: ['EU']
# Technologies to deploy.
technologies: ['wind_onshore']

# Assessment measure for each time window. Available: mean, median or percentiles.
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


# Keeping files at the end of the run.
keep_files: True
# Run name
name_prefix: 'off_'

# Solution method: BB or HEU or RAND.
solution_method:
  BB:
    # Branch & Bound
    set: False
    c: 106
    solver: 'gurobi'
    mipgap: 0.02
    timelimit: 1800
    threads: 0
  MIRSA:
    # Simulated Annealing with Local Search
    set: True
    c: [318]
    neighborhood: 1
    no_iterations: 200
    no_epochs: 500
    initial_temp: 200.
    no_runs: 3 
    algorithm: 'SALSR' #'GLS'