You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/algorithms/pf-algorithms.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,10 @@ The following bus types can be present in the system:
35
35
- Voltage controlled bus: a bus with known $P$ and $U$.
36
36
Note: this bus is not supported by power-grid-model yet.
37
37
38
+
```{note}
39
+
Asymmetric power flow calculations require the network to have a reference to ground. For details and internal solution of asymmetric floating grids calculations in power-grid-model, please refer to [Floating grid handling](../user_manual/calculations.md#floating-grid-handling).
Copy file name to clipboardExpand all lines: docs/algorithms/sc-algorithms.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,11 @@ $$
21
21
This gives the initial symmetrical short circuit current ($I_k^{\prime\prime}$) for a fault.
22
22
This quantity is then used to derive almost all further calculations of short circuit studies applications.
23
23
24
+
```{note}
25
+
Short-circuit calculations are currently implemented in the phase (abc) domain and therefore require a grounded network, similar to asymmetric power flow calculations.
26
+
Note that this limitation does not exist in the sequence (0-1-2) domain but is present in the phase domain calculation.
Copy file name to clipboardExpand all lines: docs/user_manual/calculations.md
+33Lines changed: 33 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -192,6 +192,10 @@ Output:
192
192
- Node voltage magnitude and angle
193
193
- Current flowing through branches and fault.
194
194
195
+
```{note}
196
+
Short-circuit calculations are currently implemented in the phase (abc) domain and therefore require a grounded configurations in certain cases, similar to asymmetric power flow calculations.
197
+
For details on how floating grids are treated in power-grid-model, please refer to[Floating grid handling](calulations.md#floating-grid-handling).
198
+
195
199
#### Common calculations
196
200
197
201
Power flowing through a branch is calculated by voltage and current for any type of calculations in the following way:
@@ -235,12 +239,41 @@ The option affects which attributes are required and how results are exposed.
235
239
For asymmetric calculations voltages are given as line-to-neutral and output contains arrays with values per phase
236
240
for all output variables.
237
241
242
+
```{note}
243
+
In power-grid model, asymmetric calculations with certain configurations require the network to have a reference to ground. For details on how floating grids are treated in power-grid-model, please refer to [Floating grid handling](calulations.md#floating-grid-handling).
244
+
```
245
+
238
246
```{note}
239
247
For short-circuit calculations, a three-phase `fault_type` is calculated with a symmetric calculation, while any other
240
248
`fault_type` (e.g. single- or two-phase faults) automatically triggers the asymmetric calculation.
241
249
Outputs for short circuit calculations always give asymmetric output, independent of the fault type present.
242
250
```
243
251
252
+
#### Floating grid handling
253
+
254
+
In power-grid-model, two different concepts should be distinguished:
255
+
256
+
- Physical grounding of the network
257
+
Whether the electrical system has an explicit path to ground
258
+
(e.g. via transformer winding connection, shunts, or grounding elements).
259
+
- Numerical solvability in PGM
260
+
Whether the formulation provides enough reference to compute a unique solution,
261
+
even if the physical system is not explicitly grounded.
262
+
263
+
A floating grid issue only arises in specific configurations where:
264
+
265
+
- A transformer is present, and
266
+
- All involved windings are ungrounded (no star-point grounding, no delta grounding reference, etc.), and
267
+
- No other grounding path (shunt, source grounding, etc.) exists in the network.
268
+
269
+
In this case, the system may lack a reference for calculating line to ground voltages,
270
+
leading to an ill-posed or singular system.
271
+
272
+
Currently in power-grid-model, a shunt with small admittance is added only in transformer-related configurations
273
+
where a grounding reference is missing. This shunt is connected to one side of the transformer.
274
+
This is intended to ensure numerical solvability in cases
275
+
where the transformer topology introduces an ungrounded subsystem.
276
+
244
277
### Power flow algorithms
245
278
246
279
Two types of power flow algorithms are implemented in power-grid-model; iterative algorithms (Newton-Raphson / Iterative
0 commit comments