├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ └── build-deploy-docs.yml ├── .gitignore ├── LICENSE ├── README.md ├── Vtable.ECMWF ├── benchmark.bash ├── benchmark.py ├── benchmark_and_test.bash ├── benchmark_combine.py ├── config.bash ├── docs ├── __init__.py ├── _config.yml ├── _toc.yml ├── auto_simulation.md ├── background.md ├── before_you_start.md ├── compilation.md ├── faqs.md ├── images │ └── logo.png ├── index.md ├── license.md ├── manual_simulation.md └── versions.md ├── emis_edgarhtap2-meic2015_mozmos.inp ├── emis_edgarhtap2_mozmos.inp ├── environment.yml ├── exo_coldens.inp ├── fire_emis.mozm.inp ├── guides ├── CESM-WRFchem_aerosols_plusgas.pdf ├── Changing_month_or_year.md ├── FINN_Emiss_prep_MOZART.pdf ├── Future_AQ_steps_WRF-Chem.pdf ├── Guide_to_NAEI_emissions_AG.pdf ├── Guide_to_offline_nesting_CR.pdf ├── MOZART_MOSAIC_V3.6.readme_dec2016.pdf ├── MOZCART_UsersGuide.pdf ├── T1-MOZCART-UsersGuide-27April2018.pdf ├── add_bbinjectscheme.md ├── changing_domain.md └── postprocessing_guide.md ├── iofields.chem ├── iofields.met ├── main.bash ├── main_restart.bash ├── master.bash ├── megan_bio_emiss.inp ├── mozbc.inp ├── namelist.chem.blueprint ├── namelist.wps.blueprint ├── namelist.wps.domain_test ├── namelist.wrf.blueprint ├── namelists ├── Vtable.GFS_new ├── config.bash.blueprint_cemac ├── config.bash.blueprint_manual ├── main.bash.blueprint_cemac ├── main.bash.blueprint_manual ├── main_restart.bash.blueprint_cemac ├── main_restart.bash.blueprint_manual ├── mozbc.inp.blueprint_114_mz4 ├── mozbc.inp.blueprint_201_mz4 ├── mozbc.inp.blueprint_202_camchem ├── mozbc.inp.blueprint_202_mz4 ├── mozbc.inp.blueprint_202_waccm ├── namelist.chem.blueprint_201 ├── namelist.chem.blueprint_202 ├── namelist.wrf.blueprint_201 ├── namelist.wrf.blueprint_202 ├── pp.ncl ├── pre.bash.blueprint_cemac ├── pre.bash.blueprint_manual └── python3_ncl_nco.yml ├── plotgrids.ncl ├── post.bash ├── postprocessing.py ├── pp_concat_regrid.bash ├── pp_concat_regrid.py ├── pre.bash ├── profile.bash ├── sum_sector_emiss_wrfchemi.py ├── tests.bash ├── tests ├── test_dust_in_geogrid.py ├── test_namelist_options.py └── test_pre.py └── wesely.inp /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/build-deploy-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/.github/workflows/build-deploy-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/README.md -------------------------------------------------------------------------------- /Vtable.ECMWF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/Vtable.ECMWF -------------------------------------------------------------------------------- /benchmark.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/benchmark.bash -------------------------------------------------------------------------------- /benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/benchmark.py -------------------------------------------------------------------------------- /benchmark_and_test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/benchmark_and_test.bash -------------------------------------------------------------------------------- /benchmark_combine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/benchmark_combine.py -------------------------------------------------------------------------------- /config.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/config.bash -------------------------------------------------------------------------------- /docs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/docs/_toc.yml -------------------------------------------------------------------------------- /docs/auto_simulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/docs/auto_simulation.md -------------------------------------------------------------------------------- /docs/background.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/docs/background.md -------------------------------------------------------------------------------- /docs/before_you_start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/docs/before_you_start.md -------------------------------------------------------------------------------- /docs/compilation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/docs/compilation.md -------------------------------------------------------------------------------- /docs/faqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/docs/faqs.md -------------------------------------------------------------------------------- /docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/docs/images/logo.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | ```{include} ../README.md 2 | ``` -------------------------------------------------------------------------------- /docs/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/docs/license.md -------------------------------------------------------------------------------- /docs/manual_simulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/docs/manual_simulation.md -------------------------------------------------------------------------------- /docs/versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/docs/versions.md -------------------------------------------------------------------------------- /emis_edgarhtap2-meic2015_mozmos.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/emis_edgarhtap2-meic2015_mozmos.inp -------------------------------------------------------------------------------- /emis_edgarhtap2_mozmos.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/emis_edgarhtap2_mozmos.inp -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/environment.yml -------------------------------------------------------------------------------- /exo_coldens.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/exo_coldens.inp -------------------------------------------------------------------------------- /fire_emis.mozm.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/fire_emis.mozm.inp -------------------------------------------------------------------------------- /guides/CESM-WRFchem_aerosols_plusgas.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/guides/CESM-WRFchem_aerosols_plusgas.pdf -------------------------------------------------------------------------------- /guides/Changing_month_or_year.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/guides/Changing_month_or_year.md -------------------------------------------------------------------------------- /guides/FINN_Emiss_prep_MOZART.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/guides/FINN_Emiss_prep_MOZART.pdf -------------------------------------------------------------------------------- /guides/Future_AQ_steps_WRF-Chem.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/guides/Future_AQ_steps_WRF-Chem.pdf -------------------------------------------------------------------------------- /guides/Guide_to_NAEI_emissions_AG.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/guides/Guide_to_NAEI_emissions_AG.pdf -------------------------------------------------------------------------------- /guides/Guide_to_offline_nesting_CR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/guides/Guide_to_offline_nesting_CR.pdf -------------------------------------------------------------------------------- /guides/MOZART_MOSAIC_V3.6.readme_dec2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/guides/MOZART_MOSAIC_V3.6.readme_dec2016.pdf -------------------------------------------------------------------------------- /guides/MOZCART_UsersGuide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/guides/MOZCART_UsersGuide.pdf -------------------------------------------------------------------------------- /guides/T1-MOZCART-UsersGuide-27April2018.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/guides/T1-MOZCART-UsersGuide-27April2018.pdf -------------------------------------------------------------------------------- /guides/add_bbinjectscheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/guides/add_bbinjectscheme.md -------------------------------------------------------------------------------- /guides/changing_domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/guides/changing_domain.md -------------------------------------------------------------------------------- /guides/postprocessing_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/guides/postprocessing_guide.md -------------------------------------------------------------------------------- /iofields.chem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/iofields.chem -------------------------------------------------------------------------------- /iofields.met: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/iofields.met -------------------------------------------------------------------------------- /main.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/main.bash -------------------------------------------------------------------------------- /main_restart.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/main_restart.bash -------------------------------------------------------------------------------- /master.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/master.bash -------------------------------------------------------------------------------- /megan_bio_emiss.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/megan_bio_emiss.inp -------------------------------------------------------------------------------- /mozbc.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/mozbc.inp -------------------------------------------------------------------------------- /namelist.chem.blueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/namelist.chem.blueprint -------------------------------------------------------------------------------- /namelist.wps.blueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/namelist.wps.blueprint -------------------------------------------------------------------------------- /namelist.wps.domain_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/namelist.wps.domain_test -------------------------------------------------------------------------------- /namelist.wrf.blueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/namelist.wrf.blueprint -------------------------------------------------------------------------------- /namelists/Vtable.GFS_new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/namelists/Vtable.GFS_new -------------------------------------------------------------------------------- /namelists/config.bash.blueprint_cemac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/namelists/config.bash.blueprint_cemac -------------------------------------------------------------------------------- /namelists/config.bash.blueprint_manual: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/namelists/config.bash.blueprint_manual -------------------------------------------------------------------------------- /namelists/main.bash.blueprint_cemac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/namelists/main.bash.blueprint_cemac -------------------------------------------------------------------------------- /namelists/main.bash.blueprint_manual: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/namelists/main.bash.blueprint_manual -------------------------------------------------------------------------------- /namelists/main_restart.bash.blueprint_cemac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/namelists/main_restart.bash.blueprint_cemac -------------------------------------------------------------------------------- /namelists/main_restart.bash.blueprint_manual: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/namelists/main_restart.bash.blueprint_manual -------------------------------------------------------------------------------- /namelists/mozbc.inp.blueprint_114_mz4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/namelists/mozbc.inp.blueprint_114_mz4 -------------------------------------------------------------------------------- /namelists/mozbc.inp.blueprint_201_mz4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/namelists/mozbc.inp.blueprint_201_mz4 -------------------------------------------------------------------------------- /namelists/mozbc.inp.blueprint_202_camchem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/namelists/mozbc.inp.blueprint_202_camchem -------------------------------------------------------------------------------- /namelists/mozbc.inp.blueprint_202_mz4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/namelists/mozbc.inp.blueprint_202_mz4 -------------------------------------------------------------------------------- /namelists/mozbc.inp.blueprint_202_waccm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/namelists/mozbc.inp.blueprint_202_waccm -------------------------------------------------------------------------------- /namelists/namelist.chem.blueprint_201: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/namelists/namelist.chem.blueprint_201 -------------------------------------------------------------------------------- /namelists/namelist.chem.blueprint_202: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/namelists/namelist.chem.blueprint_202 -------------------------------------------------------------------------------- /namelists/namelist.wrf.blueprint_201: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/namelists/namelist.wrf.blueprint_201 -------------------------------------------------------------------------------- /namelists/namelist.wrf.blueprint_202: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/namelists/namelist.wrf.blueprint_202 -------------------------------------------------------------------------------- /namelists/pp.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/namelists/pp.ncl -------------------------------------------------------------------------------- /namelists/pre.bash.blueprint_cemac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/namelists/pre.bash.blueprint_cemac -------------------------------------------------------------------------------- /namelists/pre.bash.blueprint_manual: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/namelists/pre.bash.blueprint_manual -------------------------------------------------------------------------------- /namelists/python3_ncl_nco.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/namelists/python3_ncl_nco.yml -------------------------------------------------------------------------------- /plotgrids.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/plotgrids.ncl -------------------------------------------------------------------------------- /post.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/post.bash -------------------------------------------------------------------------------- /postprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/postprocessing.py -------------------------------------------------------------------------------- /pp_concat_regrid.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/pp_concat_regrid.bash -------------------------------------------------------------------------------- /pp_concat_regrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/pp_concat_regrid.py -------------------------------------------------------------------------------- /pre.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/pre.bash -------------------------------------------------------------------------------- /profile.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/profile.bash -------------------------------------------------------------------------------- /sum_sector_emiss_wrfchemi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/sum_sector_emiss_wrfchemi.py -------------------------------------------------------------------------------- /tests.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/tests.bash -------------------------------------------------------------------------------- /tests/test_dust_in_geogrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/tests/test_dust_in_geogrid.py -------------------------------------------------------------------------------- /tests/test_namelist_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/tests/test_namelist_options.py -------------------------------------------------------------------------------- /tests/test_pre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/tests/test_pre.py -------------------------------------------------------------------------------- /wesely.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/WRFotron/HEAD/wesely.inp --------------------------------------------------------------------------------