Package pulse.math.filters
Class HalfTimeCalculator
- java.lang.Object
-
- pulse.math.filters.HalfTimeCalculator
-
- All Implemented Interfaces:
Serializable
public class HalfTimeCalculator extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static double
FAIL_SAFE_FACTOR
A fail-safe factor.
-
Constructor Summary
Constructors Constructor Description HalfTimeCalculator(DiscreteInput input)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
calculate()
Calculates the approximate half-rise time used for crude estimation of thermal diffusivity.DiscreteInput
getData()
Point2D
getFilteredMaximum()
double
getHalfTime()
Retrieves the half-time value of this dataset, which is equal to the time needed to reach half of the signal maximum.
-
-
-
Field Detail
-
FAIL_SAFE_FACTOR
public static final double FAIL_SAFE_FACTOR
A fail-safe factor.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
HalfTimeCalculator
public HalfTimeCalculator(DiscreteInput input)
-
-
Method Detail
-
calculate
public void calculate()
Calculates the approximate half-rise time used for crude estimation of thermal diffusivity.This uses the
runningAverage
method by applying the default reduction factor of . The calculation is based on finding the approximate value corresponding to the half-maximum of the temperature. The latter is calculated using the running average curve. The index corresponding to the closest temperature value available for that curve is used to retrieve the half-rise time (which also has the same index). If this fails, i.e. the associated index is less than 1, this will print out a warning message and still assign a value to the half-time variable equal to the acquisition time divided by a fail-safe factor 10.0.- See Also:
getHalfTime()
-
getHalfTime
public final double getHalfTime()
Retrieves the half-time value of this dataset, which is equal to the time needed to reach half of the signal maximum.- Returns:
- the half-time value.
-
getFilteredMaximum
public final Point2D getFilteredMaximum()
-
getData
public DiscreteInput getData()
-
-