Package pulse.input
Class InterpolationDataset
- java.lang.Object
-
- pulse.input.InterpolationDataset
-
- All Implemented Interfaces:
Serializable
public class InterpolationDataset extends Object implements Serializable
AnInterpolationDataset
stores data in aList
ofDataEntry<Double,Double>
objects (each containing a 'key' and a 'value') and provides means to interpolate between the 'values' using the 'keys'. This is used mainly to interpolate between available data for thermal properties loaded in tabular representation, e.g. the density and specific heat tables. Features a static list ofExternalDatasetListener
s.- See Also:
ExternalDatasetListener
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InterpolationDataset()
Creates an emptyInterpolationDataset
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(ImmutableDataEntry<Double,Double> entry)
Addsentry
to thisInterpolationDataset
.void
doInterpolation()
Constructs a new Akima spline interpolator and uses the available dataset to produce aSplineInterpolation
.List<ImmutableDataEntry<Double,Double>>
getData()
Extracts all data available in thisInterpolationDataset
.double
interpolateAt(double key)
Provides an interpolated value atkey
based on the available data in theDataEntry List
.
-
-
-
Method Detail
-
interpolateAt
public double interpolateAt(double key)
Provides an interpolated value atkey
based on the available data in theDataEntry List
. The interpolation is done using natural cubic splines, hence it is important that the input noise is minimal.- Parameters:
key
- the argument, at which interpolation needs to be done (e.g. temperature)- Returns:
- a double, representing the interpolated value
-
add
public void add(ImmutableDataEntry<Double,Double> entry)
Addsentry
to thisInterpolationDataset
.- Parameters:
entry
- the entry to be added
-
doInterpolation
public void doInterpolation()
Constructs a new Akima spline interpolator and uses the available dataset to produce aSplineInterpolation
.
-
getData
public List<ImmutableDataEntry<Double,Double>> getData()
Extracts all data available in thisInterpolationDataset
.- Returns:
- the
List
of data.
-
-