Class Problem
- java.lang.Object
-
- pulse.util.UpwardsNavigable
-
- pulse.util.Group
-
- pulse.util.Accessible
-
- pulse.util.PropertyHolder
-
- pulse.problem.statements.Problem
-
- All Implemented Interfaces:
Serializable
,Optimisable
,Descriptive
,Reflexive
- Direct Known Subclasses:
ClassicalProblem
public abstract class Problem extends PropertyHolder implements Reflexive, Optimisable
AProblem
is an abstract class defining the general rules for handling heat conduction problems, and also providing access to the basic properties used in the calculation with one of theDifferenceScheme
s. Most importantly, this class sets out the procedures for reading and writing the vector argument of the objective function for solving the optimisation problem.- See Also:
DifferenceScheme
, Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description boolean
areDetailsHidden()
Checks whether some 'advanced' details should stay hidden by the GUI when customising theProblem
statement.void
assign(ParameterVector params)
Assigns parameter values of thisProblem
using the optimisation vectorparams
.List<DifferenceScheme>
availableSolutions()
Lists the availableDifferenceScheme
s for thisProblem
.abstract Problem
copy()
abstract Class<? extends DifferenceScheme>
defaultScheme()
DiscretePulse
discretePulseOn(Grid grid)
Constructs aDiscretePulse
on the specifiedgrid
using thePulse
corresponding to thisProblem
.void
estimateSignalRange(ExperimentalData c)
The signal range is defined as , where and are robust to outliers.Baseline
getBaseline()
Return theBaseline
of thisProblem
.InstanceDescriptor<? extends Baseline>
getBaselineDescriptor()
ProblemComplexity
getComplexity()
HeatingCurve
getHeatingCurve()
ThermalProperties
getProperties()
Pulse
getPulse()
abstract void
initProperties()
abstract void
initProperties(ThermalProperties properties)
boolean
isEnabled()
Used for debugging.abstract boolean
isReady()
Set<NumericPropertyKeyword>
listedKeywords()
Listed parameters include:MAXTEMP, DIFFUSIVITY, THICKNESS, HEAT_LOSS_FRONT, HEAT_LOSS_REAR
.List<Property>
listedTypes()
By default, collects a list of default properties corresponding to types defined by listedKeywords().void
optimisationVector(ParameterVector output)
Calculates the vector argument defined on to the scalar objective function for thisProblem
.void
retrieveData(ExperimentalData c)
This will use the data contained inc
to estimate the detector signal span and the thermal diffusivity for thisProblem
.void
set(NumericPropertyKeyword type, NumericProperty value)
Used to change the parameter values of thisProblem
.void
setBaseline(Baseline baseline)
Sets a new baseline.void
setComplexity(ProblemComplexity complexity)
static void
setDetailsHidden(boolean b)
Allows to either hide or display all 'advanced' settings for thisProblem
.void
setHeatingCurve(HeatingCurve curve)
void
setProperties(ThermalProperties properties)
void
setPulse(Pulse pulse)
Sets thepulse
of thisProblem
and assigns thisProblem
as its parent.String
toString()
-
Methods inherited from class pulse.util.PropertyHolder
addListener, data, describe, firePropertyChanged, getDescriptor, getListeners, getPrefix, ignoreSiblings, initListeners, isListedNumericType, isListedParameter, numericData, parameterListChanged, removeListeners, 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
-
Problem
protected Problem()
Creates aProblem
with default parameters (as found in the .XML file).First, invokes the
super()
constructor ofPropertyHolder
to initialisePropertyHolderListener
s, then initialises the variables and creates defaultPulse
andHeatingCurve
, setting this object as their parent.
-
Problem
public Problem(Problem p)
Copies all essential parameters fromp
, excluding the heating curve, which is created anew.- Parameters:
p
- theProblem
to replicate
-
-
Method Detail
-
copy
public abstract Problem copy()
-
setHeatingCurve
public final void setHeatingCurve(HeatingCurve curve)
-
availableSolutions
public final List<DifferenceScheme> availableSolutions()
Lists the availableDifferenceScheme
s for thisProblem
.This is done utilising the
Reflexive
interface implemented by the classDifferenceSheme
. This method dynamically locates any subclasses of theDifferenceScheme
in the associated package (note this can be extended to include plugins) and checks whether any of the instances of those schemes return a non-null
result when calling thesolver(Problem)
method.- Returns:
- a
List
of availableDifferenceScheme
s for solving thisProblem
.
-
set
public void set(NumericPropertyKeyword type, NumericProperty value)
Used to change the parameter values of thisProblem
. It is only allowed to use those types ofNumericPropery
that are listed by thelistedParameters()
.- Specified by:
set
in classAccessible
- Parameters:
type
- the type, which must be equal by definition toproperty.getType()
.value
- the property, which contains new information.- See Also:
listedTypes()
-
getHeatingCurve
public final HeatingCurve getHeatingCurve()
-
getPulse
public final Pulse getPulse()
-
setPulse
public final void setPulse(Pulse pulse)
Sets thepulse
of thisProblem
and assigns thisProblem
as its parent.- Parameters:
pulse
- aPulse
object
-
retrieveData
public void retrieveData(ExperimentalData c)
This will use the data contained inc
to estimate the detector signal span and the thermal diffusivity for thisProblem
. Note these estimates may be very rough.- Parameters:
c
- theExperimentalData
object
-
estimateSignalRange
public void estimateSignalRange(ExperimentalData c)
The signal range is defined as , where and are robust to outliers. This calls themaxTemperature
method ofc
and uses the baseline value at0
as the value.- Parameters:
c
- theExperimentalData
object
-
optimisationVector
public void optimisationVector(ParameterVector output)
Calculates the vector argument defined on to the scalar objective function for thisProblem
. To fill the vector with data, only those parameters from thisProblem
will be used which are defined by theflags
, e.g. if the flag associated with theHEAT_LOSS
keyword is set to false, its value will be skipped when creating the vector.- Specified by:
optimisationVector
in interfaceOptimisable
- Parameters:
output
- the output vector where the result will be stored- See Also:
listedTypes()
-
assign
public void assign(ParameterVector params) throws SolverException
Assigns parameter values of thisProblem
using the optimisation vectorparams
. Only those parameters will be updated, the types of which are listed as indices in theparams
vector.- Specified by:
assign
in interfaceOptimisable
- Parameters:
params
- the optimisation vector, containing a similar set of parameters to thisProblem
- Throws:
SolverException
- ifparams
contains invalid parameter values- See Also:
listedTypes()
-
areDetailsHidden
public boolean areDetailsHidden()
Checks whether some 'advanced' details should stay hidden by the GUI when customising theProblem
statement.- Overrides:
areDetailsHidden
in classPropertyHolder
- Returns:
true
if the user does not want to see the details (by default),false
otherwise.
-
setDetailsHidden
public static final void setDetailsHidden(boolean b)
Allows to either hide or display all 'advanced' settings for thisProblem
.- Parameters:
b
-true
if the user does not want to see the details,false
otherwise.
-
isEnabled
public boolean isEnabled()
Used for debugging. Initially, the nonlinear and two-dimensional problem statements are disabled, since they have not yet been thoroughly tested- Returns:
true
if this problem statement has been enabled,false
otherwise
-
discretePulseOn
public DiscretePulse discretePulseOn(Grid grid)
Constructs aDiscretePulse
on the specifiedgrid
using thePulse
corresponding to thisProblem
.- Parameters:
grid
- the grid- Returns:
- a
DiscretePulse
objects constructed for thisProblem
and thegrid
-
listedKeywords
public Set<NumericPropertyKeyword> listedKeywords()
Listed parameters include:MAXTEMP, DIFFUSIVITY, THICKNESS, HEAT_LOSS_FRONT, HEAT_LOSS_REAR
.- Overrides:
listedKeywords
in classPropertyHolder
- Returns:
- a set of
NumericPropertyKeyword
instances, which have been explicitly marked as a listed parameter for thisPropertyHolder
.
-
listedTypes
public List<Property> listedTypes()
Description copied from class:PropertyHolder
By default, collects a list of default properties corresponding to types defined by listedKeywords(). However, this method is overridable to include non-numeric properties.
- Overrides:
listedTypes
in classPropertyHolder
- Returns:
- a list of
Property
instances, which have been explicitly marked as a listed parameter for thisPropertyHolder
.
-
getComplexity
public final ProblemComplexity getComplexity()
-
setComplexity
public final void setComplexity(ProblemComplexity complexity)
-
getBaseline
public Baseline getBaseline()
Return theBaseline
of thisProblem
.- Returns:
- the baseline
-
setBaseline
public final void setBaseline(Baseline baseline)
Sets a new baseline. Callsapply(baseline)
on theHeatingCurve
when done and sets theparent
of the baseline to this object.- Parameters:
baseline
- the new baseline.
-
getBaselineDescriptor
public final InstanceDescriptor<? extends Baseline> getBaselineDescriptor()
-
getProperties
public final ThermalProperties getProperties()
-
setProperties
public final void setProperties(ThermalProperties properties)
-
initProperties
public abstract void initProperties()
-
initProperties
public abstract void initProperties(ThermalProperties properties)
-
defaultScheme
public abstract Class<? extends DifferenceScheme> defaultScheme()
-
isReady
public abstract boolean isReady()
-
-