Class TransformerResult

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
Transformer2WResult, Transformer3WResult

public abstract class TransformerResult extends ConnectorResult
Abstract class that adds a tap changer position attribute to the ConnectorResult which actually creates a transformer representation.
See Also:
  • Constructor Details

    • TransformerResult

      protected TransformerResult(ZonedDateTime time, UUID inputModel, tech.units.indriya.ComparableQuantity<javax.measure.quantity.ElectricCurrent> iAMag, tech.units.indriya.ComparableQuantity<javax.measure.quantity.Angle> iAAng, tech.units.indriya.ComparableQuantity<javax.measure.quantity.ElectricCurrent> iBMag, tech.units.indriya.ComparableQuantity<javax.measure.quantity.Angle> iBAng, int tapPos)
      Standard constructor with automatic uuid generation.
      Parameters:
      time - date and time when the result is produced
      inputModel - uuid of the input model that produces the result
      iAMag - electric current magnitude @ port A, normally provided in Ampere
      iAAng - electric current angle @ Port A in degree
      iBMag - electric current magnitude @ port B, normally provided in Ampere
      iBAng - electric current angle @ Port B in degree
      tapPos - the current position of the transformers tap changer
    • TransformerResult

      protected TransformerResult(UUID uuid, ZonedDateTime time, UUID inputModel, tech.units.indriya.ComparableQuantity<javax.measure.quantity.ElectricCurrent> iAMag, tech.units.indriya.ComparableQuantity<javax.measure.quantity.Angle> iAAng, tech.units.indriya.ComparableQuantity<javax.measure.quantity.ElectricCurrent> iBMag, tech.units.indriya.ComparableQuantity<javax.measure.quantity.Angle> iBAng, int tapPos)
      Parameters:
      uuid - uuid of this result entity, for automatic uuid generation use primary constructor above
      time - date and time when the result is produced
      inputModel - uuid of the input model that produces the result
      iAMag - electric current magnitude @ port A, normally provided in Ampere
      iAAng - electric current angle @ Port A in degree
      iBMag - electric current magnitude @ port B, normally provided in Ampere
      iBAng - electric current angle @ Port B in degree
      tapPos - the current position of the transformers tap changer
  • Method Details