├── .gitignore ├── Makefile ├── README.md ├── bak ├── gsi_leo.py ├── job │ ├── real.job │ ├── run_gsi_dm.ksh │ ├── test.srun │ └── wrf.job ├── namelist │ ├── namelist.input │ └── namelist.wps ├── settings │ └── settings-leo.py └── test_run_gsi.sh ├── bash ├── renew.sh ├── renew_anl_cyc_1h.sh ├── renew_anl_cyc_1h_ecmwf.sh ├── renew_anl_cyc_3h.sh ├── renew_anl_cyc_3h_ecmwf.sh ├── renew_anl_cyc_6h.sh ├── renew_anl_cyc_ecmwf.sh ├── renew_debug_01.sh ├── renew_debug_02.sh ├── renew_ec_1h.sh ├── renew_ec_3h.sh ├── renew_ec_3h_raob.sh ├── renew_ec_cyc_anl.sh ├── renew_ec_multi.sh ├── renew_ec_noncyc.sh ├── renew_hourly.sh ├── renew_satbias.sh ├── run_anl_cyc_1h.sh ├── run_anl_cyc_1h_ecmwf.sh ├── run_anl_cyc_3h.sh ├── run_anl_cyc_3h_ecmwf.sh ├── run_anl_cyc_6h.sh ├── run_anl_cyc_ctl.sh ├── run_anl_cyc_ctl_ecmwf.sh ├── run_debug_01.sh ├── run_debug_02.sh ├── run_osse.sh ├── run_osse_ec_1h.sh ├── run_osse_ec_3h.sh ├── run_osse_ec_3h_ctl.sh ├── run_osse_ec_3h_debug.sh ├── run_osse_ec_3h_raob.sh ├── run_osse_ec_cyc_anl.sh ├── run_osse_ec_cyc_anl_a1.sh ├── run_osse_ec_cyc_anl_a2.sh ├── run_osse_ec_cyc_anl_a3.sh ├── run_osse_ec_cyc_anl_a4.sh ├── run_osse_ec_cyc_anl_a5.sh ├── run_osse_ec_cyc_anl_ctl.sh ├── run_osse_ec_multi.sh ├── run_osse_ec_multi_ctl.sh ├── run_osse_ec_multi_cyc.sh ├── run_osse_ec_multi_cyc_12h_spinup.sh ├── run_osse_ec_multi_cyc_1h.sh ├── run_osse_ec_multi_cyc_5steps.sh ├── run_osse_ec_multi_cyc_6h.sh ├── run_osse_ec_multi_noncyc.sh ├── run_osse_ec_noncyc.sh ├── run_osse_hourly.sh └── run_osse_update_lbc.sh ├── env_vars.py ├── gsi.py ├── nohup.out ├── pywrf.py ├── run.py ├── run_tasks.py ├── settings.py ├── tools.py ├── wps.py ├── wrf.py └── wrfda.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.log 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/README.md -------------------------------------------------------------------------------- /bak/gsi_leo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bak/gsi_leo.py -------------------------------------------------------------------------------- /bak/job/real.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bak/job/real.job -------------------------------------------------------------------------------- /bak/job/run_gsi_dm.ksh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bak/job/run_gsi_dm.ksh -------------------------------------------------------------------------------- /bak/job/test.srun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bak/job/test.srun -------------------------------------------------------------------------------- /bak/job/wrf.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bak/job/wrf.job -------------------------------------------------------------------------------- /bak/namelist/namelist.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bak/namelist/namelist.input -------------------------------------------------------------------------------- /bak/namelist/namelist.wps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bak/namelist/namelist.wps -------------------------------------------------------------------------------- /bak/settings/settings-leo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bak/settings/settings-leo.py -------------------------------------------------------------------------------- /bak/test_run_gsi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bak/test_run_gsi.sh -------------------------------------------------------------------------------- /bash/renew.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/renew.sh -------------------------------------------------------------------------------- /bash/renew_anl_cyc_1h.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/renew_anl_cyc_1h.sh -------------------------------------------------------------------------------- /bash/renew_anl_cyc_1h_ecmwf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/renew_anl_cyc_1h_ecmwf.sh -------------------------------------------------------------------------------- /bash/renew_anl_cyc_3h.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/renew_anl_cyc_3h.sh -------------------------------------------------------------------------------- /bash/renew_anl_cyc_3h_ecmwf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/renew_anl_cyc_3h_ecmwf.sh -------------------------------------------------------------------------------- /bash/renew_anl_cyc_6h.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/renew_anl_cyc_6h.sh -------------------------------------------------------------------------------- /bash/renew_anl_cyc_ecmwf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/renew_anl_cyc_ecmwf.sh -------------------------------------------------------------------------------- /bash/renew_debug_01.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/renew_debug_01.sh -------------------------------------------------------------------------------- /bash/renew_debug_02.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/renew_debug_02.sh -------------------------------------------------------------------------------- /bash/renew_ec_1h.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/renew_ec_1h.sh -------------------------------------------------------------------------------- /bash/renew_ec_3h.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/renew_ec_3h.sh -------------------------------------------------------------------------------- /bash/renew_ec_3h_raob.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/renew_ec_3h_raob.sh -------------------------------------------------------------------------------- /bash/renew_ec_cyc_anl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/renew_ec_cyc_anl.sh -------------------------------------------------------------------------------- /bash/renew_ec_multi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/renew_ec_multi.sh -------------------------------------------------------------------------------- /bash/renew_ec_noncyc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/renew_ec_noncyc.sh -------------------------------------------------------------------------------- /bash/renew_hourly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/renew_hourly.sh -------------------------------------------------------------------------------- /bash/renew_satbias.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/renew_satbias.sh -------------------------------------------------------------------------------- /bash/run_anl_cyc_1h.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_anl_cyc_1h.sh -------------------------------------------------------------------------------- /bash/run_anl_cyc_1h_ecmwf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_anl_cyc_1h_ecmwf.sh -------------------------------------------------------------------------------- /bash/run_anl_cyc_3h.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_anl_cyc_3h.sh -------------------------------------------------------------------------------- /bash/run_anl_cyc_3h_ecmwf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_anl_cyc_3h_ecmwf.sh -------------------------------------------------------------------------------- /bash/run_anl_cyc_6h.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_anl_cyc_6h.sh -------------------------------------------------------------------------------- /bash/run_anl_cyc_ctl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_anl_cyc_ctl.sh -------------------------------------------------------------------------------- /bash/run_anl_cyc_ctl_ecmwf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_anl_cyc_ctl_ecmwf.sh -------------------------------------------------------------------------------- /bash/run_debug_01.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_debug_01.sh -------------------------------------------------------------------------------- /bash/run_debug_02.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_debug_02.sh -------------------------------------------------------------------------------- /bash/run_osse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_osse.sh -------------------------------------------------------------------------------- /bash/run_osse_ec_1h.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_osse_ec_1h.sh -------------------------------------------------------------------------------- /bash/run_osse_ec_3h.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_osse_ec_3h.sh -------------------------------------------------------------------------------- /bash/run_osse_ec_3h_ctl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_osse_ec_3h_ctl.sh -------------------------------------------------------------------------------- /bash/run_osse_ec_3h_debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_osse_ec_3h_debug.sh -------------------------------------------------------------------------------- /bash/run_osse_ec_3h_raob.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_osse_ec_3h_raob.sh -------------------------------------------------------------------------------- /bash/run_osse_ec_cyc_anl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_osse_ec_cyc_anl.sh -------------------------------------------------------------------------------- /bash/run_osse_ec_cyc_anl_a1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_osse_ec_cyc_anl_a1.sh -------------------------------------------------------------------------------- /bash/run_osse_ec_cyc_anl_a2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_osse_ec_cyc_anl_a2.sh -------------------------------------------------------------------------------- /bash/run_osse_ec_cyc_anl_a3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_osse_ec_cyc_anl_a3.sh -------------------------------------------------------------------------------- /bash/run_osse_ec_cyc_anl_a4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_osse_ec_cyc_anl_a4.sh -------------------------------------------------------------------------------- /bash/run_osse_ec_cyc_anl_a5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_osse_ec_cyc_anl_a5.sh -------------------------------------------------------------------------------- /bash/run_osse_ec_cyc_anl_ctl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_osse_ec_cyc_anl_ctl.sh -------------------------------------------------------------------------------- /bash/run_osse_ec_multi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_osse_ec_multi.sh -------------------------------------------------------------------------------- /bash/run_osse_ec_multi_ctl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_osse_ec_multi_ctl.sh -------------------------------------------------------------------------------- /bash/run_osse_ec_multi_cyc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_osse_ec_multi_cyc.sh -------------------------------------------------------------------------------- /bash/run_osse_ec_multi_cyc_12h_spinup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_osse_ec_multi_cyc_12h_spinup.sh -------------------------------------------------------------------------------- /bash/run_osse_ec_multi_cyc_1h.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_osse_ec_multi_cyc_1h.sh -------------------------------------------------------------------------------- /bash/run_osse_ec_multi_cyc_5steps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_osse_ec_multi_cyc_5steps.sh -------------------------------------------------------------------------------- /bash/run_osse_ec_multi_cyc_6h.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_osse_ec_multi_cyc_6h.sh -------------------------------------------------------------------------------- /bash/run_osse_ec_multi_noncyc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_osse_ec_multi_noncyc.sh -------------------------------------------------------------------------------- /bash/run_osse_ec_noncyc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_osse_ec_noncyc.sh -------------------------------------------------------------------------------- /bash/run_osse_hourly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_osse_hourly.sh -------------------------------------------------------------------------------- /bash/run_osse_update_lbc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/bash/run_osse_update_lbc.sh -------------------------------------------------------------------------------- /env_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/env_vars.py -------------------------------------------------------------------------------- /gsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/gsi.py -------------------------------------------------------------------------------- /nohup.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/nohup.out -------------------------------------------------------------------------------- /pywrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/pywrf.py -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/run.py -------------------------------------------------------------------------------- /run_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/run_tasks.py -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/settings.py -------------------------------------------------------------------------------- /tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/tools.py -------------------------------------------------------------------------------- /wps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/wps.py -------------------------------------------------------------------------------- /wrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/wrf.py -------------------------------------------------------------------------------- /wrfda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhu2e/PyWRF/HEAD/wrfda.py --------------------------------------------------------------------------------