Package pulse.problem.schemes
Class MixedScheme
-
- All Implemented Interfaces:
Serializable
,Descriptive
,Reflexive
- Direct Known Subclasses:
MixedLinearisedSolver
public abstract class MixedScheme extends ImplicitScheme
An abstraction describing a weighted semi-implicit finite-difference scheme for solving the one-dimensional heat conduction problem.- See Also:
ClassicalProblem
,NonlinearProblem
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MixedScheme()
Constructs a default semi-implicit scheme using the default values ofGRID_DENSITY
andTAU_FACTOR
.MixedScheme(NumericProperty N, NumericProperty timeFactor)
Constructs a semi-implicit scheme on a one-dimensional grid that is specified by the valuesN
andtimeFactor
.MixedScheme(NumericProperty N, NumericProperty timeFactor, NumericProperty timeLimit)
Constructs a semi-implicit 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 String
toString()
Prints out the description of this problem type.-
Methods inherited from class pulse.problem.schemes.ImplicitScheme
evalRightBoundary, firstBeta, getTridiagonalMatrixAlgorithm, leftBoundary, prepare, setTridiagonalMatrixAlgorithm, timeStep
-
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, prepareStep, pulse, runTimeSequence, runTimeSequence, scaleSolution, set, setDetailsHidden, setGrid, setTimeInterval, setTimeLimit
-
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
-
MixedScheme
public MixedScheme()
Constructs a default semi-implicit scheme using the default values ofGRID_DENSITY
andTAU_FACTOR
.
-
MixedScheme
public MixedScheme(NumericProperty N, NumericProperty timeFactor)
Constructs a semi-implicit 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
-
MixedScheme
public MixedScheme(NumericProperty N, NumericProperty timeFactor, NumericProperty timeLimit)
Constructs a semi-implicit 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
-
toString
public String toString()
Prints out the description of this problem type.- Overrides:
toString
in classImplicitScheme
- Returns:
- a verbose description of the problem.
-
-