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

Add LCC and VSC Data Model, including parser #1205

Closed
wants to merge 23 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 4 additions & 2 deletions docs/src/api/glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@
[`Time Series Data`](@ref ts_data).
- *IPC*: Interconnecting power converter

### L

- *LCC*: Line Commutated Converter HVDC line

### O

- *OEL*: Over Excitation Limiter
Expand Down Expand Up @@ -114,8 +118,6 @@

### V

- *VSCDCLine*: Voltage-Source Converter Direct Current Line

- *VSM*: Virtual Synchronous Machine

### W
Expand Down
3 changes: 2 additions & 1 deletion src/PowerSystems.jl
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ export Line
export MonitoredLine
export DCBranch
export TwoTerminalHVDCLine
export TwoTerminalVSCDCLine
export TwoTerminalVSCLine
export TwoTerminalLCCLine
export TModelHVDCLine
export Transformer2W
export TapTransformer
Expand Down
2 changes: 1 addition & 1 deletion src/data_format_conversions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function _convert_data!(
continue
end
if component["__metadata__"]["type"] == "VSCDCLine"
component["__metadata__"]["type"] = "TwoTerminalVSCDCLine"
component["__metadata__"]["type"] = "TwoTerminalLCCLine"
continue
end
if haskey(component, "prime_mover") && haskey(component, "dynamic_injector")
Expand Down
2 changes: 1 addition & 1 deletion src/descriptors/power_system_inputs.json
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@
{
"name": "dc_line_category",
"value_options": [
"TwoTerminalVSCDCLine",
"TwoTerminalLCCLine",
"TwoTerminalHVDCLine"
],
"description": "Type of Struct",
Expand Down
348 changes: 332 additions & 16 deletions src/descriptors/power_system_structs.json

Large diffs are not rendered by default.

389 changes: 389 additions & 0 deletions src/models/generated/TwoTerminalLCCLine.jl

Large diffs are not rendered by default.

146 changes: 0 additions & 146 deletions src/models/generated/TwoTerminalVSCDCLine.jl

This file was deleted.

Loading
Loading