Class DifferenceScheme
- java.lang.Object
-
- pulse.util.UpwardsNavigable
-
- pulse.util.Group
-
- pulse.util.Accessible
-
- pulse.util.PropertyHolder
-
- pulse.problem.schemes.DifferenceScheme
-
- All Implemented Interfaces:
Serializable
,Descriptive
,Reflexive
- Direct Known Subclasses:
ADIScheme
,OneDimensionalScheme
public abstract class DifferenceScheme extends PropertyHolder implements Reflexive
ADifferenceScheme
is an abstract class that declares general methods for converting aProblem
to a set of algebraic operations on aGrid
. TheGrid
object defines the time and coordinate partitioning, adjusted to ensure a stable or conditionally-stable behaviour of the solution. TheGrid
is also used to define aDiscretePulse
function.- See Also:
Grid
,DiscretePulse
, Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
DifferenceScheme()
A constructor which merely sets the time limit to its default value.protected
DifferenceScheme(NumericProperty timeLimit)
A constructor for setting the time limit to a pre-set value.
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description boolean
areDetailsHidden()
If true, Lets the UI know that the user only wants to have the most important properties displayed.abstract void
clearArrays()
abstract DifferenceScheme
copy()
Creates aDifferenceScheme
, which is an exact copy of this object.void
copyFrom(DifferenceScheme df)
Copies theGrid
andtimeLimit
fromdf
.abstract Class<? extends Problem>[]
domain()
Retrieves all problem statements that can be solved with this implementation of the difference scheme.abstract void
finaliseStep()
double
getCurrentPulseValue()
DiscretePulse
getDiscretePulse()
Gets the discrete representation ofPulse
on theGrid
.Grid
getGrid()
Gets theGrid
object defining partioning used in thisDifferenceScheme
int
getTimeInterval()
The time interval is the number of discrete timesteps that will be discarded when storing the resulting solution into aHeatingCurve
object, thus ensuring that only a limited set of points is stored.NumericProperty
getTimeLimit()
The time limit (in whatever units thisDifferenceScheme
uses to process the solution), which serves as the ultimate breakpoint for the calculations.void
initFrom(DifferenceScheme another)
Set<NumericPropertyKeyword>
listedKeywords()
The superclass only lists theTIME_LIMIT
property.boolean
normalOperation()
protected void
prepare(Problem problem)
Contains preparatory steps to ensure smooth running of the solver.This includes creating aDiscretePulse
object and adjusting the grid of this scheme to match theDiscretePulse
created for thisproblem
Finally, a heating curve is cleared from the previously calculated values.void
prepareStep(int m)
Do preparatory calculations that depend only on the time variable, e.g., calculate the pulse power.double
pulse(int m)
void
runTimeSequence(Problem problem)
void
runTimeSequence(Problem problem, double offset, double endTime)
void
scaleSolution(Problem problem)
void
set(NumericPropertyKeyword type, NumericProperty property)
An abstract method, which must be overriden to gain access over setting the values of all relevant (selected by the programmer)NumericPropert
ies in subclasses ofAccessible
.static void
setDetailsHidden(boolean b)
Changes the policy of displaying a detailed information about this scheme.void
setGrid(Grid grid)
Sets the grid and adopts it as its child.void
setTimeInterval(int timeInterval)
Sets the time interval to the argument of this method.void
setTimeLimit(NumericProperty timeLimit)
Sets the time limit (in units defined by the correspondingNumericProperty
), which serves as the breakpoint for the calculations.abstract double
signal()
abstract void
timeStep(int m)
String
toString()
-
Methods inherited from class pulse.util.PropertyHolder
addListener, data, describe, firePropertyChanged, getDescriptor, getListeners, getPrefix, ignoreSiblings, initListeners, isListedNumericType, isListedParameter, listedTypes, 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
-
DifferenceScheme
protected DifferenceScheme()
A constructor which merely sets the time limit to its default value.
-
DifferenceScheme
protected DifferenceScheme(NumericProperty timeLimit)
A constructor for setting the time limit to a pre-set value.- Parameters:
timeLimit
- the calculation time limit
-
-
Method Detail
-
initFrom
public void initFrom(DifferenceScheme another)
-
copyFrom
public void copyFrom(DifferenceScheme df)
Copies theGrid
andtimeLimit
fromdf
.- Parameters:
df
- the DifferenceScheme to copy from
-
prepare
protected void prepare(Problem problem) throws SolverException
Contains preparatory steps to ensure smooth running of the solver.This includes creating a
DiscretePulse
object and adjusting the grid of this scheme to match theDiscretePulse
created for thisproblem
Finally, a heating curve is cleared from the previously calculated values.All subclasses of
DifferenceScheme
should override and explicitly call this superclass method where appropriate.- Parameters:
problem
- the heat problem to be solved- Throws:
SolverException
-
runTimeSequence
public void runTimeSequence(Problem problem) throws SolverException
- Throws:
SolverException
-
scaleSolution
public void scaleSolution(Problem problem)
-
runTimeSequence
public void runTimeSequence(Problem problem, double offset, double endTime) throws SolverException
- Throws:
SolverException
-
pulse
public double pulse(int m)
-
prepareStep
public void prepareStep(int m)
Do preparatory calculations that depend only on the time variable, e.g., calculate the pulse power.- Parameters:
m
- the time step number
-
normalOperation
public boolean normalOperation()
-
listedKeywords
public Set<NumericPropertyKeyword> listedKeywords()
The superclass only lists theTIME_LIMIT
property.- Overrides:
listedKeywords
in classPropertyHolder
- Returns:
- a set of
NumericPropertyKeyword
instances, which have been explicitly marked as a listed parameter for thisPropertyHolder
.
-
getDiscretePulse
public final DiscretePulse getDiscretePulse()
Gets the discrete representation ofPulse
on theGrid
.- Returns:
- the discrete pulse
- See Also:
Pulse
-
getGrid
public final Grid getGrid()
Gets theGrid
object defining partioning used in thisDifferenceScheme
- Returns:
- the grid
-
setGrid
public final void setGrid(Grid grid)
Sets the grid and adopts it as its child.- Parameters:
grid
- the grid
-
getTimeInterval
public final int getTimeInterval()
The time interval is the number of discrete timesteps that will be discarded when storing the resulting solution into aHeatingCurve
object, thus ensuring that only a limited set of points is stored.- Returns:
- the time interval
-
setTimeInterval
public final void setTimeInterval(int timeInterval)
Sets the time interval to the argument of this method.- Parameters:
timeInterval
- a positive integer.
-
areDetailsHidden
public final boolean areDetailsHidden()
If true, Lets the UI know that the user only wants to have the most important properties displayed. Otherwise this will signal all properties need to be displayed.- Overrides:
areDetailsHidden
in classPropertyHolder
- Returns:
true
if the auto-adjustable numeric properties need to stay hidden,false
otherwise.
-
setDetailsHidden
public static final void setDetailsHidden(boolean b)
Changes the policy of displaying a detailed information about this scheme.- Parameters:
b
- a boolean.
-
getTimeLimit
public final NumericProperty getTimeLimit()
The time limit (in whatever units thisDifferenceScheme
uses to process the solution), which serves as the ultimate breakpoint for the calculations.- Returns:
- the
NumericProperty
with the typeTIME_LIMIT
- See Also:
NumericPropertyKeyword
-
getCurrentPulseValue
public double getCurrentPulseValue()
-
setTimeLimit
public final void setTimeLimit(NumericProperty timeLimit)
Sets the time limit (in units defined by the correspondingNumericProperty
), which serves as the breakpoint for the calculations.- Parameters:
timeLimit
- theNumericProperty
with the typeTIME_LIMIT
- See Also:
NumericPropertyKeyword
-
set
public void set(NumericPropertyKeyword type, NumericProperty property)
Description copied from class:Accessible
An abstract method, which must be overriden to gain access over setting the values of all relevant (selected by the programmer)
NumericPropert
ies in subclasses ofAccessible
. Typically this involves aswitch
statement that goes through the different options for thetype
and invokes differentset(...)
methods to update the matchingNumericProperty
withproperty
.- Specified by:
set
in classAccessible
- Parameters:
type
- the type, which must be equal by definition toproperty.getType()
.property
- the property, which contains new information.
-
signal
public abstract double signal()
-
clearArrays
public abstract void clearArrays()
-
timeStep
public abstract void timeStep(int m) throws SolverException
- Throws:
SolverException
-
finaliseStep
public abstract void finaliseStep() throws SolverException
- Throws:
SolverException
-
domain
public abstract Class<? extends Problem>[] domain()
Retrieves all problem statements that can be solved with this implementation of the difference scheme.- Returns:
- an array containing subclasses of the
Problem
class which can be used as input for this difference scheme.
-
copy
public abstract DifferenceScheme copy()
Creates aDifferenceScheme
, which is an exact copy of this object.- Returns:
- an exact copy of this
DifferenceScheme
.
-
-