Components
Some components need to be specified in the PowerTransformer
. This page
lists the various components.
BushingConfig
Bases: StrEnum
The bushing configuration of a transformer.
Each bushing configuration has a different capacity calculation method
that is used in the PowerTransformer
class. The configuration can be
provided using the ComponentSpecifications
class when initializing
a PowerTransformer
.
Attributes:
Name | Type | Description |
---|---|---|
SINGLE_BUSHING |
str
|
A single bushing configuration. |
DOUBLE_BUSHING |
str
|
A double bushing configuration. |
TRIANGLE_INSIDE |
str
|
A triangle inside configuration. |
TransformerSide
Bases: StrEnum
The possible side a component can be connected to in a transformer.
A transformer has two sides, the primary and secondary side. The primary side is the side where the transformer is connected to the power source, while the secondary side is the side where the transformer is connected to the load.
Attributes:
Name | Type | Description |
---|---|---|
PRIMARY |
str
|
The primary side of the transformer. |
SECONDARY |
str
|
The secondary side of the transformer. |