Package pulse.problem.schemes.rte.dom
Class Discretisation
- java.lang.Object
-
- pulse.util.UpwardsNavigable
-
- pulse.util.Group
-
- pulse.util.Accessible
-
- pulse.util.PropertyHolder
-
- pulse.problem.schemes.rte.dom.Discretisation
-
- All Implemented Interfaces:
Serializable
,Descriptive
public class Discretisation extends PropertyHolder
A class specifying the discretisation (both spatial and angular) scheme used to solve the radiative transfer equation with the discrete ordinates method. Has references to the grid and ordinate sets and the discrete quantities appearing in the calculations. Introduces methods to calculate the moments and intensities based on the discrete ordinates method.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Discretisation(ThermoOpticalProperties properties)
Constructs aDiscreteIntensities
with the defaultOrdinateSet
and a new uniform grid.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
firstMoment(double[][] ext, int j)
Calculates the first moment , which can be applied e.g.double
flux(int j)
Calculates the net flux atj
.double
flux(int j, int startInclusive, int endExclusive)
Calculates the partial flux by performing a simple summation bounded by the arguments.double
fluxLeft(BlackbodySpectrum emissionFunction)
Calculates the flux at the left boundary using an alternative formula.double
fluxRight(BlackbodySpectrum emissionFunction)
Calculates the flux at the right boundary using an alternative formula.String
getDescriptor()
If not null, will return the prefix, otherwise calls the superclass method.StretchedGrid
getGrid()
OrdinateSet
getOrdinates()
DiscreteSelector<OrdinateSet>
getQuadratureSelector()
DiscreteQuantities
getQuantities()
double
incidentRadation(int j)
Calculates the incident radiation , which is the zeroth moment of the intensities.double
incidentRadiation(int j, int startInclusive, int endExclusive)
Calculates the incident radiation , by performing simple summation for node points betweenstartInclusive
andendExclusive
.void
intensitiesLeftBoundary(BlackbodySpectrum ef)
Calculates the reflected intensity (positive angles, first half of indices) at the left boundary (τ = 0).void
intensitiesRightBoundary(BlackbodySpectrum ef)
Calculates the reflected intensity (negative angles, second half of indices) at the right boundary (τ = τ0).List<Property>
listedTypes()
By default, collects a list of default properties corresponding to types defined by listedKeywords().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
.protected void
setEmissivity(double emissivity)
void
setGrid(StretchedGrid grid)
void
setOrdinateSet(OrdinateSet set)
String
toString()
-
Methods inherited from class pulse.util.PropertyHolder
addListener, areDetailsHidden, data, describe, firePropertyChanged, getListeners, getPrefix, ignoreSiblings, initListeners, isListedNumericType, isListedParameter, listedKeywords, 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
-
Discretisation
public Discretisation(ThermoOpticalProperties properties)
Constructs aDiscreteIntensities
with the defaultOrdinateSet
and a new uniform grid.- Parameters:
properties
-
-
-
Method Detail
-
incidentRadation
public double incidentRadation(int j)
Calculates the incident radiation , which is the zeroth moment of the intensities. The calculation uses the symmetry of the quadrature weights for positive and negativ nodes.- Parameters:
j
- spatial index- Returns:
- the incident radiation at
j
-
incidentRadiation
public double incidentRadiation(int j, int startInclusive, int endExclusive)
Calculates the incident radiation , by performing simple summation for node points betweenstartInclusive
andendExclusive
.- Parameters:
j
- spatial indexstartInclusive
- lower bound for summationendExclusive
- upper bound (exclusive) for summation- Returns:
- the partial incident radiation at
j
- See Also:
LinearAnisotropicPF
-
firstMoment
public double firstMoment(double[][] ext, int j)
Calculates the first moment , which can be applied e.g. for flux or flux derivative calculation. The calculation uses the symmetry of the quadrature weights for positive and negativ nodes.- Parameters:
j
- spatial index- Returns:
- the first moment at
j
-
flux
public double flux(int j)
Calculates the net flux atj
.- Parameters:
j
- the spatial coordinate- Returns:
- the flux
- See Also:
firstMoment(double[][],int)
-
flux
public double flux(int j, int startInclusive, int endExclusive)
Calculates the partial flux by performing a simple summation bounded by the arguments.- Parameters:
j
- the spatial indexstartInclusive
- node index lower boundendExclusive
- node index upper bound (exclusive)- Returns:
- the partial flux
-
fluxLeft
public double fluxLeft(BlackbodySpectrum emissionFunction)
Calculates the flux at the left boundary using an alternative formula.- Parameters:
emissionFunction
- the emission function- Returns:
- the net flux at the left boundary
-
fluxRight
public double fluxRight(BlackbodySpectrum emissionFunction)
Calculates the flux at the right boundary using an alternative formula.- Parameters:
emissionFunction
- the emission function- Returns:
- the net flux at the right boundary
-
intensitiesLeftBoundary
public void intensitiesLeftBoundary(BlackbodySpectrum ef)
Calculates the reflected intensity (positive angles, first half of indices) at the left boundary (τ = 0).- Parameters:
ef
- the emission function
-
intensitiesRightBoundary
public void intensitiesRightBoundary(BlackbodySpectrum ef)
Calculates the reflected intensity (negative angles, second half of indices) at the right boundary (τ = τ0).- Parameters:
ef
- the emission function
-
setEmissivity
protected final void setEmissivity(double emissivity)
-
getOrdinates
public OrdinateSet getOrdinates()
-
setOrdinateSet
public void setOrdinateSet(OrdinateSet set)
-
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.
-
listedTypes
public List<Property> listedTypes()
Description copied from class:PropertyHolder
By default, collects a list of default properties corresponding to types defined by listedKeywords(). However, this method is overridable to include non-numeric properties.
- Overrides:
listedTypes
in classPropertyHolder
- Returns:
- a list of
Property
instances, which have been explicitly marked as a listed parameter for thisPropertyHolder
.
-
getDescriptor
public String getDescriptor()
Description copied from class:PropertyHolder
If not null, will return the prefix, otherwise calls the superclass method.- Overrides:
getDescriptor
in classPropertyHolder
- Returns:
- the descriptor
- See Also:
Group.getSimpleName()
-
getGrid
public StretchedGrid getGrid()
-
setGrid
public final void setGrid(StretchedGrid grid)
-
getQuantities
public DiscreteQuantities getQuantities()
-
getQuadratureSelector
public DiscreteSelector<OrdinateSet> getQuadratureSelector()
-
-