Replies: 3 comments
-
Here's an example that hopefully works for you. Make the following DSS file, that embeds 48 time steps:
and then run in Julia
This reads in data with 48 time steps:
Does this get you unstuck? Please don't hesitate to come back with questions. |
Beta Was this translation helpful? Give feedback.
-
Yes! Thank you very much. |
Beta Was this translation helpful? Give feedback.
-
Looking at your example, there are a couple of things that are preventing this from working the way you intended. @frederikgeth's method is probably the easiest, i.e., defining the loadshape directly in the DSS files, adding First, the time series that you load needs to be added to the eng["time_series"] = ts["time_series"] Second, instead of adding the raw time series data to the load objects themselves, what you should do is just add "pointers" to the relevant time series data, like so: eng["load"]["load1"]["time_series"] = Dict{String,Any}("pd_nom"=>"6", "qd_nom"=>"6")
eng["load"]["load2"]["time_series"] = Dict{String,Any}("pd_nom"=>"6", "qd_nom"=>"6") where the values |
Beta Was this translation helpful? Give feedback.
-
Hello,
I am trying to build a small multi network test-case by incorporating time series data from the loadshapes.dss file into another test case, but I can't seem to succeed, even with the help of the online documentation.Whenever I run make_multinetwork, PMD tells me that it can't infer time_elapsed, and it only builds network 0. Here is a screenshot:
I am pretty sure I must be doing something wrong but I don't know where,
Beta Was this translation helpful? Give feedback.
All reactions