Class LineResult

All Implemented Interfaces:
Serializable

public class LineResult extends ConnectorResult
Represents calculation results of a LineInput
See Also:
  • Constructor Details

    • LineResult

      public LineResult(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)
      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
    • LineResult

      public LineResult(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)
      Standard constructor which allows uuid provision
      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
  • Method Details