ARTS
2.2.66
|
Header file for work with HITRAN collision induced absorption (CIA). More...
#include "arts.h"
#include "matpackI.h"
#include "mystring.h"
#include "gridded_fields.h"
#include "check_input.h"
Go to the source code of this file.
Classes | |
class | CIARecord |
CIA data for a single pair of molecules. More... | |
Typedefs | |
typedef Array< CIARecord > | ArrayOfCIARecord |
Functions | |
void | cia_interpolation (VectorView result, ConstVectorView frequency, const Numeric &temperature, const GriddedField2 &cia_data, const Numeric &T_extrapolfac, const Index &robust, const Verbosity &verbosity) |
Interpolate CIA data. More... | |
Index | cia_get_index (const ArrayOfCIARecord &cia_data, const Index sp1, const Index sp2) |
Get the index in cia_data for the two given species. More... | |
ostream & | operator<< (ostream &os, const CIARecord &cr) |
Output operator for CIARecord. More... | |
Header file for work with HITRAN collision induced absorption (CIA).
The CIA data are part of the HITRAN distribution. They are described in Richard, C., I. E. Gordon, L. S. Rothman, M. Abel, L. Frommhold, M. Gustafsson, J.-M. Hartmann, C. Hermans, W. J. Lafferty, G. S. Orton, K.M. Smith, and H. Tran (2012), New section of the HITRAN database: Collision-induced absorption (CIA), J. Quant. Spectrosc. Radiat. Transfer, 113, 1276-1285, doi:10.1016/j.jqsrt.2011.11.004.
Definition in file cia.h.
typedef Array<CIARecord> ArrayOfCIARecord |
Index cia_get_index | ( | const ArrayOfCIARecord & | cia_data, |
const Index | sp1, | ||
const Index | sp2 | ||
) |
Get the index in cia_data for the two given species.
[in] | cia_data | CIA data array |
[in] | sp1 | First species index |
[in] | sp2 | Second species index |
Definition at line 252 of file cia.cc.
References Array< base >::nelem().
Referenced by abs_cia_dataReadFromCIA(), abs_cia_dataReadFromXML(), and abs_xsec_per_speciesAddCIA().
void cia_interpolation | ( | VectorView | result, |
ConstVectorView | f_grid, | ||
const Numeric & | temperature, | ||
const GriddedField2 & | cia_data, | ||
const Numeric & | T_extrapolfac, | ||
const Index & | robust, | ||
const Verbosity & | verbosity | ||
) |
Interpolate CIA data.
Interpolate CIA data to given frequency vector and given scalar temperature. Uses third order interpolation in both coordinates, if grid length allows, otherwise lower order or no interpolation.
[out] | result | CIA value for given frequency grid and temperature. |
[in] | f_grid | Frequency grid. |
[in] | temperature | Scalar temperature. |
[in] | cia_data | The CIA dataset to interpolate. |
[in] | robust | Set to 1 to suppress runtime errors (and return NAN values instead). |
[in] | verbosity | Standard verbosity object. |
Definition at line 53 of file cia.cc.
References chk_interpolation_grids(), CREATE_OUTS, GriddedField2::data, GriddedField::get_numeric_grid(), gridpos_poly(), interp(), interpweights(), joker, and ConstVectorView::nelem().
Referenced by CIARecord::Extract(), and test01().