Skip to content

Commit

Permalink
add branch, bus, and gen key layers
Browse files Browse the repository at this point in the history
  • Loading branch information
jaelynlitz authored and cameronrutherford committed Nov 20, 2023
1 parent cb2b6dc commit 31b37c1
Show file tree
Hide file tree
Showing 3 changed files with 464 additions and 64 deletions.
26 changes: 26 additions & 0 deletions docs/devcontainer/sample_opflow.output
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
nbus,ngen,nbranch,baseMVA
9,3,9,100.00
Bus,Pd,Qd,Vm,Va,mult_Pmis,mult_Qmis
1, 0.00, 0.00, 1.04, 0.00, 2064.25, 0.00
2, 0.00, 0.00, 1.02, 4.54, 2013.83, -0.00
3, 0.00, 0.00, 1.02, 2.90, 2018.37, -0.00
4, 0.00, 0.00, 1.03, -2.19, 2064.55, 0.78
5, 75.00, 50.00, 1.01, -3.38, 2076.02, 11.05
6, 90.00, 30.00, 1.02, -4.26, 2093.63, 5.44
7, 0.00, 0.00, 1.03, 0.75, 2014.50, 3.54
8, 100.00, 35.00, 1.02, -1.72, 2035.99, 7.25
9, 0.00, 0.00, 1.03, 0.21, 2018.82, 2.49
From,To,Status,Sft,Stf,Slim,mult_Sf,mult_St
1, 4, 1, 73.27, 72.63, 380.00, -0.00, -0.00
2, 7, 1, 111.43, 111.84, 250.00, -0.00, -0.00
3, 9, 1, 86.05, 86.79, 300.00, -0.00, -0.00
4, 5, 1, 32.20, 43.00, 250.00, -0.00, -0.00
4, 6, 1, 42.77, 44.87, 250.00, -0.00, -0.00
5, 7, 1, 49.98, 48.69, 250.00, -0.00, -0.00
6, 9, 1, 50.00, 51.77, 150.00, -0.00, -0.00
7, 8, 1, 63.90, 64.98, 250.00, -0.00, -0.00
8, 9, 1, 42.30, 36.62, 150.00, -0.00, -0.00
Gen bus,Status,Fuel,Pg,Qg,Pmin,Pmax,Qmin,Qmax
1, 1, NG, 71.10, 17.70, 10.00, 350.00, -300.00, 300.00
2, 1, NG, 111.40, -2.61, 10.00, 300.00, -300.00, 300.00
3, 1, WIND, 85.00, -13.42, 0.00, 85.00, -300.00, 300.00
222 changes: 222 additions & 0 deletions docs/devcontainer/sample_opflow_data.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,222 @@
{
"nbus": 9,
"ngen": 3,
"nbranch": 9,
"baseMVA": 100.0,
"Bus": {
"Num": [
1,
2,
3,
4,
5,
6,
7,
8,
9
],
"Pd": [
0.0,
0.0,
0.0,
0.0,
75.0,
90.0,
0.0,
100.0,
0.0
],
"Qd": [
0.0,
0.0,
0.0,
0.0,
50.0,
30.0,
0.0,
35.0,
0.0
],
"Vm": [
1.04,
1.02,
1.02,
1.03,
1.01,
1.02,
1.03,
1.02,
1.03
],
"Va": [
0.0,
4.54,
2.9,
-2.19,
-3.38,
-4.26,
0.75,
-1.72,
0.21
],
"mult_Pmis": [
2064.25,
2013.83,
2018.37,
2064.55,
2076.02,
2093.63,
2014.5,
2035.99,
2018.82
],
"mult_Qmis": [
0.0,
-0.0,
-0.0,
0.78,
11.05,
5.44,
3.54,
7.25,
2.49
]
},
"Branch": {
"From": [
1,
2,
3,
4,
4,
5,
6,
7,
8
],
"To": [
4,
7,
9,
5,
6,
7,
9,
8,
9
],
"Status": [
1,
1,
1,
1,
1,
1,
1,
1,
1
],
"Sft": [
73.27,
111.43,
86.05,
32.2,
42.77,
49.98,
50.0,
63.9,
42.3
],
"Stf": [
72.63,
111.84,
86.79,
43.0,
44.87,
48.69,
51.77,
64.98,
36.62
],
"Slim": [
380.0,
250.0,
300.0,
250.0,
250.0,
250.0,
150.0,
250.0,
150.0
],
"mult_Sf": [
-0.0,
-0.0,
-0.0,
-0.0,
-0.0,
-0.0,
-0.0,
-0.0,
-0.0
],
"mult_St": [
-0.0,
-0.0,
-0.0,
-0.0,
-0.0,
-0.0,
-0.0,
-0.0,
-0.0
]
},
"Gen": {
"Genbus": [
1,
2,
3
],
"Status": [
1,
1,
1
],
"Fuel": [
"NG",
"NG",
"WIND"
],
"Pg": [
71.1,
111.4,
85.0
],
"Qg": [
17.7,
-2.61,
-13.42
],
"Pmin": [
10.0,
10.0,
0.0
],
"Pmax": [
350.0,
300.0,
85.0
],
"Qmin": [
-300.0,
-300.0,
-300.0
],
"Qmax": [
300.0,
300.0,
300.0
]
}
}
Loading

0 comments on commit 31b37c1

Please sign in to comment.