Package pulse.problem.schemes
Class ExplicitScheme
-
- All Implemented Interfaces:
Serializable
,Descriptive
,Reflexive
- Direct Known Subclasses:
ExplicitCoupledSolver
,ExplicitLinearisedSolver
,ExplicitNonlinearSolver
,ExplicitTranslucentSolver
public abstract class ExplicitScheme extends OneDimensionalScheme
This class provides the necessary framework to enable a simple explicit finite-difference scheme (also called the forward-time centred space scheme) for solving the one-dimensional heat conduction problem.- See Also:
ClassicalProblem
,NonlinearProblem
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExplicitScheme()
Constructs a default explicit scheme using the default values ofGRID_DENSITY
andTAU_FACTOR
.ExplicitScheme(NumericProperty N, NumericProperty timeFactor)
Constructs an explicit scheme on a one-dimensional grid that is specified by the valuesN
andtimeFactor
.ExplicitScheme(NumericProperty N, NumericProperty timeFactor, NumericProperty timeLimit)
Constructs an explicit scheme on a one-dimensional grid that is specified by the valuesN
andtimeFactor
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
explicitSolution()
Uses the explicit finite-difference representation of the heat equation to calculate the grid-function everywhere except for the boundaries.double
phi(int i)
String
toString()
Prints out the description of this problem type.-
Methods inherited from class pulse.problem.schemes.OneDimensionalScheme
clearArrays, finaliseStep, getCurrentSolution, getPreviousSolution, setSolutionAt, signal
-
Methods inherited from class pulse.problem.schemes.DifferenceScheme
areDetailsHidden, copy, copyFrom, domain, getCurrentPulseValue, getDiscretePulse, getGrid, getTimeInterval, getTimeLimit, initFrom, listedKeywords, normalOperation, prepare, prepareStep, pulse, runTimeSequence, runTimeSequence, scaleSolution, set, setDetailsHidden, setGrid, setTimeInterval, setTimeLimit, timeStep
-
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
-
ExplicitScheme
public ExplicitScheme()
Constructs a default explicit scheme using the default values ofGRID_DENSITY
andTAU_FACTOR
.
-
ExplicitScheme
public ExplicitScheme(NumericProperty N, NumericProperty timeFactor)
Constructs an explicit scheme on a one-dimensional grid that is specified by the valuesN
andtimeFactor
.- Parameters:
N
- theNumericProperty
with the typeGRID_DENSITY
timeFactor
- theNumericProperty
with the typeTAU_FACTOR
- See Also:
DifferenceScheme
-
ExplicitScheme
public ExplicitScheme(NumericProperty N, NumericProperty timeFactor, NumericProperty timeLimit)
Constructs an explicit scheme on a one-dimensional grid that is specified by the values
N
andtimeFactor
. Sets the time limit of this scheme totimeLimit
- Parameters:
N
- theNumericProperty
with the typeGRID_DENSITY
timeFactor
- theNumericProperty
with the typeTAU_FACTOR
timeLimit
- theNumericProperty
with the typeTIME_LIMIT
- See Also:
DifferenceScheme
-
-
Method Detail
-
explicitSolution
public void explicitSolution()
Uses the explicit finite-difference representation of the heat equation to calculate the grid-function everywhere except for the boundaries. This will update the current solution using the solution from previous time step.
-
phi
public double phi(int i)
-
toString
public String toString()
Prints out the description of this problem type.- Overrides:
toString
in classDifferenceScheme
- Returns:
- a verbose description of the problem.
-
-