Spectrum DatabaseΒΆ
RADIS has SpecDatabase feature used to store
and retrieve calculated Spectrums. This feature is convinient if a spectrum takes a
long time to compute. A path can be specified for SpecDatabase all
Spectrums are stored as .spec files which can be loaded
from the SpecDatabase object itself. A csv file is generated which contains all
input and conditional parameters of Spectrum.
RADIS also has init_database() feature
which initializes the SpecDatabase for the SpectrumFactory and every Spectrum
generated from it will be stored in the SpecDatabase automatically.
You can use plot_cond() to make a 2D plot
using the conditions of the Spectrums in the SpecDatabase and use a z_label to plot
a heat map based on it.
SpecDatabase also has useful
fit_spectrum() and
interpolate() methods.
from pathlib import Path
import numpy as np
from radis import SpectrumFactory
from radis.tools import SpecDatabase
sf = SpectrumFactory(
wavenum_min=2900,
wavenum_max=3200,
molecule="OH",
truncation=5, # cm-1
medium="vacuum",
verbose=0, # more for more details
pressure=10,
wstep=0.1,
)
sf.warnings = {"AccuracyError": "ignore"}
sf.fetch_databank("hitran")
# Generating a Spectrum
s1 = sf.eq_spectrum(Tgas=300, path_length=1)
Creating SpecDatabase This is simply a local folder on your computer.
from radis.test.utils import getTestFile
my_folder = Path(getTestFile(".")) / "SpecDatabase_Test"
db = SpecDatabase(my_folder)
Database SpecDatabase_Test initialised in /home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files
*** Loading the database with 1 processor (0 files)***
There are many ways to add spectra to the database : Method 1: Creating .spec file and adding manually to SpecDatabase
Spectrum stored in /home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files/SpecDatabase_Test/20260504.spec (0.1Mb)
loaded 20260504.spec
'/home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files/SpecDatabase_Test/20260504.spec'
Method 2: Using init_database()
SpecDatabase is connected to the SpectrumFactory sf above
Generated Spectrum are added to SpecDatabase automatically :
sf.init_database(my_folder)
wstep = np.linspace(0.1, 0.001, 4)
Tgas_arr = np.linspace(300, 700, 7)
# Multiple Spectrum calculation based on different values of Tgas and wstep
for i in wstep:
sf._wstep = i
sf.params.wstep = i
for Tgas in Tgas_arr:
sf.eq_spectrum(Tgas=Tgas, path_length=1)
# Loading SpecDatabase
db_new = SpecDatabase(my_folder)
# Plot Tgas vs wstep for all Spectrums, heatmap based on calculation_time
db_new.plot_cond("Tgas", "wstep", "calculation_time")

