Grid model ideas/wishes #1
Bachibouzouk
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
What input data are available to users?
What do we do with this data?
in case of multiple scenarii, each scenario MUST use the same grid_availability
How do we model this in oemof-solph?
grid_availablity can be used in a converter component (oemof-solph) for efficiency, or directly in the source as fix/max argument (set flow[t,blackout]=0). One of the variante can cost more calculation
grid (max setzen) -- bus -- minigrid
grid -- bus --blackout(max setzen) --bus--minigrid
Other
Miscellaneous notes
-- optional : Select time frames that are more likely with tickboxes [0/1] for a whole day
-- Define weights/likelikoods in a timeseries of outage
-- Define likelyhoods of outages during day [0... 100%]
How it is modelled in offgridders
get_blackouts()
from module E contains all info to simulate blackouts, this in turns callsoemof_extension_for_blackouts()
and returnsThe actual series are calculated in another subcall of
get_blackouts()
:availability()
, which also calls sub_routines :get_number_of_blackouts()
The essential piece of code here is
get_time_of_blackout_events()
The essential piece of code here is
get_blackout_event_durations()
The essential piece of code here is
availability_series()
availability_series()
is where thegrid_availability
(pd.Series of 0 and 1 for each hour) sets 0 during blackouts and manages the blackout events overlappingPotential useful papers
Beta Was this translation helpful? Give feedback.
All reactions