Package pulse.problem.schemes.rte.dom
Class SuccessiveOverrelaxation
- java.lang.Object
-
- pulse.util.UpwardsNavigable
-
- pulse.util.Group
-
- pulse.util.Accessible
-
- pulse.util.PropertyHolder
-
- pulse.problem.schemes.rte.dom.IterativeSolver
-
- pulse.problem.schemes.rte.dom.SuccessiveOverrelaxation
-
- All Implemented Interfaces:
Serializable
,Descriptive
,Reflexive
public class SuccessiveOverrelaxation extends IterativeSolver
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SuccessiveOverrelaxation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RTECalculationStatus
doIterations(AdaptiveIntegrator integrator)
De-facto solves the radiative transfer problem iteratively.NumericProperty
getRelaxationParameter()
Set<NumericPropertyKeyword>
listedKeywords()
By default, this will search the children of thisPropertyHolder
to collect the types of their listed numeric parameters recursively.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
.void
setRelaxationParameter(NumericProperty p)
String
toString()
-
Methods inherited from class pulse.problem.schemes.rte.dom.IterativeSolver
getIterationError, getIterationErrorTolerance, getMaxIterations, sanityCheck, setIterationErrorTolerance, setMaxIterations
-
Methods inherited from class pulse.util.PropertyHolder
addListener, areDetailsHidden, 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
-
-
-
-
Method Detail
-
doIterations
public RTECalculationStatus doIterations(AdaptiveIntegrator integrator)
Description copied from class:IterativeSolver
De-facto solves the radiative transfer problem iteratively.- Specified by:
doIterations
in classIterativeSolver
- Parameters:
integrator
- the integerator embedded in the iterative approach- Returns:
- a calculation status
-
getRelaxationParameter
public NumericProperty getRelaxationParameter()
-
setRelaxationParameter
public void setRelaxationParameter(NumericProperty p)
-
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
.- Overrides:
set
in classIterativeSolver
- Parameters:
type
- the type, which must be equal by definition toproperty.getType()
.property
- the property, which contains new information.
-
listedKeywords
public Set<NumericPropertyKeyword> listedKeywords()
Description copied from class:PropertyHolder
By default, this will search the children of this
PropertyHolder
to collect the types of their listed numeric parameters recursively.- Overrides:
listedKeywords
in classIterativeSolver
- Returns:
- a set of
NumericPropertyKeyword
instances, which have been explicitly marked as a listed parameter for thisPropertyHolder
.
-
toString
public String toString()
- Overrides:
toString
in classIterativeSolver
-
-