Skip to content

Commit

Permalink
Some minor changes through spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
staudtMarius committed Apr 8, 2022
1 parent 5271e85 commit dd1842a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
Expand Up @@ -83,9 +83,12 @@ protected Transformer3WTypeInput buildModel(SimpleEntityData data) {
data.getQuantity(V_RATED_B, StandardUnits.RATED_VOLTAGE_MAGNITUDE);
ComparableQuantity<ElectricPotential> vRatedC =
data.getQuantity(V_RATED_C, StandardUnits.RATED_VOLTAGE_MAGNITUDE);
ComparableQuantity<ElectricResistance> rScA = data.getQuantity(R_SC_A, StandardUnits.RESISTANCE);
ComparableQuantity<ElectricResistance> rScB = data.getQuantity(R_SC_B, StandardUnits.RESISTANCE);
ComparableQuantity<ElectricResistance> rScC = data.getQuantity(R_SC_C, StandardUnits.RESISTANCE);
ComparableQuantity<ElectricResistance> rScA =
data.getQuantity(R_SC_A, StandardUnits.RESISTANCE);
ComparableQuantity<ElectricResistance> rScB =
data.getQuantity(R_SC_B, StandardUnits.RESISTANCE);
ComparableQuantity<ElectricResistance> rScC =
data.getQuantity(R_SC_C, StandardUnits.RESISTANCE);
ComparableQuantity<ElectricResistance> xScA = data.getQuantity(X_SC_A, StandardUnits.REACTANCE);
ComparableQuantity<ElectricResistance> xScB = data.getQuantity(X_SC_B, StandardUnits.REACTANCE);
ComparableQuantity<ElectricResistance> xScC = data.getQuantity(X_SC_C, StandardUnits.REACTANCE);
Expand Down
6 changes: 4 additions & 2 deletions src/main/java/edu/ie3/datamodel/models/StandardUnits.java
Expand Up @@ -59,9 +59,11 @@ public class StandardUnits {
/** Admittance per length (mainly for lines) in µS/km */
public static final Unit<SpecificConductance> ADMITTANCE_PER_LENGTH = MICRO_SIEMENS_PER_KILOMETRE;
/** Conductance per length (mainly for lines) in µS/km */
public static final Unit<SpecificConductance> CONDUCTANCE_PER_LENGTH = MICRO_SIEMENS_PER_KILOMETRE;
public static final Unit<SpecificConductance> CONDUCTANCE_PER_LENGTH =
MICRO_SIEMENS_PER_KILOMETRE;
/** Susceptance per length (mainly for lines) in µS/km */
public static final Unit<SpecificConductance> SUSCEPTANCE_PER_LENGTH = MICRO_SIEMENS_PER_KILOMETRE;
public static final Unit<SpecificConductance> SUSCEPTANCE_PER_LENGTH =
MICRO_SIEMENS_PER_KILOMETRE;
/** Target voltage magnitude in p.U. */
public static final Unit<Dimensionless> TARGET_VOLTAGE_MAGNITUDE = PU;
/** Voltage magnitude (mainly for result purposes) in p.U. */
Expand Down

0 comments on commit dd1842a

Please sign in to comment.