Class ThermalSinkResult
java.lang.Object
edu.ie3.datamodel.models.UniqueEntity
edu.ie3.datamodel.models.result.ResultEntity
edu.ie3.datamodel.models.result.thermal.ThermalUnitResult
edu.ie3.datamodel.models.result.thermal.ThermalSinkResult
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ThermalHouseResult
Represents calculation results of a
ThermalSinkInput
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class edu.ie3.datamodel.models.UniqueEntity
UniqueEntity.UniqueEntityBuilder, UniqueEntity.UniqueEntityCopyBuilder<T extends UniqueEntity.UniqueEntityBuilder>
-
Field Summary
Fields inherited from class edu.ie3.datamodel.models.UniqueEntity
UUID_FIELD_NAME
-
Constructor Summary
ModifierConstructorDescriptionprotected
ThermalSinkResult
(ZonedDateTime time, UUID inputModel, tech.units.indriya.ComparableQuantity<javax.measure.quantity.Power> qDot) Standard constructor which includes auto generation of the resulting output models uuid.protected
ThermalSinkResult
(UUID uuid, ZonedDateTime time, UUID inputModel, tech.units.indriya.ComparableQuantity<javax.measure.quantity.Power> qDot) Standard constructor without uuid generation. -
Method Summary
Methods inherited from class edu.ie3.datamodel.models.result.thermal.ThermalUnitResult
equals, getqDot, hashCode, setqDot, toString
Methods inherited from class edu.ie3.datamodel.models.result.ResultEntity
getInputModel, getTime, setInputModel, setTime
Methods inherited from class edu.ie3.datamodel.models.UniqueEntity
getUuid
-
Constructor Details
-
ThermalSinkResult
protected ThermalSinkResult(ZonedDateTime time, UUID inputModel, tech.units.indriya.ComparableQuantity<javax.measure.quantity.Power> qDot) Standard constructor which includes auto generation of the resulting output models uuid.- Parameters:
time
- date and time when the result is producedinputModel
- uuid of the input model that produces the resultqDot
- thermal heat demand of the sink
-
ThermalSinkResult
protected ThermalSinkResult(UUID uuid, ZonedDateTime time, UUID inputModel, tech.units.indriya.ComparableQuantity<javax.measure.quantity.Power> qDot) Standard constructor without uuid generation.- Parameters:
uuid
- uuid of this result entity, for automatic uuid generation use primary constructor abovetime
- date and time when the result is producedinputModel
- uuid of the input model that produces the resultqDot
- thermal heat demand of the sink
-