HeatData

A data object that contains a history of heat data for one process step.

Constructors

DescriptionType
Constructs a new instance of the HeatData class
(
elements: number,
minTime: number,
maxTime: number
) => void

Methods

NameDescriptionType
addValues
Adds the given value for a given time span. This is used internally to set up the heat data.
(
from: number,
to: number,
value: number
) => void
getMaxValue
Returns the maximum heat value over the whole time span that is covered by this HeatData.
() => number
getValue
Returns the heat value at a specific timestamp.
(
timestamp: number
) => number