Package pulse.problem.schemes
Class CoupledImplicitScheme
-
- All Implemented Interfaces:
Serializable
,Descriptive
,Reflexive
- Direct Known Subclasses:
ImplicitCoupledSolver
,MixedCoupledSolver
public abstract class CoupledImplicitScheme extends ImplicitScheme
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CoupledImplicitScheme(NumericProperty N, NumericProperty timeFactor)
CoupledImplicitScheme(NumericProperty N, NumericProperty timeFactor, NumericProperty timeLimit)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<? extends Problem>[]
domain()
Retrieves all problem statements that can be solved with this implementation of the difference scheme.void
finaliseStep()
Overwrites previously calculated temperature values with the calculations made at the current time stepRTECalculationStatus
getCalculationStatus()
RadiativeTransferCoupling
getCoupling()
boolean
isAutoUpdateFluxes()
Set<NumericPropertyKeyword>
listedKeywords()
The superclass only lists theTIME_LIMIT
property.boolean
normalOperation()
void
setAutoUpdateFluxes(boolean auto)
void
setCalculationStatus(RTECalculationStatus calculationStatus)
void
setCoupling(RadiativeTransferCoupling coupling)
-
Methods inherited from class pulse.problem.schemes.ImplicitScheme
evalRightBoundary, firstBeta, getTridiagonalMatrixAlgorithm, leftBoundary, prepare, setTridiagonalMatrixAlgorithm, timeStep, toString
-
Methods inherited from class pulse.problem.schemes.OneDimensionalScheme
clearArrays, getCurrentSolution, getPreviousSolution, setSolutionAt, signal
-
Methods inherited from class pulse.problem.schemes.DifferenceScheme
areDetailsHidden, copy, copyFrom, getCurrentPulseValue, getDiscretePulse, getGrid, getTimeInterval, getTimeLimit, initFrom, 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
-
CoupledImplicitScheme
public CoupledImplicitScheme(NumericProperty N, NumericProperty timeFactor)
-
CoupledImplicitScheme
public CoupledImplicitScheme(NumericProperty N, NumericProperty timeFactor, NumericProperty timeLimit)
-
-
Method Detail
-
finaliseStep
public void finaliseStep() throws SolverException
Description copied from class:OneDimensionalScheme
Overwrites previously calculated temperature values with the calculations made at the current time step- Overrides:
finaliseStep
in classOneDimensionalScheme
- Throws:
SolverException
- if the calculation failed
-
listedKeywords
public Set<NumericPropertyKeyword> listedKeywords()
Description copied from class:DifferenceScheme
The superclass only lists theTIME_LIMIT
property.- Overrides:
listedKeywords
in classDifferenceScheme
- Returns:
- a set of
NumericPropertyKeyword
instances, which have been explicitly marked as a listed parameter for thisPropertyHolder
.
-
normalOperation
public boolean normalOperation()
- Overrides:
normalOperation
in classDifferenceScheme
-
getCalculationStatus
public final RTECalculationStatus getCalculationStatus()
-
setCalculationStatus
public final void setCalculationStatus(RTECalculationStatus calculationStatus) throws SolverException
- Throws:
SolverException
-
getCoupling
public final RadiativeTransferCoupling getCoupling()
-
setCoupling
public final void setCoupling(RadiativeTransferCoupling coupling)
-
isAutoUpdateFluxes
public final boolean isAutoUpdateFluxes()
-
setAutoUpdateFluxes
public final void setAutoUpdateFluxes(boolean auto)
-
domain
public Class<? extends Problem>[] domain()
Description copied from class:DifferenceScheme
Retrieves all problem statements that can be solved with this implementation of the difference scheme.- Specified by:
domain
in classDifferenceScheme
- Returns:
- an array containing subclasses of the
Problem
class which can be used as input for this difference scheme.
-
-