Package pulse.problem.schemes.rte.exact
Class NonscatteringRadiativeTransfer
- java.lang.Object
-
- pulse.util.UpwardsNavigable
-
- pulse.util.Group
-
- pulse.util.Accessible
-
- pulse.util.PropertyHolder
-
- pulse.problem.schemes.rte.RadiativeTransferSolver
-
- pulse.problem.schemes.rte.exact.NonscatteringRadiativeTransfer
-
- All Implemented Interfaces:
Serializable
,Descriptive
,Reflexive
- Direct Known Subclasses:
NonscatteringAnalyticalDerivatives
,NonscatteringDiscreteDerivatives
public abstract class NonscatteringRadiativeTransfer extends RadiativeTransferSolver
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
NonscatteringRadiativeTransfer(ParticipatingMedium problem, Grid grid)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RTECalculationStatus
compute(double[] array)
The superclass method will update the interpolation that the blackbody spectrum uses to evaluate the temperature profile and calculate the radiosities.ANORMAL
status is always returned.protected void
flux(int uIndex)
void
fluxes()
Calculates the radiative fluxes on the grid specified in the constructor arguments.String
getDescriptor()
If not null, will return the prefix, otherwise calls the superclass method.BlackbodySpectrum
getEmissionFunction()
InstanceDescriptor<CompositionProduct>
getInstanceDescriptor()
CompositionProduct
getQuadrature()
Retrieves the quadrature that is used to evaluate the composition product invoked when calculating the radiative fluxes.double
getRadiosityFront()
double
getRadiosityRear()
void
init(ParticipatingMedium p, Grid grid)
Retrieves the parameters fromp
andgrid
needed to run the calculations.Resets the flux arrays.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
.void
setEmissionFunction(BlackbodySpectrum emissionFunction)
void
setQuadrature(CompositionProduct specialIntegrator)
Sets the quadrature and updates its spectral function to that specified by this object.String
toString()
-
Methods inherited from class pulse.problem.schemes.rte.RadiativeTransferSolver
addRTEListener, fireStatusUpdate, getFluxes, getPrefix, getRTEListeners, ignoreSiblings, interpolateTemperatureProfile, opticalCoordinateAt, setFluxes
-
Methods inherited from class pulse.util.PropertyHolder
addListener, areDetailsHidden, data, describe, firePropertyChanged, getListeners, 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
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface pulse.util.Descriptive
describe
-
-
-
-
Constructor Detail
-
NonscatteringRadiativeTransfer
protected NonscatteringRadiativeTransfer(ParticipatingMedium problem, Grid grid)
-
-
Method Detail
-
init
public void init(ParticipatingMedium p, Grid grid)
Description copied from class:RadiativeTransferSolver
Retrieves the parameters fromp
andgrid
needed to run the calculations.Resets the flux arrays.- Overrides:
init
in classRadiativeTransferSolver
grid
- the grid
-
compute
public RTECalculationStatus compute(double[] array)
The superclass method will update the interpolation that the blackbody spectrum uses to evaluate the temperature profile and calculate the radiosities.ANORMAL
status is always returned.- Specified by:
compute
in classRadiativeTransferSolver
- Parameters:
array
-- Returns:
- the status of calculation
-
fluxes
public void fluxes()
Calculates the radiative fluxes on the grid specified in the constructor arguments. This uses the values of radiosities and involves calculating the composition product using the selected quadratures.- See Also:
CompositionProduct
-
flux
protected void flux(int uIndex)
-
getQuadrature
public CompositionProduct getQuadrature()
Retrieves the quadrature that is used to evaluate the composition product invoked when calculating the radiative fluxes.- Returns:
- the quadrature
-
setQuadrature
public void setQuadrature(CompositionProduct specialIntegrator)
Sets the quadrature and updates its spectral function to that specified by this object.- Parameters:
specialIntegrator
- the quadrature used to evaluate the composition product
-
getEmissionFunction
public BlackbodySpectrum getEmissionFunction()
-
setEmissionFunction
public void setEmissionFunction(BlackbodySpectrum emissionFunction)
-
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
.
-
getInstanceDescriptor
public InstanceDescriptor<CompositionProduct> getInstanceDescriptor()
-
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()
-
getRadiosityFront
public double getRadiosityFront()
-
getRadiosityRear
public double getRadiosityRear()
-
-