You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat: add configuration for pecd fill_gaps_method for missing data
* feat: add SolarPV for utility and rooftop with differentiation
* fix: adjust config name of solar-pv carrier
* fix: make LFSolarPV import more generic to differentiation of more nodes
* feat: add Exception if no input data for specified PECD tech
* feat: add onshore wind to tyndp renewable carriers and pecd profiles
* fix: check in add existing renwables in case non of the specified carriers are included
* fix: add back onwind and solar to renewable carriers until tyndp carriers are added to the model
* feat: Slightly improve value error message
* feat: add todo for redundant renewable carriers
* feat: custom fix for skiprows and typo
* feat: add collect rules for clean_pecd_datas and build_renewable_profiles_pecds
* feat: add logger warning for missing files
* feat: introduce safe_pyear helper function
* feat: make handling of GB and UK more consistent
* feat: adjust wording of logger about existing capacities
* doc: document compatibility with Solar CSP
* doc: document new config option for available pyears in all configs and documentation files
* doc: add release note
* feat: add verbose option to safe_pyear helper function
* Apply suggestions from code review
Co-authored-by: Thomas Gilon <thomas.gilon@openenergytransition.org>
* fix: remove manual 2050 fallback to 2040 for PECD data
* feat: adjust input and output types in safe_pyear
* Apply suggestions from code review
Co-authored-by: Thomas Gilon <thomas.gilon@openenergytransition.org>
* feat: refactor input_data_pecd function for easier readability
* apply suggestions from code review
* doc: add documentation for retrieve_tyndp_pecd_data rule
---------
Co-authored-by: Thomas Gilon <thomas.gilon@openenergytransition.org>
renewable_carriers,--,"Any subset of {solar, onwind, offwind-ac, offwind-dc, offwind-float, hydro}",List of renewable generators to include in the model.
33
33
tyndp_renewable_carriers,--,"Any subset of {solar-pv, solar-pv-utility, solar-pv-rooftop, onwind, offwind-ac-fb-r, offwind-ac-fl-r, offwind-dc-fb-r, offwind-dc-fl-r, offwind-dc-fb-oh, offwind-dc-fl-oh, offwind-h2-fb-oh, offwind-h2-fl-oh}",List of TYNDP renewable generators to include in the model. Technologies covered by specified TYNDP renewable carriers need to be removed from `estimate_renewable_carriers` technology list.
34
34
pecd_renewable_profiles,,,
35
-
-- enable,,bool,Activate PECD renewable profiles from 2024 TYNDP instead of default renewable profiles for specified renewable technologies below. Technologies ``pecd_techs`` can be any of {CSP,LFSolarPV,Wind_Offshore,Wind_Onshore}.
35
+
-- enable,,bool,Activate PECD renewable profiles from 2024 TYNDP instead of default renewable profiles for specified renewable technologies below. Technologies ``pecd_techs`` can be any of {LFSolarPVUtility,LFSolarPVRooftop,Wind_Offshore,Wind_Onshore,CSP_noStorage,CSP_withStorage_7h_dispatched,CSP_withStorage_7h_preDispatch}.
36
+
-- fill_gaps_method,,str,The chosen method for filling gaps in the PECD data to the modelled nodes. Can be either `zero` to fill with zero values or any other aggregation method such as `mean`,`median`,`max` or similar.
37
+
-- available_years,--,list,"List of years for which PECD data is available."
36
38
-- technologies,,,
37
39
-- -- {pecd_tech},--,str,The PECD tech whose PECD profile is used. These PECD tech and their profiles are mapped to ``tyndp_renewable_carriers``.
38
40
-- -- -- {tyndp_renewable_carriers},--,str,The `tyndp_renewable_carriers` for which the PECD profiles must be used. All `tyndp_renewable_carriers` must be mapped to a PECD profile. Non-TYNDP renewable carriers use the default renewable profiles.
-- enable,bool,"{true, false}","Whether to fill gaps using interpolation for small gaps and time shift for large gaps."
5
5
-- interpolate_limit,hours,integer,"Maximum gap size (consecutive nans) which interpolated linearly."
6
6
-- time_shift_for_large_gaps,string,string,"Periods which are used for copying time-slices in order to fill large gaps of nans. Have to be valid ``pandas`` period strings."
7
+
available_years_tyndp,--,list,"List of years for which TYNDP demand data is available."
7
8
manual_adjustments,bool,"{true, false}","Whether to adjust the load data manually according to the function in :func:`manual_adjustment`."
8
9
scaling_factor,--,float,"Global correction factor for the load time series."
9
10
fixed_year,--,Year or False,"To specify a fixed year for the load time series that deviates from the snapshots' year"
Copy file name to clipboardExpand all lines: doc/release_notes.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ Release Notes
12
12
Upcoming Open-TYNDP Release
13
13
================
14
14
15
-
15
+
* Add complete compatibility for processing and preparation of PECD v3.1 renewable profiles (Solar PV rooftop, Solar PV utility, Onshore Wind, Offshore Wind, Solar CSP) (https://github.com/open-energy-transition/open-tyndp/pull/71). These profiles are used for the TYNDP 2024 and replace the default ERA5- and SARAH3-based profiles processed with Atlite. This implementation serves to facilitate a sub-workflow for creation of the renewable profiles, but does not yet attach them to any technologies.
0 commit comments