Package pulse.problem.statements
Class NonlinearProblem
- java.lang.Object
-
- pulse.util.UpwardsNavigable
-
- pulse.util.Group
-
- pulse.util.Accessible
-
- pulse.util.PropertyHolder
-
- pulse.problem.statements.Problem
-
- pulse.problem.statements.ClassicalProblem
-
- pulse.problem.statements.NonlinearProblem
-
- All Implemented Interfaces:
Serializable
,Optimisable
,Descriptive
,Reflexive
- Direct Known Subclasses:
ParticipatingMedium
public class NonlinearProblem extends ClassicalProblem
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NonlinearProblem()
NonlinearProblem(NonlinearProblem p)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
assign(ParameterVector params)
Does the same as super-class method plus updates the laser energy, if needed.Problem
copy()
Class<? extends DifferenceScheme>
defaultScheme()
NumericProperty
getThermalConductivity()
boolean
isReady()
Set<NumericPropertyKeyword>
listedKeywords()
Listed parameters include:MAXTEMP, DIFFUSIVITY, THICKNESS, HEAT_LOSS_FRONT, HEAT_LOSS_REAR
.void
optimisationVector(ParameterVector output)
Does the same as super-class method plus extracts the laser energy and stores it in theoutput
, if needed.void
retrieveData(ExperimentalData c)
This will use the data contained inc
to estimate the detector signal span and the thermal diffusivity for thisProblem
.String
toString()
-
Methods inherited from class pulse.problem.statements.ClassicalProblem
getGeometricFactor, initProperties, initProperties, set, setGeometricFactor
-
Methods inherited from class pulse.problem.statements.Problem
areDetailsHidden, availableSolutions, discretePulseOn, estimateSignalRange, getBaseline, getBaselineDescriptor, getComplexity, getHeatingCurve, getProperties, getPulse, isEnabled, listedTypes, setBaseline, setComplexity, setDetailsHidden, setHeatingCurve, setProperties, setPulse
-
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
-
NonlinearProblem
public NonlinearProblem()
-
NonlinearProblem
public NonlinearProblem(NonlinearProblem p)
-
-
Method Detail
-
isReady
public boolean isReady()
- Overrides:
isReady
in classClassicalProblem
-
retrieveData
public void retrieveData(ExperimentalData c)
Description copied from class:Problem
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.- Overrides:
retrieveData
in classProblem
- Parameters:
c
- theExperimentalData
object
-
listedKeywords
public Set<NumericPropertyKeyword> listedKeywords()
Description copied from class:Problem
Listed parameters include:MAXTEMP, DIFFUSIVITY, THICKNESS, HEAT_LOSS_FRONT, HEAT_LOSS_REAR
.- Overrides:
listedKeywords
in classClassicalProblem
- Returns:
- a set of
NumericPropertyKeyword
instances, which have been explicitly marked as a listed parameter for thisPropertyHolder
.
-
toString
public String toString()
- Overrides:
toString
in classClassicalProblem
-
getThermalConductivity
public NumericProperty getThermalConductivity()
-
assign
public void assign(ParameterVector params) throws SolverException
Does the same as super-class method plus updates the laser energy, if needed.- Specified by:
assign
in interfaceOptimisable
- Overrides:
assign
in classClassicalProblem
- Parameters:
params
-- Throws:
SolverException
- See Also:
Problem.listedTypes()
-
optimisationVector
public void optimisationVector(ParameterVector output)
Does the same as super-class method plus extracts the laser energy and stores it in theoutput
, if needed.- Specified by:
optimisationVector
in interfaceOptimisable
- Overrides:
optimisationVector
in classClassicalProblem
- Parameters:
output
-flags
-- See Also:
Problem.listedTypes()
-
defaultScheme
public Class<? extends DifferenceScheme> defaultScheme()
- Overrides:
defaultScheme
in classClassicalProblem
-
copy
public Problem copy()
- Overrides:
copy
in classClassicalProblem
-
-