Class HeatingCurve
-
- All Implemented Interfaces:
Serializable
,Descriptive
public class HeatingCurve extends AbstractData
TheHeatingCurve
represents a time-temperature profile (aAbstractData
instance) generated using a calculation algorithm implemented by aProblem
'sSolver
. In addition to the time and signal lists defined in the super-class, it features baseline-corrected signal values stored in a separate list.TheHeatingCurve
may haveHeatingCurveListener
s to process simple events. To enable comparison withExperimentalData
, aHeatingCurve
builds a spline interpolation of its time - baseline-adjusted signal values, thus representing a continuous curve, rather than just a collection of discrete data.- See Also:
HeatingCurveListener
,org.apache.commons.math3.analysis.interpolation.UnivariateInterpolation
, Serialized Form
-
-
Field Summary
-
Fields inherited from class pulse.AbstractData
signal, time
-
-
Constructor Summary
Constructors Modifier Constructor Description HeatingCurve()
Calls the super-constructor and initialises the baseline-corrected signal list.protected
HeatingCurve(List<Double> time, List<Double> signal, double startTime, String name)
HeatingCurve(HeatingCurve c)
Copy constructor.HeatingCurve(NumericProperty count)
Creates aHeatingCurve
, where the number of elements in thetime
,signal
, andadjustedSignal
collections are set tocount.getValue()
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addHeatingCurveListener(HeatingCurveListener l)
void
apply(Baseline baseline)
Adds the baseline value to each element of thesignal
list.void
clear()
Clears all elements from the threeList
objects, thus releasing memory.void
copyToLastCalculation()
boolean
equals(Object o)
HeatingCurve
extendedTo(ExperimentalData data, Baseline baseline)
This creates a newHeatingCurve
to match the time boundaries of thedata
.List<Double>
getBaselineCorrectedData()
org.apache.commons.math3.analysis.UnivariateFunction
getInterpolation()
NumericProperty
getTimeShift()
The time shift is the position of the 'zero-time'.void
initListeners()
double
interpolateSignalAt(double x)
Set<NumericPropertyKeyword>
listedKeywords()
ListsNUM_POINTS
as an accessible property of thisPropertyHolder
.double
maxAdjustedSignal()
Retrieves the simple maximum (in arbitrary units) of the baseline-corrected temperature list.void
remove(int i)
Removes an element with the indexi
from all threeList
s (time, signal, and baseline-corrected signal).void
removeListeners()
void
scale(double scale)
Scales the temperature values by a factor ofscale
.void
set(NumericPropertyKeyword type, NumericProperty property)
Callssuper.set
and provides write access to theTIME_SHIFT
property.void
setTimeShift(NumericProperty startTime)
Sets the time shift and triggersTIME_ORIGIN_CHANGED
inCurveEvent
.double
signalAt(int index)
Retrieves the baseline-corrected temperature corresponding toindex
in the respectiveList
.double
timeAt(int index)
Retrieves the time from the stored list of values, adding the value ofstartTime
to the result.-
Methods inherited from class pulse.AbstractData
actualNumPoints, addPoint, apparentMaximum, getName, getNumPoints, getSignalData, getTimeSequence, ignoreSiblings, incrementCount, isFull, setName, setNumPoints, setSignalAt, setTimeAt, timeLimit, toString
-
Methods inherited from class pulse.util.PropertyHolder
addListener, areDetailsHidden, data, describe, firePropertyChanged, getDescriptor, getListeners, getPrefix, isListedNumericType, isListedParameter, listedTypes, numericData, parameterListChanged, setPrefix, updateProperties, updateProperty
-
Methods inherited from class pulse.util.Accessible
accessibleChildren, genericProperties, genericProperty, numericProperties, numericProperty, property, update, update
-
Methods inherited from class pulse.util.UpwardsNavigable
addHierarchyListener, getHierarchyListeners, getParent, identify, removeHierarchyListener, removeHierarchyListeners, setParent, specificAncestor, tellParent
-
-
-
-
Constructor Detail
-
HeatingCurve
protected HeatingCurve(List<Double> time, List<Double> signal, double startTime, String name)
-
HeatingCurve
public HeatingCurve()
Calls the super-constructor and initialises the baseline-corrected signal list. Creates aSplineInterpolator
object.
-
HeatingCurve
public HeatingCurve(HeatingCurve c)
Copy constructor. In addition to copying the data, also re-builds the splines.- Parameters:
c
- another instance of this class- See Also:
refreshInterpolation()
-
HeatingCurve
public HeatingCurve(NumericProperty count)
Creates aHeatingCurve
, where the number of elements in thetime
,signal
, andadjustedSignal
collections are set tocount.getValue()
. The time shift is initialized with a default value.- Parameters:
count
- TheNumericProperty
that is derived from theNumericPropertyKeyword.NUMPOINTS
.
-
-
Method Detail
-
initListeners
public void initListeners()
- Overrides:
initListeners
in classPropertyHolder
-
copyToLastCalculation
public void copyToLastCalculation()
-
clear
public void clear()
Description copied from class:AbstractData
Clears all elements from the threeList
objects, thus releasing memory.- Overrides:
clear
in classAbstractData
-
timeAt
public double timeAt(int index)
Retrieves the time from the stored list of values, adding the value ofstartTime
to the result.- Overrides:
timeAt
in classAbstractData
- Parameters:
index
- the index of the element to be returned- Returns:
- time at
index
+ startTime
-
signalAt
public double signalAt(int index)
Retrieves the baseline-corrected temperature corresponding toindex
in the respectiveList
.- Overrides:
signalAt
in classAbstractData
- Parameters:
index
- the index of the element- Returns:
- a double, representing the baseline-corrected temperature at
index
-
scale
public void scale(double scale)
Scales the temperature values by a factor ofscale
.This is done by manually setting each temperature value to
This method is used in the DifferenceScheme subclasses when a dimensionless solution needs to be re-scaled to the given maximum temperature (usually matching theT*scale
, where T is the current temperature value at this index. Finally. applies the baseline to the scaled temperature values.ExperimentalData
, but also used as a search variable by theSearchTask
.Triggers a
RESCALED
CurveEvent
.- Parameters:
scale
- the scale- See Also:
DifferenceScheme
,Problem
,SearchTask
,CurveEvent
-
maxAdjustedSignal
public double maxAdjustedSignal()
Retrieves the simple maximum (in arbitrary units) of the baseline-corrected temperature list.- Returns:
- the simple maximum of the baseline-adjusted temperature.
-
apply
public void apply(Baseline baseline)
Adds the baseline value to each element of thesignal
list.The
baseline.valueAt
method is explicitly invoked for alltime
values, and the result of adding the baseline value to the correspondingsignal
is assigned to a position in theadjustedSignal
list.- Parameters:
baseline
- the baseline. Note it may not specifically belong to this heating curve.
-
extendedTo
public final HeatingCurve extendedTo(ExperimentalData data, Baseline baseline)
This creates a newHeatingCurve
to match the time boundaries of thedata
.Curves derived in this way are called extended and are used primarily to visually inspect how the calculated baseline correlates with the
data
at timest < 0
. This method is not used in any calculation and is introduced primarily because the search for the reverse solution of the heat problems only regards time value at , whereas in reality it may not be consistent with the experimental baseline value att < 0
.- Parameters:
data
- the experimental data, with a time range broader than the time range of thisHeatingCurve
.baseline
-- Returns:
- a new
HeatingCurve
, extended to match the time limits ofdata
-
set
public void set(NumericPropertyKeyword type, NumericProperty property)
Callssuper.set
and provides write access to theTIME_SHIFT
property.- Overrides:
set
in classAbstractData
- Parameters:
property
- the property of the typeNumericPropertyKeyword.NUMPOINTS
type
- must be equal toNumericPropertyKeyword.NUMPOINTS
-
listedKeywords
public Set<NumericPropertyKeyword> listedKeywords()
Description copied from class:AbstractData
ListsNUM_POINTS
as an accessible property of thisPropertyHolder
.- Overrides:
listedKeywords
in classAbstractData
- Returns:
TIME_SHIFT
andNUM_POINTS
.
-
remove
public void remove(int i)
Removes an element with the indexi
from all threeList
s (time, signal, and baseline-corrected signal).- Overrides:
remove
in classAbstractData
- Parameters:
i
- the element to be removed
-
getTimeShift
public NumericProperty getTimeShift()
The time shift is the position of the 'zero-time'.- Returns:
- a
TIME_SHIFT
property
-
setTimeShift
public void setTimeShift(NumericProperty startTime)
Sets the time shift and triggersTIME_ORIGIN_CHANGED
inCurveEvent
. Triggers thefirePropertyChanged
.- Parameters:
startTime
- the new start time value
-
getInterpolation
public org.apache.commons.math3.analysis.UnivariateFunction getInterpolation()
-
addHeatingCurveListener
public void addHeatingCurveListener(HeatingCurveListener l)
-
removeListeners
public void removeListeners()
- Overrides:
removeListeners
in classPropertyHolder
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classAbstractData
- Returns:
true
only ifo
is anAbstractData
containing all the elements of the time and signal lists ofthis
object.
-
interpolateSignalAt
public double interpolateSignalAt(double x)
-
-