Class BlackbodySpectrum

  • All Implemented Interfaces:
    Serializable

    public class BlackbodySpectrum
    extends Object
    implements Serializable
    Contains methods for calculating the integral spectral characteristics of a black body with a specific spatial temperature profile. The latter is managed using a UnivariateFunction previously generated with a SplineInterpolator.
    See Also:
    Serialized Form
    • Constructor Detail

      • BlackbodySpectrum

        public BlackbodySpectrum​(NonlinearProblem p)
        Creates a BlackbodySpectrum. Calculates the reduction factor δTm/T0, which is needed for calculations of the maximum heating. Note the interpolation needs to be set
        Parameters:
        p - a problem statement
    • Method Detail

      • emissivePower

        public double emissivePower​(double reducedTemperature)
        Calculates the emissive power. This is equal to 0.25 T0Tm [1 +δTm /T0 θ (x) ]4, where θ is the reduced temperature.
        Parameters:
        reducedTemperature - the dimensionless reduced temperature
        Returns:
        the amount of emissive power
      • radianceAt

        public double radianceAt​(double x)
        Calculates the spectral radiance, which is equal to the spectral power divided by π, at the given coordinate.
        Parameters:
        x - the geometric coordinate at which calculation should be performed
        Returns:
        the spectral radiance at x
      • powerAt

        public double powerAt​(double x)
        Calculates the emissive power at the given coordinate.
        Parameters:
        x - the geometric coordinate inside the sample
        Returns:
        the local emissive power value
      • setInterpolation

        public void setInterpolation​(org.apache.commons.math3.analysis.UnivariateFunction interpolation)
        Sets a new function for the spatial temperature profile. The function is generally constructed using a SplineInterpolator
        Parameters:
        interpolation -
      • getInterpolation

        public org.apache.commons.math3.analysis.UnivariateFunction getInterpolation()
      • radiance

        public final double radiance​(double reducedTemperature)