Loading database SpecDatabase_Test
["isotope == r'1'"]
["isotope == r'1'", "species == r'OH'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'", "DEFAULT_DOWNLOAD_PATH == r'~/.radisdb'"]
["isotope == r'1'"]
["isotope == r'1'", "species == r'OH'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'", "DEFAULT_DOWNLOAD_PATH == r'~/.radisdb'"]
Warning. Tvib not a valid condition
Warning. Trot not a valid condition
Warning. File already exists. Filename is incremented
Spectrum stored in /home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files/SpecDatabase_Test/20260504_1.spec (0.1Mb)
loaded 20260504_1.spec
["isotope == r'1'"]
["isotope == r'1'", "species == r'OH'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'", "DEFAULT_DOWNLOAD_PATH == r'~/.radisdb'"]
Warning. Tvib not a valid condition
Warning. Trot not a valid condition
Warning. File already exists. Filename is incremented
Spectrum stored in /home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files/SpecDatabase_Test/20260504_2.spec (0.1Mb)
loaded 20260504_2.spec
["isotope == r'1'"]
["isotope == r'1'", "species == r'OH'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'", "DEFAULT_DOWNLOAD_PATH == r'~/.radisdb'"]
Warning. Tvib not a valid condition
Warning. Trot not a valid condition
Warning. File already exists. Filename is incremented
Spectrum stored in /home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files/SpecDatabase_Test/20260504_3.spec (0.1Mb)
loaded 20260504_3.spec
["isotope == r'1'"]
["isotope == r'1'", "species == r'OH'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'", "DEFAULT_DOWNLOAD_PATH == r'~/.radisdb'"]
Warning. Tvib not a valid condition
Warning. Trot not a valid condition
Warning. File already exists. Filename is incremented
Spectrum stored in /home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files/SpecDatabase_Test/20260504_4.spec (0.1Mb)
loaded 20260504_4.spec
["isotope == r'1'"]
["isotope == r'1'", "species == r'OH'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'", "DEFAULT_DOWNLOAD_PATH == r'~/.radisdb'"]
Warning. Tvib not a valid condition
Warning. Trot not a valid condition
Warning. File already exists. Filename is incremented
Spectrum stored in /home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files/SpecDatabase_Test/20260504_5.spec (0.1Mb)
loaded 20260504_5.spec
["isotope == r'1'"]
["isotope == r'1'", "species == r'OH'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.1', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'", "DEFAULT_DOWNLOAD_PATH == r'~/.radisdb'"]
Warning. Tvib not a valid condition
Warning. Trot not a valid condition
Warning. File already exists. Filename is incremented
Spectrum stored in /home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files/SpecDatabase_Test/20260504_6.spec (0.1Mb)
loaded 20260504_6.spec
["isotope == r'1'"]
["isotope == r'1'", "species == r'OH'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'", "DEFAULT_DOWNLOAD_PATH == r'~/.radisdb'"]
Warning. Tvib not a valid condition
Warning. Trot not a valid condition
Warning. File already exists. Filename is incremented
Spectrum stored in /home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files/SpecDatabase_Test/20260504_7.spec (0.2Mb)
loaded 20260504_7.spec
["isotope == r'1'"]
["isotope == r'1'", "species == r'OH'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'", "DEFAULT_DOWNLOAD_PATH == r'~/.radisdb'"]
Warning. Tvib not a valid condition
Warning. Trot not a valid condition
Warning. File already exists. Filename is incremented
Spectrum stored in /home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files/SpecDatabase_Test/20260504_8.spec (0.2Mb)
loaded 20260504_8.spec
["isotope == r'1'"]
["isotope == r'1'", "species == r'OH'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'", "DEFAULT_DOWNLOAD_PATH == r'~/.radisdb'"]
Warning. Tvib not a valid condition
Warning. Trot not a valid condition
Warning. File already exists. Filename is incremented
Spectrum stored in /home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files/SpecDatabase_Test/20260504_9.spec (0.2Mb)
loaded 20260504_9.spec
["isotope == r'1'"]
["isotope == r'1'", "species == r'OH'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'", "DEFAULT_DOWNLOAD_PATH == r'~/.radisdb'"]
Warning. Tvib not a valid condition
Warning. Trot not a valid condition
Warning. File already exists. Filename is incremented
Spectrum stored in /home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files/SpecDatabase_Test/20260504_10.spec (0.2Mb)
loaded 20260504_10.spec
["isotope == r'1'"]
["isotope == r'1'", "species == r'OH'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'", "DEFAULT_DOWNLOAD_PATH == r'~/.radisdb'"]
Warning. Tvib not a valid condition
Warning. Trot not a valid condition
Warning. File already exists. Filename is incremented
Spectrum stored in /home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files/SpecDatabase_Test/20260504_11.spec (0.2Mb)
loaded 20260504_11.spec
["isotope == r'1'"]
["isotope == r'1'", "species == r'OH'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'", "DEFAULT_DOWNLOAD_PATH == r'~/.radisdb'"]
Warning. Tvib not a valid condition
Warning. Trot not a valid condition
Warning. File already exists. Filename is incremented
Spectrum stored in /home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files/SpecDatabase_Test/20260504_12.spec (0.2Mb)
loaded 20260504_12.spec
["isotope == r'1'"]
["isotope == r'1'", "species == r'OH'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.067', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'", "DEFAULT_DOWNLOAD_PATH == r'~/.radisdb'"]
Warning. Tvib not a valid condition
Warning. Trot not a valid condition
Warning. File already exists. Filename is incremented
Spectrum stored in /home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files/SpecDatabase_Test/20260504_13.spec (0.2Mb)
loaded 20260504_13.spec
["isotope == r'1'"]
["isotope == r'1'", "species == r'OH'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'", "DEFAULT_DOWNLOAD_PATH == r'~/.radisdb'"]
Warning. Tvib not a valid condition
Warning. Trot not a valid condition
Warning. File already exists. Filename is incremented
Spectrum stored in /home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files/SpecDatabase_Test/20260504_14.spec (0.4Mb)
loaded 20260504_14.spec
["isotope == r'1'"]
["isotope == r'1'", "species == r'OH'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'", "DEFAULT_DOWNLOAD_PATH == r'~/.radisdb'"]
Warning. Tvib not a valid condition
Warning. Trot not a valid condition
Warning. File already exists. Filename is incremented
Spectrum stored in /home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files/SpecDatabase_Test/20260504_15.spec (0.4Mb)
loaded 20260504_15.spec
["isotope == r'1'"]
["isotope == r'1'", "species == r'OH'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'", "DEFAULT_DOWNLOAD_PATH == r'~/.radisdb'"]
Warning. Tvib not a valid condition
Warning. Trot not a valid condition
Warning. File already exists. Filename is incremented
Spectrum stored in /home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files/SpecDatabase_Test/20260504_16.spec (0.4Mb)
loaded 20260504_16.spec
["isotope == r'1'"]
["isotope == r'1'", "species == r'OH'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'", "DEFAULT_DOWNLOAD_PATH == r'~/.radisdb'"]
Warning. Tvib not a valid condition
Warning. Trot not a valid condition
Warning. File already exists. Filename is incremented
Spectrum stored in /home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files/SpecDatabase_Test/20260504_17.spec (0.4Mb)
loaded 20260504_17.spec
["isotope == r'1'"]
["isotope == r'1'", "species == r'OH'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'", "DEFAULT_DOWNLOAD_PATH == r'~/.radisdb'"]
Warning. Tvib not a valid condition
Warning. Trot not a valid condition
Warning. File already exists. Filename is incremented
Spectrum stored in /home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files/SpecDatabase_Test/20260504_18.spec (0.4Mb)
loaded 20260504_18.spec
["isotope == r'1'"]
["isotope == r'1'", "species == r'OH'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'", "DEFAULT_DOWNLOAD_PATH == r'~/.radisdb'"]
Warning. Tvib not a valid condition
Warning. Trot not a valid condition
Warning. File already exists. Filename is incremented
Spectrum stored in /home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files/SpecDatabase_Test/20260504_19.spec (0.4Mb)
loaded 20260504_19.spec
["isotope == r'1'"]
["isotope == r'1'", "species == r'OH'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.034', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'", "DEFAULT_DOWNLOAD_PATH == r'~/.radisdb'"]
Warning. Tvib not a valid condition
Warning. Trot not a valid condition
Warning. File already exists. Filename is incremented
Spectrum stored in /home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files/SpecDatabase_Test/20260504_20.spec (0.4Mb)
loaded 20260504_20.spec
["isotope == r'1'"]
["isotope == r'1'", "species == r'OH'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 300.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'", "DEFAULT_DOWNLOAD_PATH == r'~/.radisdb'"]
Warning. Tvib not a valid condition
Warning. Trot not a valid condition
Warning. File already exists. Filename is incremented
Spectrum stored in /home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files/SpecDatabase_Test/20260504_21.spec (11.7Mb)
loaded 20260504_21.spec
["isotope == r'1'"]
["isotope == r'1'", "species == r'OH'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 366.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'", "DEFAULT_DOWNLOAD_PATH == r'~/.radisdb'"]
Warning. Tvib not a valid condition
Warning. Trot not a valid condition
Warning. File already exists. Filename is incremented
Spectrum stored in /home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files/SpecDatabase_Test/20260504_22.spec (11.9Mb)
loaded 20260504_22.spec
["isotope == r'1'"]
["isotope == r'1'", "species == r'OH'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 433.33333333333337', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'", "DEFAULT_DOWNLOAD_PATH == r'~/.radisdb'"]
Warning. Tvib not a valid condition
Warning. Trot not a valid condition
Warning. File already exists. Filename is incremented
Spectrum stored in /home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files/SpecDatabase_Test/20260504_23.spec (12.1Mb)
loaded 20260504_23.spec
["isotope == r'1'"]
["isotope == r'1'", "species == r'OH'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 500.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'", "DEFAULT_DOWNLOAD_PATH == r'~/.radisdb'"]
Warning. Tvib not a valid condition
Warning. Trot not a valid condition
Warning. File already exists. Filename is incremented
Spectrum stored in /home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files/SpecDatabase_Test/20260504_24.spec (12.1Mb)
loaded 20260504_24.spec
["isotope == r'1'"]
["isotope == r'1'", "species == r'OH'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 566.6666666666667', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'", "DEFAULT_DOWNLOAD_PATH == r'~/.radisdb'"]
Warning. Tvib not a valid condition
Warning. Trot not a valid condition
Warning. File already exists. Filename is incremented
Spectrum stored in /home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files/SpecDatabase_Test/20260504_25.spec (12.2Mb)
loaded 20260504_25.spec
["isotope == r'1'"]
["isotope == r'1'", "species == r'OH'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 633.3333333333334', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'", "DEFAULT_DOWNLOAD_PATH == r'~/.radisdb'"]
Warning. Tvib not a valid condition
Warning. Trot not a valid condition
Warning. File already exists. Filename is incremented
Spectrum stored in /home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files/SpecDatabase_Test/20260504_26.spec (12.3Mb)
loaded 20260504_26.spec
["isotope == r'1'"]
["isotope == r'1'", "species == r'OH'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1']
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'"]
["isotope == r'1'", "species == r'OH'", "state == r'X'", 'Tref == 296', 'isatom == False', 'isneutral != isneutral', 'wavenum_min == 2900', 'wavenum_max == 3200', 'pressure == 10', 'mole_fraction == 1', 'path_length == 1', 'self_absorption == True', 'potential_lowering != potential_lowering', "pfsource == r'default'", 'Tgas == 700.0', 'truncation == 5', 'neighbour_lines == 0', 'cutoff == 0', "broadening_method == r'voigt'", "optimization == r'simple'", 'db_use_cached == True', "dbformat == r'hitran'", "dbpath == r'/home/docs/.radisdb/hitran/OH.h5'", "levelsfmt == r'radis'", 'lvl_use_cached == True', 'parfuncpath != parfuncpath', 'pseudo_continuum_threshold == 0', 'wavenum_max_calc == 3200', 'wavenum_min_calc == 2900', "waveunit == r'cm-1'", 'wstep == 0.001', "diluent == r'air'", 'dxL == 0.20180288881201608', 'dxG == 0.1375350788016573', 'include_neighbouring_lines == True', "parsum_mode == r'full summation'", 'sparse_ldm == True', 'folding_thresh == 1e-06', 'lbfunc != lbfunc', 'GRIDPOINTS_PER_LINEWIDTH_WARN_THRESHOLD == 3', 'GRIDPOINTS_PER_LINEWIDTH_ERROR_THRESHOLD == 1', "SPARSE_WAVERANGE == r'auto'", "DEFAULT_DOWNLOAD_PATH == r'~/.radisdb'"]
Warning. Tvib not a valid condition
Warning. Trot not a valid condition
Warning. File already exists. Filename is incremented
Spectrum stored in /home/docs/checkouts/readthedocs.org/user_builds/radis/checkouts/master/radis/test/files/SpecDatabase_Test/20260504_27.spec (12.3Mb)
loaded 20260504_27.spec
Loading database SpecDatabase_Test
Total running time of the script: (0 minutes 9.157 seconds)