├── .gitattributes ├── .github └── workflows │ └── python-package-conda.yml ├── .gitignore ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── bin ├── fortnml ├── wrf4g ├── wrf4g_autocomplete.sh ├── wrf4g_init.sh ├── wrf_make_bin └── wrf_util.sh ├── fortran_namelist └── __init__.py ├── scientific_publications ├── BenefitsRequirementsGrid.pdf ├── ExecutionManagementGrid.pdf ├── LargeScaleClimate.pdf └── Tesis VFQ.pdf ├── setup.py └── wrf4g ├── __init__.py ├── _static_version.py ├── _version.py ├── commands ├── __init__.py ├── conf.py ├── exp.py ├── host.py ├── id.py ├── job.py ├── rea.py ├── resource.py ├── start.py ├── status.py ├── stop.py ├── syncdb.py └── vcp.py ├── config.py ├── core.py ├── data ├── etc │ ├── db.conf │ ├── gwrc │ ├── templates │ │ ├── experiments │ │ │ ├── default │ │ │ │ └── experiment.wrf4g │ │ │ ├── physics │ │ │ │ └── experiment.wrf4g │ │ │ └── single │ │ │ │ └── experiment.wrf4g │ │ └── namelist │ │ │ ├── namelist.input-3.2 │ │ │ ├── namelist.input-3.2.1 │ │ │ ├── namelist.input-3.3 │ │ │ ├── namelist.input-3.3.1 │ │ │ ├── namelist.input-3.4 │ │ │ ├── namelist.input-3.4.1 │ │ │ ├── namelist.input-3.5 │ │ │ ├── namelist.input-3.5.1 │ │ │ ├── namelist.input-3.6 │ │ │ ├── namelist.input-3.6.1 │ │ │ ├── namelist.input-3.7 │ │ │ ├── namelist.input-3.7.1 │ │ │ ├── namelist.input-3.8 │ │ │ ├── namelist.input-3.8.1 │ │ │ ├── namelist.input-4.1 │ │ │ ├── namelist.input-4.1.2 │ │ │ └── namelist.input-4.2.2 │ ├── wrf4g.db │ └── wrf4g_wrapper.sh └── wn │ └── bin │ ├── postprocessor.ALLSTDPLEVS │ ├── postprocessor.CLIMATICBASIC │ ├── postprocessor.PBL │ ├── postprocessor.SFC │ ├── preprocessor.CNRM │ ├── preprocessor.ECHAM5 │ ├── preprocessor.ECMWF │ ├── preprocessor.HADLEY │ ├── preprocessor.NNR1 │ ├── preprocessor.default │ ├── wrf_launcher.sh │ ├── wrf_wrapper.py │ └── wrfpreprocessor.mptableCO2 ├── db.py ├── orm.py ├── slurm_cesga.py ├── tests ├── __init__.py ├── mocked_functions.py ├── test_experiment │ ├── experiment.wrf4g │ ├── namelist.input │ ├── realization.json │ └── wrf4g_files │ │ └── bin │ │ ├── postprocessor.SFC │ │ └── preprocessor.default ├── test_realization.py └── test_wrapper.py ├── utils ├── __init__.py ├── archive.py ├── command.py ├── file.py ├── gridwaylib.py ├── mpi.py ├── namelist.py ├── osinfo.py ├── time.py └── vcplib.py └── wrapper.py /.gitattributes: -------------------------------------------------------------------------------- 1 | wrf4g/_static_version.py export-subst -------------------------------------------------------------------------------- /.github/workflows/python-package-conda.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/.github/workflows/python-package-conda.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/README.md -------------------------------------------------------------------------------- /bin/fortnml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/bin/fortnml -------------------------------------------------------------------------------- /bin/wrf4g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/bin/wrf4g -------------------------------------------------------------------------------- /bin/wrf4g_autocomplete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/bin/wrf4g_autocomplete.sh -------------------------------------------------------------------------------- /bin/wrf4g_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/bin/wrf4g_init.sh -------------------------------------------------------------------------------- /bin/wrf_make_bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/bin/wrf_make_bin -------------------------------------------------------------------------------- /bin/wrf_util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/bin/wrf_util.sh -------------------------------------------------------------------------------- /fortran_namelist/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/fortran_namelist/__init__.py -------------------------------------------------------------------------------- /scientific_publications/BenefitsRequirementsGrid.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/scientific_publications/BenefitsRequirementsGrid.pdf -------------------------------------------------------------------------------- /scientific_publications/ExecutionManagementGrid.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/scientific_publications/ExecutionManagementGrid.pdf -------------------------------------------------------------------------------- /scientific_publications/LargeScaleClimate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/scientific_publications/LargeScaleClimate.pdf -------------------------------------------------------------------------------- /scientific_publications/Tesis VFQ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/scientific_publications/Tesis VFQ.pdf -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/setup.py -------------------------------------------------------------------------------- /wrf4g/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/__init__.py -------------------------------------------------------------------------------- /wrf4g/_static_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/_static_version.py -------------------------------------------------------------------------------- /wrf4g/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/_version.py -------------------------------------------------------------------------------- /wrf4g/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/commands/__init__.py -------------------------------------------------------------------------------- /wrf4g/commands/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/commands/conf.py -------------------------------------------------------------------------------- /wrf4g/commands/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/commands/exp.py -------------------------------------------------------------------------------- /wrf4g/commands/host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/commands/host.py -------------------------------------------------------------------------------- /wrf4g/commands/id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/commands/id.py -------------------------------------------------------------------------------- /wrf4g/commands/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/commands/job.py -------------------------------------------------------------------------------- /wrf4g/commands/rea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/commands/rea.py -------------------------------------------------------------------------------- /wrf4g/commands/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/commands/resource.py -------------------------------------------------------------------------------- /wrf4g/commands/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/commands/start.py -------------------------------------------------------------------------------- /wrf4g/commands/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/commands/status.py -------------------------------------------------------------------------------- /wrf4g/commands/stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/commands/stop.py -------------------------------------------------------------------------------- /wrf4g/commands/syncdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/commands/syncdb.py -------------------------------------------------------------------------------- /wrf4g/commands/vcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/commands/vcp.py -------------------------------------------------------------------------------- /wrf4g/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/config.py -------------------------------------------------------------------------------- /wrf4g/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/core.py -------------------------------------------------------------------------------- /wrf4g/data/etc/db.conf: -------------------------------------------------------------------------------- 1 | [DEFAULT] 2 | -------------------------------------------------------------------------------- /wrf4g/data/etc/gwrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/etc/gwrc -------------------------------------------------------------------------------- /wrf4g/data/etc/templates/experiments/default/experiment.wrf4g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/etc/templates/experiments/default/experiment.wrf4g -------------------------------------------------------------------------------- /wrf4g/data/etc/templates/experiments/physics/experiment.wrf4g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/etc/templates/experiments/physics/experiment.wrf4g -------------------------------------------------------------------------------- /wrf4g/data/etc/templates/experiments/single/experiment.wrf4g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/etc/templates/experiments/single/experiment.wrf4g -------------------------------------------------------------------------------- /wrf4g/data/etc/templates/namelist/namelist.input-3.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/etc/templates/namelist/namelist.input-3.2 -------------------------------------------------------------------------------- /wrf4g/data/etc/templates/namelist/namelist.input-3.2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/etc/templates/namelist/namelist.input-3.2.1 -------------------------------------------------------------------------------- /wrf4g/data/etc/templates/namelist/namelist.input-3.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/etc/templates/namelist/namelist.input-3.3 -------------------------------------------------------------------------------- /wrf4g/data/etc/templates/namelist/namelist.input-3.3.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/etc/templates/namelist/namelist.input-3.3.1 -------------------------------------------------------------------------------- /wrf4g/data/etc/templates/namelist/namelist.input-3.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/etc/templates/namelist/namelist.input-3.4 -------------------------------------------------------------------------------- /wrf4g/data/etc/templates/namelist/namelist.input-3.4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/etc/templates/namelist/namelist.input-3.4.1 -------------------------------------------------------------------------------- /wrf4g/data/etc/templates/namelist/namelist.input-3.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/etc/templates/namelist/namelist.input-3.5 -------------------------------------------------------------------------------- /wrf4g/data/etc/templates/namelist/namelist.input-3.5.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/etc/templates/namelist/namelist.input-3.5.1 -------------------------------------------------------------------------------- /wrf4g/data/etc/templates/namelist/namelist.input-3.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/etc/templates/namelist/namelist.input-3.6 -------------------------------------------------------------------------------- /wrf4g/data/etc/templates/namelist/namelist.input-3.6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/etc/templates/namelist/namelist.input-3.6.1 -------------------------------------------------------------------------------- /wrf4g/data/etc/templates/namelist/namelist.input-3.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/etc/templates/namelist/namelist.input-3.7 -------------------------------------------------------------------------------- /wrf4g/data/etc/templates/namelist/namelist.input-3.7.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/etc/templates/namelist/namelist.input-3.7.1 -------------------------------------------------------------------------------- /wrf4g/data/etc/templates/namelist/namelist.input-3.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/etc/templates/namelist/namelist.input-3.8 -------------------------------------------------------------------------------- /wrf4g/data/etc/templates/namelist/namelist.input-3.8.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/etc/templates/namelist/namelist.input-3.8.1 -------------------------------------------------------------------------------- /wrf4g/data/etc/templates/namelist/namelist.input-4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/etc/templates/namelist/namelist.input-4.1 -------------------------------------------------------------------------------- /wrf4g/data/etc/templates/namelist/namelist.input-4.1.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/etc/templates/namelist/namelist.input-4.1.2 -------------------------------------------------------------------------------- /wrf4g/data/etc/templates/namelist/namelist.input-4.2.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/etc/templates/namelist/namelist.input-4.2.2 -------------------------------------------------------------------------------- /wrf4g/data/etc/wrf4g.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/etc/wrf4g.db -------------------------------------------------------------------------------- /wrf4g/data/etc/wrf4g_wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/etc/wrf4g_wrapper.sh -------------------------------------------------------------------------------- /wrf4g/data/wn/bin/postprocessor.ALLSTDPLEVS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/wn/bin/postprocessor.ALLSTDPLEVS -------------------------------------------------------------------------------- /wrf4g/data/wn/bin/postprocessor.CLIMATICBASIC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/wn/bin/postprocessor.CLIMATICBASIC -------------------------------------------------------------------------------- /wrf4g/data/wn/bin/postprocessor.PBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/wn/bin/postprocessor.PBL -------------------------------------------------------------------------------- /wrf4g/data/wn/bin/postprocessor.SFC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/wn/bin/postprocessor.SFC -------------------------------------------------------------------------------- /wrf4g/data/wn/bin/preprocessor.CNRM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/wn/bin/preprocessor.CNRM -------------------------------------------------------------------------------- /wrf4g/data/wn/bin/preprocessor.ECHAM5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/wn/bin/preprocessor.ECHAM5 -------------------------------------------------------------------------------- /wrf4g/data/wn/bin/preprocessor.ECMWF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/wn/bin/preprocessor.ECMWF -------------------------------------------------------------------------------- /wrf4g/data/wn/bin/preprocessor.HADLEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/wn/bin/preprocessor.HADLEY -------------------------------------------------------------------------------- /wrf4g/data/wn/bin/preprocessor.NNR1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/wn/bin/preprocessor.NNR1 -------------------------------------------------------------------------------- /wrf4g/data/wn/bin/preprocessor.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/wn/bin/preprocessor.default -------------------------------------------------------------------------------- /wrf4g/data/wn/bin/wrf_launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/wn/bin/wrf_launcher.sh -------------------------------------------------------------------------------- /wrf4g/data/wn/bin/wrf_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/wn/bin/wrf_wrapper.py -------------------------------------------------------------------------------- /wrf4g/data/wn/bin/wrfpreprocessor.mptableCO2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/data/wn/bin/wrfpreprocessor.mptableCO2 -------------------------------------------------------------------------------- /wrf4g/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/db.py -------------------------------------------------------------------------------- /wrf4g/orm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/orm.py -------------------------------------------------------------------------------- /wrf4g/slurm_cesga.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/slurm_cesga.py -------------------------------------------------------------------------------- /wrf4g/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wrf4g/tests/mocked_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/tests/mocked_functions.py -------------------------------------------------------------------------------- /wrf4g/tests/test_experiment/experiment.wrf4g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/tests/test_experiment/experiment.wrf4g -------------------------------------------------------------------------------- /wrf4g/tests/test_experiment/namelist.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/tests/test_experiment/namelist.input -------------------------------------------------------------------------------- /wrf4g/tests/test_experiment/realization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/tests/test_experiment/realization.json -------------------------------------------------------------------------------- /wrf4g/tests/test_experiment/wrf4g_files/bin/postprocessor.SFC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/tests/test_experiment/wrf4g_files/bin/postprocessor.SFC -------------------------------------------------------------------------------- /wrf4g/tests/test_experiment/wrf4g_files/bin/preprocessor.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/tests/test_experiment/wrf4g_files/bin/preprocessor.default -------------------------------------------------------------------------------- /wrf4g/tests/test_realization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/tests/test_realization.py -------------------------------------------------------------------------------- /wrf4g/tests/test_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/tests/test_wrapper.py -------------------------------------------------------------------------------- /wrf4g/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/utils/__init__.py -------------------------------------------------------------------------------- /wrf4g/utils/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/utils/archive.py -------------------------------------------------------------------------------- /wrf4g/utils/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/utils/command.py -------------------------------------------------------------------------------- /wrf4g/utils/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/utils/file.py -------------------------------------------------------------------------------- /wrf4g/utils/gridwaylib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/utils/gridwaylib.py -------------------------------------------------------------------------------- /wrf4g/utils/mpi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/utils/mpi.py -------------------------------------------------------------------------------- /wrf4g/utils/namelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/utils/namelist.py -------------------------------------------------------------------------------- /wrf4g/utils/osinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/utils/osinfo.py -------------------------------------------------------------------------------- /wrf4g/utils/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/utils/time.py -------------------------------------------------------------------------------- /wrf4g/utils/vcplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/utils/vcplib.py -------------------------------------------------------------------------------- /wrf4g/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantanderMetGroup/WRF4G/HEAD/wrf4g/wrapper.py --------------------------------------------------------------------------------