ARTS built-in documentation server

Workspace Method abs_speciesSet

Description

Set up a list of absorption species tag groups.

Workspace variables like abs_species contain several tag
groups. Each tag group contains one or more tags. This method converts
descriptions of tag groups given in the keyword to the ARTS internal
representation (an ArrayOfArrayOfSpeciesTag). A tag group selects
spectral features which belong to the same species.

A tag is defined in terms of the name of the species, isotopologue, and a
range of frequencies. Species are named after the standard chemical
names, e.g., "O3". Isotopologues are given by the last digit of the atomic
weight, i.g., "O3-668" for the asymmetric ozone molecule including an
oxygen 18 atom. Groups of transitions are specified by giving a lower
and upper limit of a frequency range, e.g., "O3-666-500e9-501e9".

To turn on Zeeman calculation for a Species, "-Z" may be appended
to its name: "O2-Z" or "O2-Z-66"

To turn on line mixing for a Species, "-LM_METHOD" may be appended
to its name. Currently only one METHOD is supported: 2NDORDER.
Line mixing data has to be provided if this is turned on.
See line_mixing_dataInit and *line_mixing_dataRead*
.Example: "O2-66-LM_2NDORDER".

The symbol "*" acts as a wild card. Furthermore, frequency range or
frequency range and isotopologue may be omitted.

Finally, instead of the isotopologue the special letter "nl" may be given,
e.g., "H2O-nl". This means that no absorption at all is associated
with this tag. (It is not quite clear if this feature is useful for
anything right now.)

Example:

   species = [ "O3-666-500e9-501e9, O3-686",
               "O3",
               "H2O-PWR98" ]

   The first tag group selects all O3-666 lines between 500 and
   501 GHz plus all O3-686 lines. 

   The second tag group selects all remaining O3 transitions.

   The third tag group selects H2O, with one of the complete
   absorption models (Rosenkranz 98). No spectrocopic line catalogue
   data will be used for that third tag group.

   Note that order of tag groups in the species list matters. In our
   example, changing the order of the first two tag group will give
   different results: as "O3" already selects all O3 transitions,
   no lines will remain to be selected by the
   "O3-666-500e9-501e9, O3-686" tag.

Authors: Stefan Buehler

Synopsis

abs_speciesSet( abs_species, abs_xsec_agenda_checked, propmat_clearsky_agenda_checked, species )

Variables

OUTabs_species(ArrayOfArrayOfSpeciesTag)Tag groups for scalar gas absorption.
OUTabs_xsec_agenda_checked(Index)OK-flag for abs_xsec_agenda.
OUTpropmat_clearsky_agenda_checked(Index)OK-flag for propmat_clearsky_agenda.
GINspecies(ArrayOfString)Specify one String for each tag group that you want to create. Inside the String, separate the tags by commas (plus optional blanks).