frequency_gridFitNonLTE
- Workspace.frequency_gridFitNonLTE(self, frequency_grid: pyarts3.arts.AscendingGrid | None = None, absorption_bands: pyarts3.arts.AbsorptionBands | None = None, df: pyarts3.arts.Numeric | None = None, nf: pyarts3.arts.Index | None = None) None
Frequency grid useful for
atmospheric_profileFitNonLTE()
.This method creates a frequency grid around the line-center of each absorption line in the
absorption_bands
variable.Note
For all sorted absorption line centers \(f_i\), the following should be true:
\[f_{i -1} + \delta f < f_i < f_{i + 1} - \delta f\]That is, the frequency ranges are not allowed to overlap.
Author: Richard Larsson
- Parameters:
frequency_grid (AscendingGrid, optional) – A single frequency grid. See
frequency_grid
, defaults toself.frequency_grid
[OUT]absorption_bands (AbsorptionBands, optional) – Bands of absorption lines for line-by-line (LBL) calculations. See
absorption_bands
, defaults toself.absorption_bands
[IN]df (Numeric) – Frequency grid around the line-center. The range will cover \(f_i\) pm left(1-delta fright)forall i` of each absorption line \(i\), where this variable is \(\delta f\). [IN]
nf (Index, optional) – Number of frequency points per line. The step between frequency grid points will be \(2\frac{\delta f}{N - 1}\), where this is \(N\). Defaults to
401
[IN]