├── .gitattributes ├── .gitignore ├── Installing WRF and WPS.txt ├── README.md ├── constants └── NARR.constants ├── control.txt ├── gnu ├── io_vars └── IO_VARS.txt ├── post ├── Python │ ├── ArrayTools.py │ ├── Calculation.py │ ├── ColorMaps.py │ ├── Conversions.py │ ├── Plotting.py │ ├── PyPostSettings.py │ ├── PyPostTools.py │ ├── PythonPost.py │ ├── Routines.py │ ├── __init__.py │ └── python_post_control.txt ├── UPP │ ├── includes │ │ ├── AerosolCoeff.bin │ │ ├── CloudCoeff.bin │ │ ├── FASTEM4.MWwater.EmisCoeff.bin │ │ ├── FASTEM5.MWwater.EmisCoeff.bin │ │ ├── FASTEM6.MWwater.EmisCoeff.bin │ │ ├── NPOESS.IRice.EmisCoeff.bin │ │ ├── NPOESS.IRland.EmisCoeff.bin │ │ ├── NPOESS.IRsnow.EmisCoeff.bin │ │ ├── Nalli.IRwater.EmisCoeff.bin │ │ ├── amsre_aqua.SpcCoeff.bin │ │ ├── amsre_aqua.TauCoeff.bin │ │ ├── imgr_g11.SpcCoeff.bin │ │ ├── imgr_g11.TauCoeff.bin │ │ ├── imgr_g12.SpcCoeff.bin │ │ ├── imgr_g12.TauCoeff.bin │ │ ├── imgr_g13.SpcCoeff.bin │ │ ├── imgr_g13.TauCoeff.bin │ │ ├── imgr_g15.SpcCoeff.bin │ │ ├── imgr_g15.TauCoeff.bin │ │ ├── imgr_insat3d.SpcCoeff.bin │ │ ├── imgr_insat3d.TauCoeff.bin │ │ ├── imgr_mt1r.SpcCoeff.bin │ │ ├── imgr_mt1r.TauCoeff.bin │ │ ├── imgr_mt2.SpcCoeff.bin │ │ ├── imgr_mt2.TauCoeff.bin │ │ ├── seviri_m10.SpcCoeff.bin │ │ ├── seviri_m10.TauCoeff.bin │ │ ├── ssmi_f13.SpcCoeff.bin │ │ ├── ssmi_f13.TauCoeff.bin │ │ ├── ssmi_f14.SpcCoeff.bin │ │ ├── ssmi_f14.TauCoeff.bin │ │ ├── ssmi_f15.SpcCoeff.bin │ │ ├── ssmi_f15.TauCoeff.bin │ │ ├── ssmis_f16.SpcCoeff.bin │ │ ├── ssmis_f16.TauCoeff.bin │ │ ├── ssmis_f17.SpcCoeff.bin │ │ ├── ssmis_f17.TauCoeff.bin │ │ ├── ssmis_f18.SpcCoeff.bin │ │ ├── ssmis_f18.TauCoeff.bin │ │ ├── ssmis_f19.SpcCoeff.bin │ │ ├── ssmis_f19.TauCoeff.bin │ │ ├── ssmis_f20.SpcCoeff.bin │ │ ├── ssmis_f20.TauCoeff.bin │ │ ├── tmi_trmm.SpcCoeff.bin │ │ ├── tmi_trmm.TauCoeff.bin │ │ └── v.seviri_m10.SpcCoeff.bin │ ├── parm │ │ ├── EMC_POST_Avblflds_Schema.xsd │ │ ├── EMC_POST_CTRL_Schema.xsd │ │ ├── POST-XML-Library-NT.pl │ │ ├── PostXMLPreprocessor.pl │ │ ├── hires_micro_lookup.dat │ │ ├── makefile │ │ ├── nam_micro_lookup.dat │ │ ├── params_grib2_tbl_new │ │ ├── post_avblflds.xml │ │ ├── postcntrl.new │ │ ├── postcntrl.ngac │ │ ├── postcntrl.xml │ │ ├── postxconfig-NT.txt │ │ ├── postxconfig-NT_WRF.txt │ │ └── wrf_cntrl.parm │ └── scripts │ │ ├── cbar.gs │ │ ├── g2ctl.pl │ │ └── grib2ctl.pl └── __init__.py ├── run_wrf.py ├── scripts ├── Application.py ├── ApplicationSettings.py ├── Cleanup.py ├── Jobs.py ├── ModelData.py ├── PreparePyJob.py ├── Scheduler.py ├── Template.py ├── Tools.py ├── Wait.py └── __init__.py ├── templates ├── namelist.input.template └── namelist.wps.template └── vtables ├── Vtable.CFSv2.3D ├── Vtable.CFSv2.FLX └── Vtable.NARR /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/.gitignore -------------------------------------------------------------------------------- /Installing WRF and WPS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/Installing WRF and WPS.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/README.md -------------------------------------------------------------------------------- /constants/NARR.constants: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/constants/NARR.constants -------------------------------------------------------------------------------- /control.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/control.txt -------------------------------------------------------------------------------- /gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/gnu -------------------------------------------------------------------------------- /io_vars/IO_VARS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/io_vars/IO_VARS.txt -------------------------------------------------------------------------------- /post/Python/ArrayTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/Python/ArrayTools.py -------------------------------------------------------------------------------- /post/Python/Calculation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/Python/Calculation.py -------------------------------------------------------------------------------- /post/Python/ColorMaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/Python/ColorMaps.py -------------------------------------------------------------------------------- /post/Python/Conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/Python/Conversions.py -------------------------------------------------------------------------------- /post/Python/Plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/Python/Plotting.py -------------------------------------------------------------------------------- /post/Python/PyPostSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/Python/PyPostSettings.py -------------------------------------------------------------------------------- /post/Python/PyPostTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/Python/PyPostTools.py -------------------------------------------------------------------------------- /post/Python/PythonPost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/Python/PythonPost.py -------------------------------------------------------------------------------- /post/Python/Routines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/Python/Routines.py -------------------------------------------------------------------------------- /post/Python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /post/Python/python_post_control.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/Python/python_post_control.txt -------------------------------------------------------------------------------- /post/UPP/includes/AerosolCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/AerosolCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/CloudCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/CloudCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/FASTEM4.MWwater.EmisCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/FASTEM4.MWwater.EmisCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/FASTEM5.MWwater.EmisCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/FASTEM5.MWwater.EmisCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/FASTEM6.MWwater.EmisCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/FASTEM6.MWwater.EmisCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/NPOESS.IRice.EmisCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/NPOESS.IRice.EmisCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/NPOESS.IRland.EmisCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/NPOESS.IRland.EmisCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/NPOESS.IRsnow.EmisCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/NPOESS.IRsnow.EmisCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/Nalli.IRwater.EmisCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/Nalli.IRwater.EmisCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/amsre_aqua.SpcCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/amsre_aqua.SpcCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/amsre_aqua.TauCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/amsre_aqua.TauCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/imgr_g11.SpcCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/imgr_g11.SpcCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/imgr_g11.TauCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/imgr_g11.TauCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/imgr_g12.SpcCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/imgr_g12.SpcCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/imgr_g12.TauCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/imgr_g12.TauCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/imgr_g13.SpcCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/imgr_g13.SpcCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/imgr_g13.TauCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/imgr_g13.TauCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/imgr_g15.SpcCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/imgr_g15.SpcCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/imgr_g15.TauCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/imgr_g15.TauCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/imgr_insat3d.SpcCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/imgr_insat3d.SpcCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/imgr_insat3d.TauCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/imgr_insat3d.TauCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/imgr_mt1r.SpcCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/imgr_mt1r.SpcCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/imgr_mt1r.TauCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/imgr_mt1r.TauCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/imgr_mt2.SpcCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/imgr_mt2.SpcCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/imgr_mt2.TauCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/imgr_mt2.TauCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/seviri_m10.SpcCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/seviri_m10.SpcCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/seviri_m10.TauCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/seviri_m10.TauCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/ssmi_f13.SpcCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/ssmi_f13.SpcCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/ssmi_f13.TauCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/ssmi_f13.TauCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/ssmi_f14.SpcCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/ssmi_f14.SpcCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/ssmi_f14.TauCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/ssmi_f14.TauCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/ssmi_f15.SpcCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/ssmi_f15.SpcCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/ssmi_f15.TauCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/ssmi_f15.TauCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/ssmis_f16.SpcCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/ssmis_f16.SpcCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/ssmis_f16.TauCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/ssmis_f16.TauCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/ssmis_f17.SpcCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/ssmis_f17.SpcCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/ssmis_f17.TauCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/ssmis_f17.TauCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/ssmis_f18.SpcCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/ssmis_f18.SpcCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/ssmis_f18.TauCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/ssmis_f18.TauCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/ssmis_f19.SpcCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/ssmis_f19.SpcCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/ssmis_f19.TauCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/ssmis_f19.TauCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/ssmis_f20.SpcCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/ssmis_f20.SpcCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/ssmis_f20.TauCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/ssmis_f20.TauCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/tmi_trmm.SpcCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/tmi_trmm.SpcCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/tmi_trmm.TauCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/tmi_trmm.TauCoeff.bin -------------------------------------------------------------------------------- /post/UPP/includes/v.seviri_m10.SpcCoeff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/includes/v.seviri_m10.SpcCoeff.bin -------------------------------------------------------------------------------- /post/UPP/parm/EMC_POST_Avblflds_Schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/parm/EMC_POST_Avblflds_Schema.xsd -------------------------------------------------------------------------------- /post/UPP/parm/EMC_POST_CTRL_Schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/parm/EMC_POST_CTRL_Schema.xsd -------------------------------------------------------------------------------- /post/UPP/parm/POST-XML-Library-NT.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/parm/POST-XML-Library-NT.pl -------------------------------------------------------------------------------- /post/UPP/parm/PostXMLPreprocessor.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/parm/PostXMLPreprocessor.pl -------------------------------------------------------------------------------- /post/UPP/parm/hires_micro_lookup.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/parm/hires_micro_lookup.dat -------------------------------------------------------------------------------- /post/UPP/parm/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/parm/makefile -------------------------------------------------------------------------------- /post/UPP/parm/nam_micro_lookup.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/parm/nam_micro_lookup.dat -------------------------------------------------------------------------------- /post/UPP/parm/params_grib2_tbl_new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/parm/params_grib2_tbl_new -------------------------------------------------------------------------------- /post/UPP/parm/post_avblflds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/parm/post_avblflds.xml -------------------------------------------------------------------------------- /post/UPP/parm/postcntrl.new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/parm/postcntrl.new -------------------------------------------------------------------------------- /post/UPP/parm/postcntrl.ngac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/parm/postcntrl.ngac -------------------------------------------------------------------------------- /post/UPP/parm/postcntrl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/parm/postcntrl.xml -------------------------------------------------------------------------------- /post/UPP/parm/postxconfig-NT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/parm/postxconfig-NT.txt -------------------------------------------------------------------------------- /post/UPP/parm/postxconfig-NT_WRF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/parm/postxconfig-NT_WRF.txt -------------------------------------------------------------------------------- /post/UPP/parm/wrf_cntrl.parm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/parm/wrf_cntrl.parm -------------------------------------------------------------------------------- /post/UPP/scripts/cbar.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/scripts/cbar.gs -------------------------------------------------------------------------------- /post/UPP/scripts/g2ctl.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/scripts/g2ctl.pl -------------------------------------------------------------------------------- /post/UPP/scripts/grib2ctl.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/post/UPP/scripts/grib2ctl.pl -------------------------------------------------------------------------------- /post/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /run_wrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/run_wrf.py -------------------------------------------------------------------------------- /scripts/Application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/scripts/Application.py -------------------------------------------------------------------------------- /scripts/ApplicationSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/scripts/ApplicationSettings.py -------------------------------------------------------------------------------- /scripts/Cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/scripts/Cleanup.py -------------------------------------------------------------------------------- /scripts/Jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/scripts/Jobs.py -------------------------------------------------------------------------------- /scripts/ModelData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/scripts/ModelData.py -------------------------------------------------------------------------------- /scripts/PreparePyJob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/scripts/PreparePyJob.py -------------------------------------------------------------------------------- /scripts/Scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/scripts/Scheduler.py -------------------------------------------------------------------------------- /scripts/Template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/scripts/Template.py -------------------------------------------------------------------------------- /scripts/Tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/scripts/Tools.py -------------------------------------------------------------------------------- /scripts/Wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/scripts/Wait.py -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/namelist.input.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/templates/namelist.input.template -------------------------------------------------------------------------------- /templates/namelist.wps.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/templates/namelist.wps.template -------------------------------------------------------------------------------- /vtables/Vtable.CFSv2.3D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/vtables/Vtable.CFSv2.3D -------------------------------------------------------------------------------- /vtables/Vtable.CFSv2.FLX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/vtables/Vtable.CFSv2.FLX -------------------------------------------------------------------------------- /vtables/Vtable.NARR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niu-wcs/wrf-run/HEAD/vtables/Vtable.NARR --------------------------------------------------------------------------------