Skip to content
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

Static var compensator, series capacitors and recators in pf2pp converter #2348

Merged
merged 18 commits into from
Jan 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
8d3cd2f
create voltage controlled svc same as voltage controlled synchron mac…
mfisch42 Jul 18, 2024
5297d85
changelog and doc ;)
mfisch42 Jul 18, 2024
d0234a9
Merge branch 'develop' into static_var_compensator
pawellytaev Jul 18, 2024
581746b
update in_service in create_svc and create_vac, in service is set via…
mfisch42 Jul 19, 2024
a5e6456
Merge branch 'static_var_compensator' of https://github.com/mfisch42/…
mfisch42 Jul 19, 2024
117daa0
add condition, svc only created if its voltage controlled
mfisch42 Jul 24, 2024
2a2751e
Merge remote-tracking branch 'marie_github/develop' into static_var_c…
mfisch42 Sep 16, 2024
832d3b8
set in_service concerning staswitch open/closed status
mfisch42 Sep 16, 2024
b2e069e
Merge branch 'develop' into static_var_compensator
pawellytaev Sep 18, 2024
d6be624
consider staswitch of imepdances, serial reactors and serial capacito…
mfisch42 Sep 19, 2024
3f499a7
fix connection switch fcn output
mfisch42 Sep 19, 2024
1654db0
Merge branch 'static_var_compensator' of https://github.com/mfisch42/…
mfisch42 Sep 19, 2024
f754821
Merge branch 'develop' into static_var_compensator
pawellytaev Sep 19, 2024
b67fd8d
Merge branch 'develop' into static_var_compensator
pawellytaev Sep 19, 2024
db88106
small fix in series capacitors
mfisch42 Sep 25, 2024
ea9d95d
Merge branch 'static_var_compensator' of https://github.com/mfisch42/…
mfisch42 Sep 25, 2024
6b6ff1b
Merge branch 'develop' into static_var_compensator
pawellytaev Oct 15, 2024
4cbf856
Merge branch 'develop' into static_var_compensator
vogt31337 Jan 3, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Change Log

[upcoming release] - 2024-..-..
-------------------------------
- [ADDED] Static Var Compensator with Voltage Control
- [ADDED] Implementation of Allocation Factor WLS (AF-WLS) for non observable distribution grids
- [FIXED] Deletion of multiple measurements at the same bus or branch
- [FIXED] Creation of zero injection measurements in WLS estimator
Expand Down
2 changes: 1 addition & 1 deletion doc/converter/powerfactory.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The documentation describes how to use the exporter as a function in "Engine mod
- ElmZpu (pu Impedance)
- ElmSind (Series Reactor)
- Elmscap (Series Capacitor)

- ElmSvs (Static Var Compensator with Voltage Control)

Setup PowerFactory and Python
=====================================
Expand Down
2 changes: 2 additions & 0 deletions pandapower/converter/powerfactory/pf_export_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ def create_network_dict(app, flag_graphics='GPS'):
'ElmAsm',
'ElmShnt',
'ElmVac',
'ElmSvs',
'ElmVsc',
'ElmVscmono',

Expand Down Expand Up @@ -56,6 +57,7 @@ def create_network_dict(app, flag_graphics='GPS'):
'ElmPvsys': ['W', 'var', 'VA'],
'ElmXnet': ['W', 'var', 'VA'],
'ElmSym': ['W', 'var', 'VA'],
'ElmSvs': ['W', 'var', 'VA'],
'ElmAsm': ['W', 'var', 'VA'],
'ElmShnt': ['W', 'var', 'VA'],
'ElmZpu': ['W', 'var', 'VA'],
Expand Down
Loading
Loading