Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: make all zero sequence attr of transformer optional #58

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions psdm/topology/transformer.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ class Transformer(Base):
vector_group: VectorGroup # specifier for connection of wiring e.g. DYn5
i_0: float # no-load current in %
p_fe: float # no-load losses (Iron losses)
i_00: float # zero sequence values of PI-representation
p_fe0: float # zero sequence values of PI-representation
i_00: float | None = None # zero sequence values of PI-representation
p_fe0: float | None = None # zero sequence values of PI-representation
windings: UniqueTuple[Winding] # winding object for each voltage level
phase_technology_type: TransformerPhaseTechnologyType | None = None # three- or single-phase-transformer
description: str | None = None
Expand Down