From e12fbc52d27197cffc77922c2fd7a799cbea89d4 Mon Sep 17 00:00:00 2001 From: adrienmellot Date: Wed, 10 Apr 2024 18:10:50 +0200 Subject: [PATCH 1/9] Process data for custom constraints --- config/default.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/config/default.yaml b/config/default.yaml index 1dc50ca3..9e9fad01 100644 --- a/config/default.yaml +++ b/config/default.yaml @@ -19,7 +19,7 @@ data-sources: swiss-end-use: https://www.bfe.admin.ch/bfe/en/home/versorgung/statistik-und-geodaten/energiestatistiken/energieverbrauch-nach-verwendungszweck.exturl.html/aHR0cHM6Ly9wdWJkYi5iZmUuYWRtaW4uY2gvZGUvcHVibGljYX/Rpb24vZG93bmxvYWQvOTg1NA==.html swiss-energy-balance: https://www.bfe.admin.ch/bfe/en/home/versorgung/statistik-und-geodaten/energiestatistiken/gesamtenergiestatistik.exturl.html/aHR0cHM6Ly9wdWJkYi5iZmUuYWRtaW4uY2gvZGUvcHVibGljYX/Rpb24vZG93bmxvYWQvNzUxOQ==.html swiss-industry-energy-balance: https://www.bfe.admin.ch/bfe/en/home/versorgung/statistik-und-geodaten/energiestatistiken/teilstatistiken.exturl.html/aHR0cHM6Ly9wdWJkYi5iZmUuYWRtaW4uY2gvZGUvcHVibGljYX/Rpb24vZG93bmxvYWQvODc4OA==.html - ev-data: https://zenodo.org/record/6579421/files/ramp-ev-consumption-profiles.csv.gz?download=1 + controlled-ev-data: https://zenodo.org/record/6579421/files/ramp-ev-consumption-profiles.csv.gz?download=1 data-pre-processing: fill-missing-values: jrc-idees: @@ -163,6 +163,10 @@ parameters: passenger-cars: Passenger cars motorcycles: Powered 2-wheelers uncontrolled-ev-charging-share: 0.5 + monthly_demand_ranges: + min: 0.9 + max: 1.1 + equals: 1 entsoe-tyndp: scenario: National Trends grid: Reference From eae10b2dff834986a4344272f3136301aa587bcb Mon Sep 17 00:00:00 2001 From: adrienmellot Date: Wed, 10 Apr 2024 18:10:50 +0200 Subject: [PATCH 2/9] Process data for custom constraints --- config/default.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/config/default.yaml b/config/default.yaml index 1dc50ca3..9e9fad01 100644 --- a/config/default.yaml +++ b/config/default.yaml @@ -19,7 +19,7 @@ data-sources: swiss-end-use: https://www.bfe.admin.ch/bfe/en/home/versorgung/statistik-und-geodaten/energiestatistiken/energieverbrauch-nach-verwendungszweck.exturl.html/aHR0cHM6Ly9wdWJkYi5iZmUuYWRtaW4uY2gvZGUvcHVibGljYX/Rpb24vZG93bmxvYWQvOTg1NA==.html swiss-energy-balance: https://www.bfe.admin.ch/bfe/en/home/versorgung/statistik-und-geodaten/energiestatistiken/gesamtenergiestatistik.exturl.html/aHR0cHM6Ly9wdWJkYi5iZmUuYWRtaW4uY2gvZGUvcHVibGljYX/Rpb24vZG93bmxvYWQvNzUxOQ==.html swiss-industry-energy-balance: https://www.bfe.admin.ch/bfe/en/home/versorgung/statistik-und-geodaten/energiestatistiken/teilstatistiken.exturl.html/aHR0cHM6Ly9wdWJkYi5iZmUuYWRtaW4uY2gvZGUvcHVibGljYX/Rpb24vZG93bmxvYWQvODc4OA==.html - ev-data: https://zenodo.org/record/6579421/files/ramp-ev-consumption-profiles.csv.gz?download=1 + controlled-ev-data: https://zenodo.org/record/6579421/files/ramp-ev-consumption-profiles.csv.gz?download=1 data-pre-processing: fill-missing-values: jrc-idees: @@ -163,6 +163,10 @@ parameters: passenger-cars: Passenger cars motorcycles: Powered 2-wheelers uncontrolled-ev-charging-share: 0.5 + monthly_demand_ranges: + min: 0.9 + max: 1.1 + equals: 1 entsoe-tyndp: scenario: National Trends grid: Reference From 0aa0d4d914986f99044ca6183a55de29ed67e85c Mon Sep 17 00:00:00 2001 From: adrienmellot Date: Thu, 11 Apr 2024 16:20:42 +0200 Subject: [PATCH 3/9] Extract EV chargeable capacities Co-Authored-By: Francesco Sanvito <68587472+FraSanvit@users.noreply.github.com> --- config/default.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/config/default.yaml b/config/default.yaml index 9e9fad01..0e8007c7 100644 --- a/config/default.yaml +++ b/config/default.yaml @@ -50,6 +50,7 @@ scaling-factors: # values are tuned for models with a few hours resolution and o power: 0.00001 # from MW(h) to 100 GW(h) area: 0.0001 # from km2 to 10,000 km2 monetary: 0.000000001 # from EUR to 1 billion EUR + transport: 0.01 # from Mio km to 100 Mio km capacity-factors: min: 0.001 max: 10 # 0.001 -> 10 leads to a numerical range of 1e5 (hourly resolution) @@ -162,6 +163,12 @@ parameters: coaches-and-buses: Motor coaches, buses and trolley buses passenger-cars: Passenger cars motorcycles: Powered 2-wheelers + ev-battery-sizes: # MWh + heavy-duty-vehicles: 0.2 # average from [EUCAR_2019] + light-duty-vehicles: 0.1 # own assumption based on passenger cars from [EUCAR_2019] + motorcycles: 0.01 # own assumption + coaches-and-buses: 0.2 # own assumption based on HDVs from [EUCAR_2019] + passenger-cars: 0.08 # average from [EUCAR_2019] uncontrolled-ev-charging-share: 0.5 monthly_demand_ranges: min: 0.9 From a7d5bdc14a8315d16180296cf012d0ab99b8db2d Mon Sep 17 00:00:00 2001 From: adrienmellot Date: Fri, 12 Apr 2024 10:56:02 +0200 Subject: [PATCH 4/9] Fix ramp data download Co-Authored-By: Francesco Sanvito <68587472+FraSanvit@users.noreply.github.com> --- config/default.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/default.yaml b/config/default.yaml index 0e8007c7..6a6aacb9 100644 --- a/config/default.yaml +++ b/config/default.yaml @@ -19,7 +19,7 @@ data-sources: swiss-end-use: https://www.bfe.admin.ch/bfe/en/home/versorgung/statistik-und-geodaten/energiestatistiken/energieverbrauch-nach-verwendungszweck.exturl.html/aHR0cHM6Ly9wdWJkYi5iZmUuYWRtaW4uY2gvZGUvcHVibGljYX/Rpb24vZG93bmxvYWQvOTg1NA==.html swiss-energy-balance: https://www.bfe.admin.ch/bfe/en/home/versorgung/statistik-und-geodaten/energiestatistiken/gesamtenergiestatistik.exturl.html/aHR0cHM6Ly9wdWJkYi5iZmUuYWRtaW4uY2gvZGUvcHVibGljYX/Rpb24vZG93bmxvYWQvNzUxOQ==.html swiss-industry-energy-balance: https://www.bfe.admin.ch/bfe/en/home/versorgung/statistik-und-geodaten/energiestatistiken/teilstatistiken.exturl.html/aHR0cHM6Ly9wdWJkYi5iZmUuYWRtaW4uY2gvZGUvcHVibGljYX/Rpb24vZG93bmxvYWQvODc4OA==.html - controlled-ev-data: https://zenodo.org/record/6579421/files/ramp-ev-consumption-profiles.csv.gz?download=1 + controlled-ev-data: https://zenodo.org/record/6579421/files/ramp-ev-{dataset}.csv.gz?download=1 data-pre-processing: fill-missing-values: jrc-idees: From 61c4c9a6ff068be802a87d728b329f15b11cf45f Mon Sep 17 00:00:00 2001 From: adrienmellot Date: Tue, 14 May 2024 13:58:45 +0200 Subject: [PATCH 5/9] Rename monthly demand parameters Co-Authored-By: Francesco Sanvito <68587472+FraSanvit@users.noreply.github.com> --- config/default.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/default.yaml b/config/default.yaml index 6a6aacb9..9b246adb 100644 --- a/config/default.yaml +++ b/config/default.yaml @@ -170,7 +170,7 @@ parameters: coaches-and-buses: 0.2 # own assumption based on HDVs from [EUCAR_2019] passenger-cars: 0.08 # average from [EUCAR_2019] uncontrolled-ev-charging-share: 0.5 - monthly_demand_ranges: + monthly-demand-bound-fraction: min: 0.9 max: 1.1 equals: 1 From 61d3499de9f1020f6179331c6cb5b571b911bef7 Mon Sep 17 00:00:00 2001 From: adrienmellot Date: Tue, 14 May 2024 15:07:07 +0200 Subject: [PATCH 6/9] Small fixes post merge Co-Authored-By: Francesco Sanvito <68587472+FraSanvit@users.noreply.github.com> --- config/default.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/config/default.yaml b/config/default.yaml index cf0c862a..ed1f396a 100644 --- a/config/default.yaml +++ b/config/default.yaml @@ -20,7 +20,6 @@ data-sources: swiss-energy-balance: https://www.bfe.admin.ch/bfe/en/home/versorgung/statistik-und-geodaten/energiestatistiken/gesamtenergiestatistik.exturl.html/aHR0cHM6Ly9wdWJkYi5iZmUuYWRtaW4uY2gvZGUvcHVibGljYX/Rpb24vZG93bmxvYWQvNzUxOQ==.html swiss-industry-energy-balance: https://www.bfe.admin.ch/bfe/en/home/versorgung/statistik-und-geodaten/energiestatistiken/teilstatistiken.exturl.html/aHR0cHM6Ly9wdWJkYi5iZmUuYWRtaW4uY2gvZGUvcHVibGljYX/Rpb24vZG93bmxvYWQvODc4OA==.html controlled-ev-data: https://zenodo.org/record/6579421/files/ramp-ev-{dataset}.csv.gz?download=1 - ev-data: https://zenodo.org/record/6579421/files/ramp-ev-consumption-profiles.csv.gz?download=1 gridded-temperature-data: https://zenodo.org/records/6557643/files/temperature.nc?download=1 gridded-10m-windspeed-data: https://zenodo.org/records/6557643/files/wind10m.nc?download=1 when2heat-params: https://zenodo.org/records/10965295/files/{dataset}?download=1 From 44bfd0434a9160b6ec2ad1265075784ad1de2546 Mon Sep 17 00:00:00 2001 From: adrienmellot Date: Tue, 14 May 2024 16:42:15 +0200 Subject: [PATCH 7/9] rename 'data' to 'profiles' for RAMP Co-Authored-By: Francesco Sanvito <68587472+FraSanvit@users.noreply.github.com> --- config/default.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/default.yaml b/config/default.yaml index ed1f396a..e909539f 100644 --- a/config/default.yaml +++ b/config/default.yaml @@ -19,7 +19,7 @@ data-sources: swiss-end-use: https://www.bfe.admin.ch/bfe/en/home/versorgung/statistik-und-geodaten/energiestatistiken/energieverbrauch-nach-verwendungszweck.exturl.html/aHR0cHM6Ly9wdWJkYi5iZmUuYWRtaW4uY2gvZGUvcHVibGljYX/Rpb24vZG93bmxvYWQvOTg1NA==.html swiss-energy-balance: https://www.bfe.admin.ch/bfe/en/home/versorgung/statistik-und-geodaten/energiestatistiken/gesamtenergiestatistik.exturl.html/aHR0cHM6Ly9wdWJkYi5iZmUuYWRtaW4uY2gvZGUvcHVibGljYX/Rpb24vZG93bmxvYWQvNzUxOQ==.html swiss-industry-energy-balance: https://www.bfe.admin.ch/bfe/en/home/versorgung/statistik-und-geodaten/energiestatistiken/teilstatistiken.exturl.html/aHR0cHM6Ly9wdWJkYi5iZmUuYWRtaW4uY2gvZGUvcHVibGljYX/Rpb24vZG93bmxvYWQvODc4OA==.html - controlled-ev-data: https://zenodo.org/record/6579421/files/ramp-ev-{dataset}.csv.gz?download=1 + controlled-ev-profiles: https://zenodo.org/record/6579421/files/ramp-ev-{dataset}.csv.gz?download=1 gridded-temperature-data: https://zenodo.org/records/6557643/files/temperature.nc?download=1 gridded-10m-windspeed-data: https://zenodo.org/records/6557643/files/wind10m.nc?download=1 when2heat-params: https://zenodo.org/records/10965295/files/{dataset}?download=1 From c9e039508e961cc176ceda806940548729c95a85 Mon Sep 17 00:00:00 2001 From: adrienmellot Date: Fri, 31 May 2024 15:07:45 +0200 Subject: [PATCH 8/9] uncontrolled charging share to 1 by default --- config/default.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/default.yaml b/config/default.yaml index 2959c1c2..e1483159 100644 --- a/config/default.yaml +++ b/config/default.yaml @@ -174,7 +174,7 @@ parameters: motorcycles: 0.01 # own assumption coaches-and-buses: 0.2 # own assumption based on HDVs from [EUCAR_2019] passenger-cars: 0.08 # average from [EUCAR_2019] - uncontrolled-ev-charging-share: 0.5 + uncontrolled-ev-charging-share: 1 monthly-demand-bound-fraction: min: 0.9 max: 1.1 From 2d1fd2efb43e4b56bd5e494f910f9d24c478be23 Mon Sep 17 00:00:00 2001 From: adrienmellot Date: Fri, 31 May 2024 17:54:42 +0200 Subject: [PATCH 9/9] Edits based on review --- config/default.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/default.yaml b/config/default.yaml index e1483159..d4450bf4 100644 --- a/config/default.yaml +++ b/config/default.yaml @@ -168,7 +168,7 @@ parameters: coaches-and-buses: Motor coaches, buses and trolley buses passenger-cars: Passenger cars motorcycles: Powered 2-wheelers - ev-battery-sizes: # MWh + ev-battery-sizes: heavy-duty-vehicles: 0.2 # average from [EUCAR_2019] light-duty-vehicles: 0.1 # own assumption based on passenger cars from [EUCAR_2019] motorcycles: 0.01 # own assumption