Class StorageResult

All Implemented Interfaces:
Serializable

public class StorageResult extends ElectricalEnergyStorageResult
Represents calculation results of a StorageInput
See Also:
  • Constructor Details

    • StorageResult

      public StorageResult(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.Dimensionless> soc)
      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
      soc - the current state of charge of the storage
    • StorageResult

      public StorageResult(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.Dimensionless> soc)
      Standard constructor with automatic uuid generation.
      Parameters:
      uuid - Unique identifier
      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
      soc - the current state of charge of the storage
  • Method Details