Skip to content

Commit 3220a10

Browse files
committed
Fixing broken package due to wrong case in FS
The Dymola renaming function did not properly update the Pf prefix to PF. Class names were changed but the file names were not leading to corruption. The file names and some additional model contents were changed to fix this issue.
1 parent e6d1159 commit 3220a10

9 files changed

Lines changed: 16 additions & 16 deletions

File tree

OpenIPSL/Examples/Tutorial/Example_4/PfData/BusData/PfBus00000.mo

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
within OpenIPSL.Examples.Tutorial.Example_4.PFData.BusData;
2-
record PfBus00000 "Record for power flow solutions in buses - Id 00000"
2+
record PFBus00000 "Record for power flow solutions in buses - Id 00000"
33
extends OpenIPSL.Examples.Tutorial.Example_4.PFData.BusData.BusTemplate(
44
v1=1.0000000,
55
A1=0.0706208,
@@ -10,4 +10,4 @@ extends OpenIPSL.Examples.Tutorial.Example_4.PFData.BusData.BusTemplate(
1010
v4=0.9919935,
1111
A4=-0.0100578);
1212

13-
end PfBus00000;
13+
end PFBus00000;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
BusTemplate
2-
PfBus00000
2+
PFBus00000
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
within OpenIPSL.Examples.Tutorial.Example_4.PFData.LoadData;
2-
record PfLoad00000 "Record for power flow solutions in loads - Id 00000"
2+
record PFLoad00000 "Record for power flow solutions in loads - Id 00000"
33
extends OpenIPSL.Examples.Tutorial.Example_4.PFData.LoadData.LoadTemplate(PL1=
44
1e06*(50.0000000), QL1=1e06*(10.0000000));
55

6-
end PfLoad00000;
6+
end PFLoad00000;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
LoadTemplate
2-
PfLoad00000
2+
PFLoad00000
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
within OpenIPSL.Examples.Tutorial.Example_4.PFData.MachineData;
2-
record PfMachine00000 "Record for power flow solutions in machines - Id 00000"
2+
record PFMachine00000 "Record for power flow solutions in machines - Id 00000"
33
extends OpenIPSL.Examples.Tutorial.Example_4.PFData.MachineData.MachineTemplate(
44
PG1=1e06*(40.0000000),
55
QG1=1e06*(5.4165820),
66
PG2=1e06*(10.0171156),
77
QG2=1e06*(8.0065440));
88

9-
end PfMachine00000;
9+
end PFMachine00000;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
MachineTemplate
2-
PfMachine00000
2+
PFMachine00000

OpenIPSL/Examples/Tutorial/Example_4/PfData/Pf00000.mo

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,28 +3,28 @@ record PF00000 "Record for power flow solutions - Id 00000"
33
extends OpenIPSL.Examples.Tutorial.Example_4.PFData.PowerFlowTemplate;
44

55
replaceable record Bus =
6-
OpenIPSL.Examples.Tutorial.Example_4.PFData.BusData.PfBus00000
6+
OpenIPSL.Examples.Tutorial.Example_4.PFData.BusData.PFBus00000
77
constrainedby
88
OpenIPSL.Examples.Tutorial.Example_4.PFData.BusData.BusTemplate
99
"Power flow results for buses";
1010
Bus bus;
1111

1212
replaceable record Load =
13-
OpenIPSL.Examples.Tutorial.Example_4.PFData.LoadData.PfLoad00000
13+
OpenIPSL.Examples.Tutorial.Example_4.PFData.LoadData.PFLoad00000
1414
constrainedby
1515
OpenIPSL.Examples.Tutorial.Example_4.PFData.LoadData.LoadTemplate
1616
"Power flow results for loads";
1717
Load load;
1818

1919
replaceable record Machine =
20-
OpenIPSL.Examples.Tutorial.Example_4.PFData.MachineData.PfMachine00000
20+
OpenIPSL.Examples.Tutorial.Example_4.PFData.MachineData.PFMachine00000
2121
constrainedby
2222
OpenIPSL.Examples.Tutorial.Example_4.PFData.MachineData.MachineTemplate
2323
"Power flow results for machines";
2424
Machine machine;
2525

2626
replaceable record Trafo =
27-
OpenIPSL.Examples.Tutorial.Example_4.PFData.TrafoData.PfTrafo00000
27+
OpenIPSL.Examples.Tutorial.Example_4.PFData.TrafoData.PFTrafo00000
2828
constrainedby
2929
OpenIPSL.Examples.Tutorial.Example_4.PFData.TrafoData.TrafoTemplate
3030
"Power flow results for transformers";
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
within OpenIPSL.Examples.Tutorial.Example_4.PFData.TrafoData;
2-
record PfTrafo00000 "Record for power flow solutions in trafos - Id 00000"
2+
record PFTrafo00000 "Record for power flow solutions in trafos - Id 00000"
33
extends OpenIPSL.Examples.Tutorial.Example_4.PFData.TrafoData.TrafoTemplate;
44

5-
end PfTrafo00000;
5+
end PFTrafo00000;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
TrafoTemplate
2-
PfTrafo00000
2+
PFTrafo00000

0 commit comments

Comments
 (0)