Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Allow hierarchic grid structure for JointGridContainer [#768](https://github.com/ie3-institute/PowerSystemDataModel/issues/768)

### Fixed
- Fixed wrong rated power unit hint [#804](https://github.com/ie3-institute/PowerSystemDataModel/issues/804)


### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class Transformer2WTypeInput extends AssetTypeInput {
private final ComparableQuantity<ElectricResistance> rSc;
/** Short circuit reactance (typically in Ohm) */
private final ComparableQuantity<ElectricResistance> xSc;
/** Rated apparent power (typically in MVA) */
/** Rated apparent power (typically in kVA) */
private final ComparableQuantity<Power> sRated;
/** Rated voltage of the high voltage winding (typically in kV) */
private final ComparableQuantity<ElectricPotential> vRatedA;
Expand Down Expand Up @@ -46,7 +46,7 @@ public class Transformer2WTypeInput extends AssetTypeInput {
* @param id of the type
* @param rSc Short circuit resistance
* @param xSc Short circuit reactance
* @param sRated Rated apparent power (typically in MVA)
* @param sRated Rated apparent power (typically in kVA)
* @param vRatedA Rated voltage of the high voltage winding
* @param vRatedB Rated voltage of the low voltage winding
* @param gM Phase-to-ground conductance
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@

/** Describes the type of a {@link edu.ie3.datamodel.models.input.connector.Transformer3WInput} */
public class Transformer3WTypeInput extends AssetTypeInput {
/** Rated apparent power of the high voltage winding (typically in MVA) */
/** Rated apparent power of the high voltage winding (typically in kVA) */
private final ComparableQuantity<Power> sRatedA; // Hv
/** Rated apparent power of the medium voltage winding (typically in MVA) */
/** Rated apparent power of the medium voltage winding (typically in kVA) */
private final ComparableQuantity<Power> sRatedB; // Mv
/** Rated apparent power of the low voltage windings (typically in MVA) */
/** Rated apparent power of the low voltage windings (typically in kVA) */
private final ComparableQuantity<Power> sRatedC; // Lv
/** Rated voltage magnitude of the high voltage winding (typically in kV) */
private final ComparableQuantity<ElectricPotential> vRatedA; // Hv
Expand Down