-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update WSCC_9bus_mult examples and implement splitting examples in DP and EMT #322
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: pipeacosta <[email protected]>
with Notebook WSCC_9bus_parallel.ipynb. Signed-off-by: pipeacosta <[email protected]>
Signed-off-by: pipeacosta <[email protected]>
Signed-off-by: pipeacosta <[email protected]>
Signed-off-by: pipeacosta <[email protected]>
Signed-off-by: pipeacosta <[email protected]>
Signed-off-by: pipeacosta <[email protected]>
Signed-off-by: pipeacosta <[email protected]>
Signed-off-by: pipeacosta <[email protected]>
Signed-off-by: pipeacosta <[email protected]>
Signed-off-by: pipeacosta <[email protected]>
Signed-off-by: pipeacosta <[email protected]>
Signed-off-by: pipeacosta <[email protected]>
Signed-off-by: pipeacosta <[email protected]>
Signed-off-by: pipeacosta <[email protected]>
- name: Run Binaries 2/2 | ||
run: ./build/dpsim/examples/cxx/WSCC_9bus_split_decoupled | ||
|
||
- name: Run Binaries 2/2 | ||
run: ./build/dpsim/examples/cxx/WSCC_9bus_split_decoupled_EMT | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@leonardocarreras should we make it also part of build_test_linux_rocky_profiling?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It could be included here too (sounds like a nice suggestion), I would not consider it as blocking issue as we are not running it on every push request
dpsim/.github/workflows/build_test_linux_rocky_profiling.yaml
Lines 40 to 54 in d66f826
test-examples-1: | |
name: Test Examples 1/2 | |
needs: [profiling] | |
uses: sogno-platform/dpsim/.github/workflows/run_and_profile_example.yaml@${{github.ref}} | |
with: | |
path: ./build/dpsim/examples/cxx/WSCC_9bus_mult_decoupled | |
name: WSCC_9bus_mult_decoupled | |
test-examples-2: | |
name: Test Examples 2/2 | |
needs: [profiling] | |
uses: sogno-platform/dpsim/.github/workflows/run_and_profile_example.yaml@${{github.ref}} | |
with: | |
path: ./build/dpsim/examples/cxx/WSCC_9bus_mult_coupled | |
name: WSCC_9bus_mult_coupled |
Signed-off-by: pipeacosta <[email protected]>
Signed-off-by: pipeacosta <[email protected]>
Signed-off-by: pipeacosta <[email protected]>
Quality Gate passedIssues Measures |
Currently, the examples
WSCC_9bus_mult_coupled.cpp
andWSCC_9bus_mult_decoupled.cpp
don't work when thecopies
option is greater than zero, due toclone()
methods missing in some components. Additionally, theWSCC_9bus_parallel.ipynb
Notebook must be fixed because it does not find the CIM files of the scenario. Finally, we want to implement a similar Noteboook, based on the python script decoupling_9bus_existing.py for testing the process for splitting the WSCC 9 bus system using a decoupling line in both the DP and the EMT domains.