*.RAW
FilesOriginally Contributed by: Clayton Barrows
An example of how to parse PSS/e files and create a System
using PowerSystems.jl
using PowerSystems
using TimeSeries
PowerSystems.jl links to some test data that is suitable for this example. Let's download the test data
PowerSystems.download(PowerSystems.TestData; branch = "master")
base_dir = dirname(dirname(pathof(PowerSystems)));
System
sys = System(joinpath(base_dir, "data", "psse_raw", "RTS-GMLC.RAW"));
sys
Property | Value |
---|---|
System Units Base | SYSTEM_BASE |
Base Power | 100.0 |
Base Frequency | 60.0 |
Num Components | 539 |
Type | Count | Has Static Time Series | Has Forecasts |
---|---|---|---|
Arc | 108 | false | false |
Area | 3 | false | false |
Bus | 73 | false | false |
FixedAdmittance | 3 | false | false |
Line | 105 | false | false |
LoadZone | 21 | false | false |
PowerLoad | 51 | false | false |
TapTransformer | 15 | false | false |
ThermalStandard | 160 | false | false |