dlr: add documentation of settings to lines.csv

This commit is contained in:
Fabian Neumann 2023-07-03 19:25:01 +02:00
parent 907382e83a
commit 191eba2009
2 changed files with 8 additions and 3 deletions

View File

@ -269,10 +269,9 @@ lines:
cutout: europe-2013-era5 cutout: europe-2013-era5
dynamic_line_rating: dynamic_line_rating:
activate: false activate: false
# factor compensate overestimation of the wind speed in hourly averaged wind data
correction_factor: 0.95 correction_factor: 0.95
max_voltage_difference: 45 # in deg or `false` to disable max_voltage_difference: false
max_line_rating: false # over capacity relative to nominal capacity e.g. 1.3 or `false`to disable max_line_rating: false
links: links:
p_max_pu: 1.0 p_max_pu: 1.0

View File

@ -4,3 +4,9 @@ s_max_pu,--,"Value in [0.,1.]","Correction factor for line capacities (``s_nom``
s_nom_max,MW,"float","Global upper limit for the maximum capacity of each extendable line." s_nom_max,MW,"float","Global upper limit for the maximum capacity of each extendable line."
length_factor,--,float,"Correction factor to account for the fact that buses are *not* connected by lines through air-line distance." length_factor,--,float,"Correction factor to account for the fact that buses are *not* connected by lines through air-line distance."
under_construction,--,"One of {'zero': set capacity to zero, 'remove': remove completely, 'keep': keep with full capacity}","Specifies how to handle lines which are currently under construction." under_construction,--,"One of {'zero': set capacity to zero, 'remove': remove completely, 'keep': keep with full capacity}","Specifies how to handle lines which are currently under construction."
cutout,--,"Should be a folder listed in the configuration ``atlite: cutouts:`` (e.g. 'europe-2013-era5') or reference an existing folder in the directory ``cutouts``. Source module must be ERA5.","Specifies the directory where the relevant weather data ist stored."
dynamic_line_rating,,,
-- activate,bool,"true or false","Whether to take dynamic line rating into account"
-- correction_factor,--,"float","Factor to compensate for overestimation of wind speeds in hourly averaged wind data"
-- max_voltage_difference,deg,"float","Maximum voltage angle difference in degrees or 'false' to disable"
-- max_line_rating,--,"float","Maximum line rating relative to nominal capacity without DLR, e.g. 1.3 or 'false' to disable"
1 Unit Values Description
4 s_nom_max MW float Global upper limit for the maximum capacity of each extendable line.
5 length_factor -- float Correction factor to account for the fact that buses are *not* connected by lines through air-line distance.
6 under_construction -- One of {'zero': set capacity to zero, 'remove': remove completely, 'keep': keep with full capacity} Specifies how to handle lines which are currently under construction.
7 cutout -- Should be a folder listed in the configuration ``atlite: cutouts:`` (e.g. 'europe-2013-era5') or reference an existing folder in the directory ``cutouts``. Source module must be ERA5. Specifies the directory where the relevant weather data ist stored.
8 dynamic_line_rating
9 -- activate bool true or false Whether to take dynamic line rating into account
10 -- correction_factor -- float Factor to compensate for overestimation of wind speeds in hourly averaged wind data
11 -- max_voltage_difference deg float Maximum voltage angle difference in degrees or 'false' to disable
12 -- max_line_rating -- float Maximum line rating relative to nominal capacity without DLR, e.g. 1.3 or 'false' to disable