├── .dockerignore ├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── Dockerfile ├── FSCDXS ├── LBLRTM_entrypoint.sh ├── LICENSE.md ├── README.md ├── data └── absco-ref_wv-mt-ckd.nc ├── docs ├── FAQ_LBLRTM.pdf ├── html │ ├── hitran_molec.html │ ├── lblrtm_instructions.html │ ├── lblrtm_instructions_frame.html │ └── lblrtm_toc.html └── release_notes.txt ├── src ├── contnm.f90 ├── fftscn.f90 ├── fftscn_dbl.f90 ├── h2oCont_module.f90 ├── lblatm.f90 ├── lbldum.f90 ├── lbllow.f90 ├── lblparams.f90 ├── lblparams.inc ├── lblrtm.f90 ├── mt_ckd_h2o_module.f90 ├── ncargks.f90 ├── nonlte.f90 ├── nonlte_voigt.f90 ├── oprop.f90 ├── oprop_voigt.f90 ├── phys_consts.f90 ├── planet_earth.f90 ├── planet_mars.f90 ├── pltlbl.f90 ├── postsub.f90 ├── read_module.f90 ├── solar.f90 ├── solar_cycle.f90 ├── struct_types.f90 ├── testmm.f90 ├── util_OS_X_absoft.f90 ├── util_OS_X_g95.f90 ├── util_OS_X_ibm_xl.f90 ├── util_OS_X_ifort.f90 ├── util_aix.f90 ├── util_alpha.f90 ├── util_cray.f90 ├── util_dos.f90 ├── util_gfortran.f90 ├── util_hp.f90 ├── util_linux_intel.f90 ├── util_linux_pgi.f90 ├── util_sgi.f90 ├── util_sun.f90 └── xmerge.f90 └── xs /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/Dockerfile -------------------------------------------------------------------------------- /FSCDXS: -------------------------------------------------------------------------------- 1 | cross-sections/FSCDXS -------------------------------------------------------------------------------- /LBLRTM_entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/LBLRTM_entrypoint.sh -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/README.md -------------------------------------------------------------------------------- /data/absco-ref_wv-mt-ckd.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/data/absco-ref_wv-mt-ckd.nc -------------------------------------------------------------------------------- /docs/FAQ_LBLRTM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/docs/FAQ_LBLRTM.pdf -------------------------------------------------------------------------------- /docs/html/hitran_molec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/docs/html/hitran_molec.html -------------------------------------------------------------------------------- /docs/html/lblrtm_instructions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/docs/html/lblrtm_instructions.html -------------------------------------------------------------------------------- /docs/html/lblrtm_instructions_frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/docs/html/lblrtm_instructions_frame.html -------------------------------------------------------------------------------- /docs/html/lblrtm_toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/docs/html/lblrtm_toc.html -------------------------------------------------------------------------------- /docs/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/docs/release_notes.txt -------------------------------------------------------------------------------- /src/contnm.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/src/contnm.f90 -------------------------------------------------------------------------------- /src/fftscn.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/src/fftscn.f90 -------------------------------------------------------------------------------- /src/fftscn_dbl.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/src/fftscn_dbl.f90 -------------------------------------------------------------------------------- /src/h2oCont_module.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/src/h2oCont_module.f90 -------------------------------------------------------------------------------- /src/lblatm.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/src/lblatm.f90 -------------------------------------------------------------------------------- /src/lbldum.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/src/lbldum.f90 -------------------------------------------------------------------------------- /src/lbllow.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/src/lbllow.f90 -------------------------------------------------------------------------------- /src/lblparams.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/src/lblparams.f90 -------------------------------------------------------------------------------- /src/lblparams.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/src/lblparams.inc -------------------------------------------------------------------------------- /src/lblrtm.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/src/lblrtm.f90 -------------------------------------------------------------------------------- /src/mt_ckd_h2o_module.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/src/mt_ckd_h2o_module.f90 -------------------------------------------------------------------------------- /src/ncargks.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/src/ncargks.f90 -------------------------------------------------------------------------------- /src/nonlte.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/src/nonlte.f90 -------------------------------------------------------------------------------- /src/nonlte_voigt.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/src/nonlte_voigt.f90 -------------------------------------------------------------------------------- /src/oprop.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/src/oprop.f90 -------------------------------------------------------------------------------- /src/oprop_voigt.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/src/oprop_voigt.f90 -------------------------------------------------------------------------------- /src/phys_consts.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/src/phys_consts.f90 -------------------------------------------------------------------------------- /src/planet_earth.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/src/planet_earth.f90 -------------------------------------------------------------------------------- /src/planet_mars.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/src/planet_mars.f90 -------------------------------------------------------------------------------- /src/pltlbl.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/src/pltlbl.f90 -------------------------------------------------------------------------------- /src/postsub.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/src/postsub.f90 -------------------------------------------------------------------------------- /src/read_module.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/src/read_module.f90 -------------------------------------------------------------------------------- /src/solar.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/src/solar.f90 -------------------------------------------------------------------------------- /src/solar_cycle.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/src/solar_cycle.f90 -------------------------------------------------------------------------------- /src/struct_types.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/src/struct_types.f90 -------------------------------------------------------------------------------- /src/testmm.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/src/testmm.f90 -------------------------------------------------------------------------------- /src/util_OS_X_absoft.f90: -------------------------------------------------------------------------------- 1 | ../aer_rt_utils/util_OS_X_absoft.f90 -------------------------------------------------------------------------------- /src/util_OS_X_g95.f90: -------------------------------------------------------------------------------- 1 | ../aer_rt_utils/util_OS_X_g95.f90 -------------------------------------------------------------------------------- /src/util_OS_X_ibm_xl.f90: -------------------------------------------------------------------------------- 1 | ../aer_rt_utils/util_OS_X_ibm_xl.f90 -------------------------------------------------------------------------------- /src/util_OS_X_ifort.f90: -------------------------------------------------------------------------------- 1 | ../aer_rt_utils/util_OS_X_ifort.f90 -------------------------------------------------------------------------------- /src/util_aix.f90: -------------------------------------------------------------------------------- 1 | ../aer_rt_utils/util_aix.f90 -------------------------------------------------------------------------------- /src/util_alpha.f90: -------------------------------------------------------------------------------- 1 | ../aer_rt_utils/util_alpha.f90 -------------------------------------------------------------------------------- /src/util_cray.f90: -------------------------------------------------------------------------------- 1 | ../aer_rt_utils/util_cray.f90 -------------------------------------------------------------------------------- /src/util_dos.f90: -------------------------------------------------------------------------------- 1 | ../aer_rt_utils/util_dos.f90 -------------------------------------------------------------------------------- /src/util_gfortran.f90: -------------------------------------------------------------------------------- 1 | ../aer_rt_utils/util_gfortran.f90 -------------------------------------------------------------------------------- /src/util_hp.f90: -------------------------------------------------------------------------------- 1 | ../aer_rt_utils/util_hp.f90 -------------------------------------------------------------------------------- /src/util_linux_intel.f90: -------------------------------------------------------------------------------- 1 | ../aer_rt_utils/util_linux_intel.f90 -------------------------------------------------------------------------------- /src/util_linux_pgi.f90: -------------------------------------------------------------------------------- 1 | ../aer_rt_utils/util_linux_pgi.f90 -------------------------------------------------------------------------------- /src/util_sgi.f90: -------------------------------------------------------------------------------- 1 | ../aer_rt_utils/util_sgi.f90 -------------------------------------------------------------------------------- /src/util_sun.f90: -------------------------------------------------------------------------------- 1 | ../aer_rt_utils/util_sun.f90 -------------------------------------------------------------------------------- /src/xmerge.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AER-RC/LBLRTM/HEAD/src/xmerge.f90 -------------------------------------------------------------------------------- /xs: -------------------------------------------------------------------------------- 1 | cross-sections/xs --------------------------------------------------------------------------------