Class HpResult

All Implemented Interfaces:
Serializable

public class HpResult extends SystemParticipantWithHeatResult
Represents calculation results of a HpInput
See Also:
  • Constructor Details

    • HpResult

      public HpResult(ZonedDateTime time, UUID inputModel, tech.units.indriya.ComparableQuantity<javax.measure.quantity.Power> p, tech.units.indriya.ComparableQuantity<javax.measure.quantity.Power> q, tech.units.indriya.ComparableQuantity<javax.measure.quantity.Power> qDot)
      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
      p - active power output normally provided in MW
      q - reactive power output normally provided in MVAr
      qDot - provided head energy
    • HpResult

      public HpResult(UUID uuid, ZonedDateTime time, UUID inputModel, tech.units.indriya.ComparableQuantity<javax.measure.quantity.Power> p, tech.units.indriya.ComparableQuantity<javax.measure.quantity.Power> q, tech.units.indriya.ComparableQuantity<javax.measure.quantity.Power> qDot)
      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
      p - active power output normally provided in MW
      q - reactive power output normally provided in MVAr
      qDot - provided head energy
  • Method Details