Three-phase quantity. Access via .a, .b, .c.
Attributes:
| Name |
Type |
Description |
a |
float
|
|
b |
float
|
|
c |
float
|
|
Source code in openg2g/common.py
| @dataclass(frozen=True)
class ThreePhase:
"""Three-phase quantity. Access via `.a`, `.b`, `.c`.
Attributes:
a: Phase A value.
b: Phase B value.
c: Phase C value.
"""
a: float
b: float
c: float
|