diff --git a/.github/workflows/aux.yml b/.github/workflows/aux.yml index b9262bd816..816c7fc28b 100644 --- a/.github/workflows/aux.yml +++ b/.github/workflows/aux.yml @@ -21,7 +21,7 @@ jobs: - name: Share helper id run: echo -n ${{ github.run_id }} >~/id_file - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: ~/id_file key: helperid-${{ github.event.workflow_run.id }} diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test._yml similarity index 93% rename from .github/workflows/build_test.yml rename to .github/workflows/build_test._yml index 94df20a235..21de1f26bc 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test._yml @@ -16,12 +16,12 @@ jobs: current: ${{ steps.check.outputs.current }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Wait for caching source run: sleep 30 - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: ~/id_file key: helperid-${{ github.run_id }} diff --git a/CDEPS-interface/CDEPS b/CDEPS-interface/CDEPS index fbdf6843d6..1f9eaaa142 160000 --- a/CDEPS-interface/CDEPS +++ b/CDEPS-interface/CDEPS @@ -1 +1 @@ -Subproject commit fbdf6843d6bde852d97f1547591d90136103f669 +Subproject commit 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae diff --git a/CDEPS-interface/cdeps_files.cmake b/CDEPS-interface/cdeps_files.cmake index bec4d6c235..321b9d84c5 100644 --- a/CDEPS-interface/cdeps_files.cmake +++ b/CDEPS-interface/cdeps_files.cmake @@ -41,14 +41,11 @@ list(APPEND cdeps_dshr_files list(APPEND cdeps_datm_files CDEPS/datm/atm_comp_nuopc.F90 - CDEPS/datm/datm_datamode_cfsr_mod.F90 CDEPS/datm/datm_datamode_clmncep_mod.F90 CDEPS/datm/datm_datamode_core2_mod.F90 CDEPS/datm/datm_datamode_cplhist_mod.F90 CDEPS/datm/datm_datamode_era5_mod.F90 CDEPS/datm/datm_datamode_gefs_mod.F90 - CDEPS/datm/datm_datamode_gfs_mod.F90 - CDEPS/datm/datm_datamode_gfs_hafs_mod.F90 CDEPS/datm/datm_datamode_jra_mod.F90 CDEPS/datm/datm_datamode_simple_mod.F90 ) diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index f13e16e414..663554e1c1 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit f13e16e414e115e268b2dd300b665e628e5f2429 +Subproject commit 663554e1c1724ade6292cf0a28a3c19e59caf980 diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index 4b8777eb08..5e0c21f64f 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit 4b8777eb08b065d8a95e5317b6270a7a67ccf93e +Subproject commit 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 diff --git a/MOM6-interface/mom6_files.cmake b/MOM6-interface/mom6_files.cmake index fbe95fdce7..98fb78776e 100644 --- a/MOM6-interface/mom6_files.cmake +++ b/MOM6-interface/mom6_files.cmake @@ -36,6 +36,7 @@ list(APPEND mom6_src_files MOM6/src/core/MOM_continuity_PPM.F90 MOM6/src/core/MOM_density_integrals.F90 MOM6/src/core/MOM_dynamics_split_RK2.F90 + MOM6/src/core/MOM_dynamics_split_RK2b.F90 MOM6/src/core/MOM_dynamics_unsplit.F90 MOM6/src/core/MOM_dynamics_unsplit_RK2.F90 MOM6/src/core/MOM_forcing_type.F90 @@ -59,6 +60,7 @@ list(APPEND mom6_src_files MOM6/src/diagnostics/MOM_sum_output.F90 MOM6/src/diagnostics/MOM_wave_speed.F90 + MOM6/src/equation_of_state/MOM_EOS_base_type.F90 MOM6/src/equation_of_state/MOM_EOS.F90 MOM6/src/equation_of_state/MOM_EOS_Jackett06.F90 MOM6/src/equation_of_state/MOM_EOS_Roquet_SpV.F90 diff --git a/build.sh b/build.sh index c1cfe43d8d..3f82a882da 100755 --- a/build.sh +++ b/build.sh @@ -1,17 +1,10 @@ #!/bin/bash set -eu -uname_s=$(uname -s) -if [[ ${uname_s} == Darwin ]]; then - UFS_MODEL_DIR=$(greadlink -f -n "${BASH_SOURCE[0]}") - UFS_MODEL_DIR=$(dirname "${UFS_MODEL_DIR}") - UFS_MODEL_DIR=$(cd "${UFS_MODEL_DIR}" && pwd -P) -else - UFS_MODEL_DIR=$(readlink -f -n "${BASH_SOURCE[0]}") - UFS_MODEL_DIR=$(dirname "${UFS_MODEL_DIR}") - UFS_MODEL_DIR=$(cd "${UFS_MODEL_DIR}" && pwd -P) -fi -echo "UFS MODEL DIR: ${UFS_MODEL_DIR}" + +SCRIPT_REALPATH=$(realpath "${BASH_SOURCE[0]}") +UFS_MODEL_DIR=$(dirname "${SCRIPT_REALPATH}") readonly UFS_MODEL_DIR +echo "UFS MODEL DIR: ${UFS_MODEL_DIR}" export CC=${CC:-mpicc} export CXX=${CXX:-mpicxx} @@ -26,4 +19,4 @@ for i in ${CMAKE_FLAGS}; do ARR_CMAKE_FLAGS+=("${i}") ; done cmake "${UFS_MODEL_DIR}" "${ARR_CMAKE_FLAGS[@]}" # Turn off OpenMP threading for parallel builds # to avoid exhausting the number of user processes -OMP_NUM_THREADS=1 make -j "${BUILD_JOBS:-4}" "VERBOSE=${BUILD_VERBOSE:-}" \ No newline at end of file +OMP_NUM_THREADS=1 make -j "${BUILD_JOBS:-4}" "VERBOSE=${BUILD_VERBOSE:-}" diff --git a/modulefiles/ufs_common.lua b/modulefiles/ufs_common.lua index 0964ea2026..493578a1ff 100644 --- a/modulefiles/ufs_common.lua +++ b/modulefiles/ufs_common.lua @@ -14,13 +14,12 @@ local ufs_modules = { {["fms"] = "2023.04"}, {["bacio"] = "2.4.1"}, {["crtm"] = "2.4.0.1"}, - {["g2"] = "3.4.9"}, - {["g2tmpl"] = "1.10.2"}, + {["g2"] = "3.5.1"}, + {["g2tmpl"] = "1.13.0"}, {["ip"] = "5.0.0"}, - {["sp"] = "2.5.0"}, {["w3emc"] = "2.10.0"}, {["gftl-shared"] = "1.9.0"}, - {["mapl"] = "2.46.2-esmf-8.6.1"}, + {["mapl"] = "2.46.3-esmf-8.6.1"}, {["scotch"] = "7.0.4"}, } diff --git a/modulefiles/ufs_derecho.gnu.lua b/modulefiles/ufs_derecho.gnu.lua index cb70e716ab..4c21b69b0e 100644 --- a/modulefiles/ufs_derecho.gnu.lua +++ b/modulefiles/ufs_derecho.gnu.lua @@ -9,7 +9,7 @@ load("mysql/8.0.33") setenv("LMOD_TMOD_FIND_FIRST","yes") prepend_path("MODULEPATH", "/lustre/desc1/scratch/epicufsrt/contrib/modulefiles_extra") -prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/spack-stack/derecho/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/spack-stack/derecho/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") unload("ncarcompilers") stack_gnu_ver=os.getenv("stack_gnu_ver") or "12.2.0" diff --git a/modulefiles/ufs_derecho.intel.lua b/modulefiles/ufs_derecho.intel.lua index 24b93b8f19..1f3c823f99 100644 --- a/modulefiles/ufs_derecho.intel.lua +++ b/modulefiles/ufs_derecho.intel.lua @@ -9,7 +9,7 @@ load("mysql/8.0.33") setenv("LMOD_TMOD_FIND_FIRST","yes") prepend_path("MODULEPATH", "/lustre/desc1/scratch/epicufsrt/contrib/modulefiles_extra") -prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/spack-stack/derecho/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/spack-stack/derecho/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") unload("ncarcompilers") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.10.0" diff --git a/modulefiles/ufs_gaea.intel.lua b/modulefiles/ufs_gaea.intel.lua index c202ad6423..fb2eb49a1b 100644 --- a/modulefiles/ufs_gaea.intel.lua +++ b/modulefiles/ufs_gaea.intel.lua @@ -5,7 +5,7 @@ help([[ whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===]) -prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2023.1.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/ufs_hera.gnu.lua b/modulefiles/ufs_hera.gnu.lua index 861019fb02..0b38f9c1f4 100644 --- a/modulefiles/ufs_hera.gnu.lua +++ b/modulefiles/ufs_hera.gnu.lua @@ -4,7 +4,7 @@ loads UFS Model prerequisites for Hera/GNU prepend_path("MODULEPATH", "/scratch2/NCEPDEV/stmp1/role.epic/installs/gnu/modulefiles") prepend_path("MODULEPATH", "/scratch2/NCEPDEV/stmp1/role.epic/installs/openmpi/modulefiles") -prepend_path("MODULEPATH", "/scratch2/NCEPDEV/stmp1/role.epic/spack-stack/spack-stack-1.6.0_gnu13/envs/ufs-wm-srw-rocky8/install/modulefiles/Core") +prepend_path("MODULEPATH", "/scratch2/NCEPDEV/stmp1/role.epic/spack-stack/spack-stack-1.6.0_gnu13/envs/upp-addon-env/install/modulefiles/Core") stack_gnu_ver=os.getenv("stack_gnu_ver") or "13.3.0" load(pathJoin("stack-gcc", stack_gnu_ver)) diff --git a/modulefiles/ufs_hera.intel.lua b/modulefiles/ufs_hera.intel.lua index 1ebff6d4c0..bc44280d74 100644 --- a/modulefiles/ufs_hera.intel.lua +++ b/modulefiles/ufs_hera.intel.lua @@ -2,7 +2,11 @@ help([[ loads UFS Model prerequisites for Hera/Intel ]]) +<<<<<<< HEAD prepend_path("MODULEPATH", '/scratch1/NCEPDEV/nems/Alexander.Richert/spack-stack-py311-aug24/envs/test/install/modulefiles/Core') +======= +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") +>>>>>>> 6a4e09e94773ffa39ce7ab6a54a885efada91f21 stack_intel_ver=os.getenv("stack_intel_ver") or "2021.5.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/ufs_hercules.gnu.lua b/modulefiles/ufs_hercules.gnu.lua index 69534c28d8..6645dd3c80 100644 --- a/modulefiles/ufs_hercules.gnu.lua +++ b/modulefiles/ufs_hercules.gnu.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Hercules/GNU ]]) -prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") -- for mvapich2, need: prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/modulefiles") diff --git a/modulefiles/ufs_hercules.intel.lua b/modulefiles/ufs_hercules.intel.lua index 63cfaa989c..8f16440134 100644 --- a/modulefiles/ufs_hercules.intel.lua +++ b/modulefiles/ufs_hercules.intel.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Hercules/Intel ]]) -prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.9.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/ufs_jet.intel.lua b/modulefiles/ufs_jet.intel.lua index b29373eec1..8e54160be8 100644 --- a/modulefiles/ufs_jet.intel.lua +++ b/modulefiles/ufs_jet.intel.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Jet/Intel ]]) -prepend_path("MODULEPATH", "/mnt/lfs4/HFIP/hfv3gfs/role.epic/spack-stack/spack-stack-1.6.0/envs/unified-env-rocky8/install/modulefiles/Core") +prepend_path("MODULEPATH", "/contrib/spack-stack/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.5.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/ufs_orion.intel.lua b/modulefiles/ufs_orion.intel.lua index 1d717663ae..51cc375df8 100644 --- a/modulefiles/ufs_orion.intel.lua +++ b/modulefiles/ufs_orion.intel.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Orion/Intel ]]) -prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/orion/spack-stack-1.6.0/envs/unified-env-rocky9/install/modulefiles/Core") +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/orion/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.9.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/ufs_s4.intel.lua b/modulefiles/ufs_s4.intel.lua index e42a2ddde6..60b48c46d4 100644 --- a/modulefiles/ufs_s4.intel.lua +++ b/modulefiles/ufs_s4.intel.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for S4/Intel ]]) -prepend_path("MODULEPATH", "/data/prod/jedi/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/data/prod/jedi/spack-stack/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.5.0" load(pathJoin("stack-intel", stack_intel_ver)) @@ -10,8 +10,17 @@ load(pathJoin("stack-intel", stack_intel_ver)) stack_impi_ver=os.getenv("stack_impi_ver") or "2021.5.0" load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver)) +stack_python_ver=os.getenv("stack_python_ver") or "3.10.13" +load(pathJoin("stack-python", stack_python_ver)) + +cmake_ver=os.getenv("cmake_ver") or "3.23.1" +load(pathJoin("cmake", cmake_ver)) + load("ufs_common") +nccmp_ver=os.getenv("nccmp_ver") or "1.9.0.1" +load(pathJoin("nccmp", nccmp_ver)) + setenv("CC", "mpiicc") setenv("CXX", "mpiicpc") setenv("FC", "mpiifort") diff --git a/modulefiles/ufs_wcoss2.intel.lua b/modulefiles/ufs_wcoss2.intel.lua index 47326f4e45..a2445a9026 100644 --- a/modulefiles/ufs_wcoss2.intel.lua +++ b/modulefiles/ufs_wcoss2.intel.lua @@ -29,8 +29,8 @@ local ufs_modules = { {["fms-C"] = "2023.04"}, {["bacio"] = "2.4.1"}, {["crtm"] = "2.4.0"}, - {["g2"] = "3.4.5"}, - {["g2tmpl"] = "1.10.2"}, + {["g2"] = "3.5.1"}, + {["g2tmpl"] = "1.13.0"}, {["ip"] = "3.3.3"}, {["sp"] = "2.3.3"}, {["w3emc"] = "2.9.2"}, diff --git a/tests/auto-jenkins/jobs/bl.py b/tests/auto-jenkins/jobs/bl.py index 7b18e54ac8..026e27cb07 100644 --- a/tests/auto-jenkins/jobs/bl.py +++ b/tests/auto-jenkins/jobs/bl.py @@ -24,9 +24,9 @@ def set_directories(job_obj): rtbldir = '/scratch1/NCEPDEV/stmp4/emc.nemspara/FV3_RT/'\ f'REGRESSION_TEST' elif job_obj.machine == 'jet': - workdir = '/lfs4/HFIP/h-nems/emc.nemspara/autort/pr' - blstore = '/lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/' - rtbldir = '/lfs4/HFIP/h-nems/emc.nemspara/RT_BASELINE/'\ + workdir = '/lfs5/HFIP/hfv3gfs/role.epic/h-nems/autort/pr' + blstore = '/lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs' + rtbldir = '/lfs5/HFIP/hfv3gfs/role.epic/h-nems/RT_BASELINE/'\ f'emc.nemspara/FV3_RT/REGRESSION_TEST' elif job_obj.machine == 'orion': workdir = '/work/noaa/epic-ps/role-epic-ps/autort/tests/auto/pr' diff --git a/tests/auto-jenkins/jobs/rt.py b/tests/auto-jenkins/jobs/rt.py index 6622eae37a..06428b6fd5 100644 --- a/tests/auto-jenkins/jobs/rt.py +++ b/tests/auto-jenkins/jobs/rt.py @@ -26,7 +26,7 @@ def set_directories(job_obj): if job_obj.machine == 'hera': workdir = '/scratch1/NCEPDEV/nems/role.epic/autort/pr' elif job_obj.machine == 'jet': - workdir = '/lfs4/HFIP/hfv3gfs/role.epic/autort/pr' + workdir = '/lfs5/HFIP/hfv3gfs/role.epic/h-nems/autort/pr' elif job_obj.machine == 'orion': workdir = '/work/noaa/epic-ps/role-epic-ps/autort/tests/auto/pr' elif job_obj.machine == 'hercules': diff --git a/tests/auto-jenkins/rt_auto_jenkins.py b/tests/auto-jenkins/rt_auto_jenkins.py index 9c54a7d3a5..3f29bf140a 100755 --- a/tests/auto-jenkins/rt_auto_jenkins.py +++ b/tests/auto-jenkins/rt_auto_jenkins.py @@ -76,7 +76,7 @@ def delete_pr_dirs(each_pr, machine): if machine == 'hera': workdir = '/scratch1/NCEPDEV/nems/role.epic/autort/pr' elif machine == 'jet': - workdir = '/lfs4/HFIP/hfv3gfs/role.epic/autort/pr' + workdir = '/lfs5/HFIP/hfv3gfs/role.epic/h-nems/autort/pr' elif machine == 'orion': workdir = '/work/noaa/epic-ps/role-epic-ps/autort/pr' elif machine == 'hercules': @@ -110,7 +110,7 @@ def delete_rt_dirs(in_dir, machine, workdir): if machine == 'hera': rt_dir ='/scratch1/NCEPDEV/stmp4/role.epic/FV3_RT' elif machine == 'jet': - rt_dir ='/lfs4/HFIP/hfv3gfs/role.epic/RT_BASELINE/'\ + rt_dir ='/lfs5/HFIP/hfv3gfs/role.epic/h-nems/RT_BASELINE/'\ f'emc.nemspara/FV3_RT' elif machine == 'orion': rt_dir = '/work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT' diff --git a/tests/auto-jenkins/start_rt_auto_jenkins.sh b/tests/auto-jenkins/start_rt_auto_jenkins.sh index 7c40126b89..0a65d86466 100755 --- a/tests/auto-jenkins/start_rt_auto_jenkins.sh +++ b/tests/auto-jenkins/start_rt_auto_jenkins.sh @@ -14,11 +14,11 @@ elif [[ $HOSTNAME == Hercules-login-* ]]; then export PATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/bin:$PATH export PYTHONPATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages elif [[ $HOSTNAME == fe* ]]; then - export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH - export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages + export PATH=/contrib/spack-stack/miniconda3/23.11.0/envs/ufs-weather-model/bin:/contrib/spack-stack/miniconda3/23.11.0/bin:${PATH} + export PYTHONPATH=/contrib/spack-stack/miniconda3/23.11.0/envs/ufs-weather-model/lib/python3.8/site-packages:/contrib/spack-stack/miniconda3/23.11.0/lib/python3.8/site-packages elif [[ $HOSTNAME == tfe* ]]; then - export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH - export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages + export PATH=/contrib/spack-stack/miniconda3/23.11.0/envs/ufs-weather-model/bin:/contrib/spack-stack/miniconda3/23.11.0/bin:${PATH} + export PYTHONPATH=/contrib/spack-stack/miniconda3/23.11.0/envs/ufs-weather-model/lib/python3.8/site-packages:/contrib/spack-stack/miniconda3/23.11.0/lib/python3.8/site-packages elif [[ $HOSTNAME == gaea* ]]; then export PATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin:$PATH export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/lib/python3.8/site-packages diff --git a/tests/auto/jobs/bl.py b/tests/auto/jobs/bl.py index 581056ac81..bcf4f9eeda 100644 --- a/tests/auto/jobs/bl.py +++ b/tests/auto/jobs/bl.py @@ -24,9 +24,9 @@ def set_directories(job_obj): rtbldir = '/scratch1/NCEPDEV/stmp4/emc.nemspara/FV3_RT/'\ f'REGRESSION_TEST_{job_obj.compiler.upper()}' elif job_obj.machine == 'jet': - workdir = '/lfs4/HFIP/h-nems/emc.nemspara/autort/pr' - blstore = '/lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/' - rtbldir = '/lfs4/HFIP/h-nems/emc.nemspara/RT_BASELINE/'\ + workdir = '/lfs5/HFIP/hfv3gfs/role.epic/h-nems/autort/pr' + blstore = '/lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs' + rtbldir = '/lfs5/HFIP/hfv3gfs/role.epic/h-nems/RT_BASELINE/'\ f'emc.nemspara/FV3_RT/REGRESSION_TEST_{job_obj.compiler.upper()}' elif job_obj.machine == 'orion': workdir = '/work/noaa/nems/emc.nemspara/autort/pr' diff --git a/tests/auto/jobs/rt.py b/tests/auto/jobs/rt.py index 706c5058c7..59b787f5f0 100644 --- a/tests/auto/jobs/rt.py +++ b/tests/auto/jobs/rt.py @@ -17,7 +17,7 @@ def set_directories(job_obj): if job_obj.machine == 'hera': workdir = '/scratch1/NCEPDEV/nems/emc.nemspara/autort/pr' elif job_obj.machine == 'jet': - workdir = '/lfs4/HFIP/h-nems/emc.nemspara/autort/pr' + workdir = '/lfs5/HFIP/hfv3gfs/role.epic/h-nems/autort/pr' elif job_obj.machine == 'orion': workdir = '/work/noaa/nems/emc.nemspara/autort/pr' elif job_obj.machine == 'derecho': diff --git a/tests/auto/start_rt_auto.sh b/tests/auto/start_rt_auto.sh index d0817f7356..18b4362496 100644 --- a/tests/auto/start_rt_auto.sh +++ b/tests/auto/start_rt_auto.sh @@ -11,8 +11,8 @@ elif [[ $HOSTNAME == Orion-login-* ]]; then export PATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/bin:$PATH export PYTHONPATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages elif [[ $HOSTNAME == fe* ]]; then - export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH - export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages + export PATH=/contrib/spack-stack/miniconda3/23.11.0/envs/ufs-weather-model/bin:/contrib/spack-stack/miniconda3/23.11.0/bin:${PATH} + export PYTHONPATH=/contrib/spack-stack/miniconda3/23.11.0/envs/ufs-weather-model/lib/python3.8/site-packages:/contrib/spack-stack/miniconda3/23.11.0/lib/python3.8/site-packages elif [[ $HOSTNAME == gaea* ]]; then export PATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin:$PATH export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/lib/python3.8/site-packages diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 2fc1026343..c4b77b6a55 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240730 +export BL_DATE=20240904 diff --git a/tests/ci/Jenkinsfile.combined b/tests/ci/Jenkinsfile.combined index e0b86d6bea..2f62ecfe24 100644 --- a/tests/ci/Jenkinsfile.combined +++ b/tests/ci/Jenkinsfile.combined @@ -312,14 +312,6 @@ def generateStage(nodeLabel) { echo "Testing concluded...removing labels for $machine from $GIT_URL" git remote -v | grep -w sshorigin > /dev/null 2>&1 && git remote remove sshorigin > /dev/null 2>&1 git remote add sshorigin $SSH_ORIGIN > /dev/null 2>&1 - - if [[ -f $WORKSPACE/tests/logs/RT-run-$machine.log ]] ; then - git add $WORKSPACE/tests/logs/RT-run-$machine.log - fi - git commit --allow-empty -m "[AutoRT] $machine Job Failed!\n\n\n on-behalf-of @ufs-community " - - git pull sshorigin $FORK_BRANCH - git push sshorigin HEAD:$FORK_BRANCH tar --create --gzip --verbose --dereference --file "${machine_name_logs}.tgz" ${WORKSPACE}/tests/logs/*.log @@ -351,12 +343,18 @@ pipeline { GIT_URL = 'https://github.com/ufs-community/ufs-weather-model.git' } stages { - stage('Run SonarQube Testing') { + stage('Launch SonarQube') { steps { script { + echo "BRANCH_NAME=${env.CHANGE_BRANCH}" + echo "FORK_NAME=${env.CHANGE_FORK}" + echo "CHANGE_URL=${env.CHANGE_URL}" + echo "CHANGE_ID=${env.CHANGE_ID}" build job: '/ufs-weather-model/ufs-wm-sonarqube', parameters: [ string(name: 'BRANCH_NAME', value: env.CHANGE_BRANCH ?: 'develop'), - string(name: 'FORK_NAME', value: env.CHANGE_FORK ?: '') + string(name: 'FORK_NAME', value: env.CHANGE_FORK ?: ''), + string(name: 'CHANGE_URL', value: env.CHANGE_URL ?: ''), + string(name: 'CHANGE_ID', value: env.CHANGE_ID ?: '') ], wait: false } } diff --git a/tests/compile.sh b/tests/compile.sh index 458d985a88..8ab0f60b82 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -12,14 +12,8 @@ function trim { SECONDS=0 -uname_s=$(uname -s) -if [[ ${uname_s} == Darwin ]]; then - greadlnk=$(greadlink -f -n "${BASH_SOURCE[0]}" ) - MYDIR=$(cd "$(dirname "${greadlnk}" )" && pwd -P) -else - readlnk=$(readlink -f -n "${BASH_SOURCE[0]}" ) - MYDIR=$(cd "$(dirname "${readlnk}" )" && pwd -P) -fi +SCRIPT_REALPATH=$(realpath "${BASH_SOURCE[0]}") +MYDIR=$(dirname "${SCRIPT_REALPATH}") readonly MYDIR # ---------------------------------------------------------------------- diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 78a89ec8e6..18bd2e1e11 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -10,7 +10,7 @@ THRD=1 export INPES_atmaero=4 - export JNPES_atmaero=8 + export JNPES_atmaero=8 export WPG_atmaero=6 export THRD_cpl_atmw=1 @@ -121,12 +121,12 @@ if [[ ${MACHINE_ID} = wcoss2 || ${MACHINE_ID} = acorn ]]; then export TPN=128 - export INPES_dflt=3 + export INPES_dflt=3 export JNPES_dflt=8 export INPES_thrd=3 export JNPES_thrd=4 export INPES_c384=8 - export JNPES_c384=6 + export JNPES_c384=6 export THRD_c384=2 export INPES_c768=8 export JNPES_c768=16 @@ -144,7 +144,7 @@ elif [[ ${MACHINE_ID} = orion ]]; then export INPES_dflt=3 export JNPES_dflt=8 - export INPES_thrd=3 + export INPES_thrd=3 export JNPES_thrd=4 export INPES_c384=8 export JNPES_c384=6 @@ -168,7 +168,7 @@ elif [[ ${MACHINE_ID} = hercules ]]; then export INPES_thrd=3 export JNPES_thrd=4 export INPES_c384=8 - export JNPES_c384=6 + export JNPES_c384=6 export THRD_c384=2 export INPES_c768=8 export JNPES_c768=16 @@ -187,10 +187,10 @@ elif [[ ${MACHINE_ID} = hera ]]; then export INPES_dflt=3 export JNPES_dflt=8 - export INPES_thrd=3 + export INPES_thrd=3 export JNPES_thrd=4 export INPES_c384=6 - export JNPES_c384=8 + export JNPES_c384=8 export THRD_c384=2 export INPES_c768=8 export JNPES_c768=16 @@ -274,7 +274,7 @@ elif [[ ${MACHINE_ID} = s4 ]]; then export TPN=32 - export INPES_dflt=3 + export INPES_dflt=3 export JNPES_dflt=8 export INPES_thrd=3 export JNPES_thrd=4 @@ -325,10 +325,10 @@ elif [[ ${MACHINE_ID} = derecho ]]; then export TPN=128 export INPES_dflt=3 export JNPES_dflt=8 - export INPES_thrd=3 + export INPES_thrd=3 export JNPES_thrd=4 export INPES_c384=8 - export JNPES_c384=6 + export JNPES_c384=6 export THRD_c384=2 export INPES_c768=8 export JNPES_c768=16 @@ -493,6 +493,10 @@ export UFS_CONFIGURE=ufs.configure.atm_esmf.IN export MODEL_CONFIGURE=model_configure.IN export atm_model=fv3 +export POST_ITAG=post_itag_gfs +export POSTXCONFIG=postxconfig-NT-gfs.txt +export POSTXCONFIG_FH00=postxconfig-NT-gfs_FH00.txt + export FV3=true export S2S=false export HAFS=false @@ -555,6 +559,7 @@ export MODEL_INITIALIZATION=false export WARM_START=.false. export READ_INCREMENT=.false. export RES_LATLON_DYNAMICS="''" +export INCREMENT_FILE_ON_NATIVE_GRID=.false. export NGGPS_IC=.true. export EXTERNAL_IC=.true. export MAKE_NH=.true. @@ -916,6 +921,8 @@ export_cice6() { export CICE_USE_RESTART_TIME=.false. export CICE_RESTART_DIR=./RESTART/ export CICE_RESTART_FILE=iced + # CICE6 warmstarts + export OCNICE_WARMSTART=.false. export CICE_RESTART_FORMAT='pnetcdf2' export CICE_RESTART_IOTASKS=-99 @@ -1004,6 +1011,11 @@ export_mom6() { export PERT_EPBL=False export OCN_SPPT=-999. export EPBL=-999. + # MOM6 warmstarts + export OCNICE_WARMSTART=.false. + export MOM6_INIT_FROM_Z=True + export MOM6_INIT_UV="zero" + export MOM6_WARMSTART_FILE="none" } # Defaults for the WW3 global model @@ -1321,10 +1333,10 @@ export_datm_cdeps () export INPUT_NML=input.mom6.nml.IN export DIAG_TABLE=diag_table_template export DATM_SRC=CFSR - export FILENAME_BASE=cfsr. - export MESH_ATM=${FILENAME_BASE//.}_mesh.nc - export atm_datamode=${DATM_SRC} - export stream_files=INPUT/${FILENAME_BASE}201110.nc + export FILEBASE_DATM=cfsr + export MESH_ATM=${FILEBASE_DATM}_mesh.nc + export atm_datamode=GEFS + export stream_files=INPUT/${FILEBASE_DATM}.201110.nc export EXPORT_ALL=.false. export STREAM_OFFSET=0 diff --git a/tests/error-test.conf b/tests/error-test.conf index 2382c59a9e..3e931e67dc 100644 --- a/tests/error-test.conf +++ b/tests/error-test.conf @@ -11,6 +11,9 @@ COMPILE | atm_dyn32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_fl # This should succeed RUN | control_c48.v2.sfc | | baseline | +# This should fail due to wall clock timeout +RUN | control_c48.v2.sfc_timeout | | baseline | + # These tests should always fail, and prevent the workflow from completing. RUN | fail_to_copy | | baseline | RUN | fail_to_run | | baseline | diff --git a/tests/fv3_conf/control_run.IN b/tests/fv3_conf/control_run.IN index 32eb089d7d..22ae9d58ee 100644 --- a/tests/fv3_conf/control_run.IN +++ b/tests/fv3_conf/control_run.IN @@ -122,9 +122,9 @@ fi #inline post if [[ $POSTAPP = 'global' ]]; then - cp ${PATHRT}/parm/post_itag_gfs itag - cp ${PATHRT}/parm/postxconfig-NT-gfs.txt postxconfig-NT.txt - cp ${PATHRT}/parm/postxconfig-NT-gfs_FH00.txt postxconfig-NT_FH00.txt + cp ${PATHRT}/parm/@[POST_ITAG] itag + cp ${PATHRT}/parm/@[POSTXCONFIG] postxconfig-NT.txt + cp ${PATHRT}/parm/@[POSTXCONFIG_FH00] postxconfig-NT_FH00.txt cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new fi diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index 816516d7a0..fda28f6d11 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -33,7 +33,7 @@ else FV3_IC=@[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127_mx${OCNRES} fi MOM_IC=@[INPUTDATA_ROOT]/MOM6_IC - ICE_IC=@[INPUTDATA_ROOT]/CICE_IC/${OCNRES} + ICE_IC=@[INPUTDATA_ROOT]/CICE_IC fi fi @@ -90,8 +90,13 @@ if [ $WARM_START = .false. ]; then cp ${MOM_IC}/MOM.res.nc ./INPUT cp ${ICE_IC}/cice_model_@[ICERES].cpc.res_* ./cice_model.res.nc else - cp ${MOM_IC}/MOM6_IC_TS_${SYEAR}${SMONTH}${SDAY}${SHOUR}.nc ./INPUT/MOM6_IC_TS.nc - cp ${ICE_IC}/cice_model_@[ICERES].cpc.res_${SYEAR}${SMONTH}${SDAY}.nc ./cice_model.res.nc + if [[ $OCNICE_WARMSTART == .true. ]]; then + cp ${MOM_IC}/mom6.mx@[OCNRES].${SYEAR}${SMONTH}${SDAY}${SHOUR}.warmstart.nc ./INPUT/mom6.warmstart.nc + cp ${ICE_IC}/cice.mx@[OCNRES].${SYEAR}${SMONTH}${SDAY}${SHOUR}.warmstart.nc ./cice.warmstart.nc + else + cp ${MOM_IC}/MOM6_IC_TS_${SYEAR}${SMONTH}${SDAY}${SHOUR}.nc ./INPUT/MOM6_IC_TS.nc + cp ${ICE_IC}/${OCNRES}/cice_model_@[ICERES].cpc.res_${SYEAR}${SMONTH}${SDAY}.nc ./cice_model.res.nc + fi fi fi else diff --git a/tests/fv3_conf/cpld_docn_dice.IN b/tests/fv3_conf/cpld_docn_dice.IN index b2ad8bc18c..771b04dadb 100644 --- a/tests/fv3_conf/cpld_docn_dice.IN +++ b/tests/fv3_conf/cpld_docn_dice.IN @@ -6,10 +6,8 @@ if [[ ${OPNREQ_TEST} == true ]]; then fi #CDEPS data files -#cp @[INPUTDATA_ROOT]/DOCN_DICE_cplhist/ufs.cpld.cpl*.nc INPUT -module load nco -ncrcat ../${DEP_RUN}${SUFFIX}/ufs.cpld.cpl.hi.ice*nc ./INPUT/ufs.cpld.cpl.hi.ice.nc -ncrcat ../${DEP_RUN}${SUFFIX}/ufs.cpld.cpl.hi.ocn*nc ./INPUT/ufs.cpld.cpl.hi.ocn.nc +cp ../${DEP_RUN}${SUFFIX}/*ice.1h.aux*nc ./INPUT/ufs.cpld.cpl.hi.ice.nc +cp ../${DEP_RUN}${SUFFIX}/*ocn.1h.aux*nc ./INPUT/ufs.cpld.cpl.hi.ocn.nc #CDEPS fix files - same for ocn/ice cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc INPUT diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 5fc896fd29..66336dba8c 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Fri Aug 9 04:00:06 UTC 2024 +Thu Sep 5 22:25:10 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3660377/bit_base_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_489716/bit_base_bit_base Checking test bit_base results .... Moving baseline bit_base files .... Moving sfcf000.nc .........OK @@ -51,14 +51,14 @@ Moving baseline bit_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 279.679964 - 0: The maximum resident set size (KB) = 1460412 + 0: The total amount of wall time = 288.390708 + 0: The maximum resident set size (KB) = 1444228 Test bit_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3660377/dbg_base_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_489716/dbg_base_dbg_base Checking test dbg_base results .... Moving baseline dbg_base files .... Moving sfcf000.nc .........OK @@ -106,14 +106,14 @@ Moving baseline dbg_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 986.199169 - 0: The maximum resident set size (KB) = 1426460 + 0: The total amount of wall time = 991.170195 + 0: The maximum resident set size (KB) = 1442092 Test dbg_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3660377/dcp_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_489716/dcp_dcp Checking test dcp results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -160,14 +160,14 @@ Checking test dcp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 250.630229 - 0: The maximum resident set size (KB) = 1408568 + 0: The total amount of wall time = 259.478625 + 0: The maximum resident set size (KB) = 1412816 Test dcp PASS -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3660377/mpi_mpi +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_489716/mpi_mpi Checking test mpi results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -214,14 +214,14 @@ Checking test mpi results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 248.429764 - 0: The maximum resident set size (KB) = 1428500 + 0: The total amount of wall time = 269.710451 + 0: The maximum resident set size (KB) = 1422344 Test mpi PASS -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3660377/rst_rst +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_489716/rst_rst Checking test rst results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -268,14 +268,14 @@ Checking test rst results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 255.808429 - 0: The maximum resident set size (KB) = 1426564 + 0: The total amount of wall time = 260.906817 + 0: The maximum resident set size (KB) = 1412512 Test rst PASS -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3660377/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_489716/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf000.nc .........OK @@ -323,14 +323,14 @@ Moving baseline std_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 248.579185 - 0: The maximum resident set size (KB) = 1433372 + 0: The total amount of wall time = 259.986892 + 0: The maximum resident set size (KB) = 1423876 Test std_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3660377/thr_thr +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_489716/thr_thr Checking test thr results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -377,11 +377,11 @@ Checking test thr results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 253.035278 - 0: The maximum resident set size (KB) = 1426628 + 0: The total amount of wall time = 263.854937 + 0: The maximum resident set size (KB) = 1422848 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Aug 9 05:05:03 UTC 2024 -Elapsed time: 01h:04m:57s. Have a nice day! +Thu Sep 5 23:39:10 UTC 2024 +Elapsed time: 01h:14m:01s. Have a nice day! diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log index fbada5b633..98bba839bf 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,79 +1,9 @@ -Fri Aug 9 02:56:32 UTC 2024 +Thu Sep 5 16:38:28 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2767517/dbg_base_dbg_base -Checking test dbg_base results .... -Moving baseline dbg_base files .... - Moving sfcf021.tile1.nc .........OK - Moving sfcf021.tile2.nc .........OK - Moving sfcf021.tile3.nc .........OK - Moving sfcf021.tile4.nc .........OK - Moving sfcf021.tile5.nc .........OK - Moving sfcf021.tile6.nc .........OK - Moving atmf021.tile1.nc .........OK - Moving atmf021.tile2.nc .........OK - Moving atmf021.tile3.nc .........OK - Moving atmf021.tile4.nc .........OK - Moving atmf021.tile5.nc .........OK - Moving atmf021.tile6.nc .........OK - Moving sfcf024.tile1.nc .........OK - Moving sfcf024.tile2.nc .........OK - Moving sfcf024.tile3.nc .........OK - Moving sfcf024.tile4.nc .........OK - Moving sfcf024.tile5.nc .........OK - Moving sfcf024.tile6.nc .........OK - Moving atmf024.tile1.nc .........OK - Moving atmf024.tile2.nc .........OK - Moving atmf024.tile3.nc .........OK - Moving atmf024.tile4.nc .........OK - Moving atmf024.tile5.nc .........OK - Moving atmf024.tile6.nc .........OK - Moving RESTART/20210323.060000.coupler.res .........OK - Moving RESTART/20210323.060000.fv_core.res.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Moving RESTART/20210323.060000.MOM.res.nc .........OK - Moving RESTART/iced.2021-03-23-21600.nc .........OK - Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 1360.287918 - 0: The maximum resident set size (KB) = 1522784 - -Test dbg_base PASS - - baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2767517/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_189371/rst_rst Checking test rst results .... Comparing sfcf021.tile1.nc .....USING NCCMP......OK Comparing sfcf021.tile2.nc .....USING NCCMP......OK @@ -135,14 +65,14 @@ Checking test rst results .... Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK - 0: The total amount of wall time = 431.635030 - 0: The maximum resident set size (KB) = 1531952 + 0: The total amount of wall time = 411.035636 + 0: The maximum resident set size (KB) = 1532184 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2767517/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_189371/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf021.tile1.nc .........OK @@ -205,11 +135,89 @@ Moving baseline std_base files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 432.002387 - 0: The maximum resident set size (KB) = 1541276 + 0: The total amount of wall time = 403.644311 + 0: The maximum resident set size (KB) = 1531864 Test std_base PASS +FAILED TESTS: +Test dbg_base failed in run_test failed +OPERATION REQUIREMENT TEST FAILED +Thu Sep 5 19:21:40 UTC 2024 +Elapsed time: 02h:43m:12s. Have a nice day! +Fri Sep 6 00:11:18 UTC 2024 +Start Operation Requirement Test + + +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3212875/dbg_base_dbg_base +Checking test dbg_base results .... +Moving baseline dbg_base files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 1373.432258 + 0: The maximum resident set size (KB) = 1537784 + +Test dbg_base PASS + OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Aug 9 04:00:06 UTC 2024 -Elapsed time: 01h:03m:35s. Have a nice day! +Fri Sep 6 00:39:24 UTC 2024 +Elapsed time: 00h:28m:07s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index b99fa78e5c..d20f6b1591 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Fri Aug 9 00:27:51 UTC 2024 +Thu Sep 5 13:55:45 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2714443/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2982289/bit_base_bit_base Checking test bit_base results .... Moving baseline bit_base files .... Moving dynf000.nc .........OK @@ -15,14 +15,14 @@ Moving baseline bit_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 1379.789847 - 0: The maximum resident set size (KB) = 770252 + 0: The total amount of wall time = 1390.806694 + 0: The maximum resident set size (KB) = 761164 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2714443/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2982289/dcp_dcp Checking test dcp results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -33,14 +33,14 @@ Checking test dcp results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 2222.469710 - 0: The maximum resident set size (KB) = 742740 + 0: The total amount of wall time = 2552.962684 + 0: The maximum resident set size (KB) = 734772 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2714443/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2982289/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving dynf000.nc .........OK @@ -52,14 +52,14 @@ Moving baseline std_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 2152.921801 - 0: The maximum resident set size (KB) = 742124 + 0: The total amount of wall time = 2288.297888 + 0: The maximum resident set size (KB) = 746724 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2714443/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2982289/thr_thr Checking test thr results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -70,11 +70,11 @@ Checking test thr results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 2261.335740 - 0: The maximum resident set size (KB) = 720504 + 0: The total amount of wall time = 2342.966961 + 0: The maximum resident set size (KB) = 721088 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Aug 9 02:56:30 UTC 2024 -Elapsed time: 02h:28m:41s. Have a nice day! +Thu Sep 5 16:38:28 UTC 2024 +Elapsed time: 02h:42m:43s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index cf536a8d6c..03da0ffd37 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,31 +1,31 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -1d72e10c471068cdf993bc535757009c7d8230d0 +a78129ced4e805131daeb5617e71ca20902410ca Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) + ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) + 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) + e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -35,274 +35,269 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3669415 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240904 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2746491 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:23, 11:02] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [40:52, 02:10](3214 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:29, 16:07] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [35:47, 02:46](1922 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [09:50, 02:31](1965 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:49, 03:11](1071 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [35:48, 02:38](1901 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:29, 16:15] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [35:47, 00:52](1922 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:17, 04:50] ( 1526 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [46:59, 02:37](1965 MB) - -PASS -- COMPILE 's2swa_intel' [11:23, 10:52] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [40:52, 01:34](3243 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [40:52, 02:25](3238 MB) -PASS -- TEST 'cpld_restart_p8_intel' [25:50, 02:07](3175 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [40:52, 01:10](3266 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [28:01, 02:07](3194 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [40:52, 01:55](3479 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [40:52, 01:51](3235 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [40:53, 01:17](3185 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [40:52, 02:22](3244 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [40:52, 02:03](3223 MB) - -PASS -- COMPILE 's2sw_intel' [11:24, 10:35] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [40:51, 01:54](1932 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [40:51, 02:14](2004 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:23, 09:48] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [41:52, 02:19](1993 MB) - -PASS -- COMPILE 's2s_intel' [10:23, 09:57] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [41:51, 00:56](2944 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [41:51, 01:28](2952 MB) -PASS -- TEST 'cpld_restart_c48_intel' [37:24, 01:27](2363 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:30, 15:39] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [35:45, 02:28](3240 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:30, 15:50] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [35:45, 01:34](1939 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:47, 01:50](1122 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [08:30, 01:35](1905 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:17, 04:30] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:41, 01:34](1983 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:24, 10:14] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [28:55, 00:52](669 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [25:37, 01:04](1572 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [25:37, 00:30](1579 MB) -PASS -- TEST 'control_latlon_intel' [25:32, 00:44](1575 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [25:22, 01:10](1575 MB) -PASS -- TEST 'control_c48_intel' [24:57, 01:02](1617 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [23:59, 01:05](734 MB) -PASS -- TEST 'control_c192_intel' [22:34, 00:51](1692 MB) -PASS -- TEST 'control_c384_intel' [22:34, 01:56](2002 MB) -PASS -- TEST 'control_c384gdas_intel' [21:56, 03:08](1198 MB) -PASS -- TEST 'control_stochy_intel' [19:36, 01:07](628 MB) -PASS -- TEST 'control_stochy_restart_intel' [07:57, 00:44](433 MB) -PASS -- TEST 'control_lndp_intel' [18:32, 01:03](630 MB) -PASS -- TEST 'control_iovr4_intel' [15:37, 00:38](624 MB) -PASS -- TEST 'control_iovr5_intel' [15:43, 00:59](623 MB) -PASS -- TEST 'control_p8_intel' [15:39, 02:32](1869 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [15:36, 02:25](1871 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [13:52, 02:00](1870 MB) -PASS -- TEST 'control_restart_p8_intel' [03:09, 02:20](1021 MB) -PASS -- TEST 'control_noqr_p8_intel' [13:33, 02:03](1860 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:50, 02:04](1002 MB) -PASS -- TEST 'control_decomp_p8_intel' [13:32, 02:24](1856 MB) -PASS -- TEST 'control_2threads_p8_intel' [13:28, 01:59](1957 MB) -PASS -- TEST 'control_p8_lndp_intel' [12:41, 00:27](1868 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [11:24, 02:20](1924 MB) -PASS -- TEST 'control_p8_mynn_intel' [10:29, 02:36](1882 MB) -PASS -- TEST 'merra2_thompson_intel' [10:27, 03:01](1871 MB) -PASS -- TEST 'regional_control_intel' [10:10, 00:16](870 MB) -PASS -- TEST 'regional_restart_intel' [02:17, 00:35](861 MB) -PASS -- TEST 'regional_decomp_intel' [08:26, 00:53](872 MB) -PASS -- TEST 'regional_2threads_intel' [07:56, 00:50](1005 MB) -PASS -- TEST 'regional_noquilt_intel' [07:12, 01:11](1196 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:05, 00:33](872 MB) -PASS -- TEST 'regional_wofs_intel' [07:04, 01:03](1599 MB) - -PASS -- COMPILE 'ifi_intel' [09:22, 08:32] ( 1 warnings ) -PASS -- TEST 'regional_ifi_control_intel' [32:29, 00:20](872 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [32:29, 00:12](875 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [32:30, 00:38](1011 MB) - -PASS -- COMPILE 'rrfs_intel' [10:23, 09:36] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [31:17, 01:14](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [31:18, 01:11](1189 MB) -PASS -- TEST 'rap_decomp_intel' [31:17, 01:47](1010 MB) -PASS -- TEST 'rap_2threads_intel' [31:17, 02:37](1094 MB) -PASS -- TEST 'rap_restart_intel' [06:59, 02:34](888 MB) -PASS -- TEST 'rap_sfcdiff_intel' [31:17, 02:42](1009 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [31:17, 01:25](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:21, 02:16](889 MB) -PASS -- TEST 'hrrr_control_intel' [31:17, 02:24](1001 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [31:17, 02:38](1004 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [31:18, 02:47](1086 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:03, 00:25](841 MB) -PASS -- TEST 'rrfs_v1beta_intel' [31:17, 02:43](1004 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [03:37, 00:37](1969 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [03:28, 00:31](1957 MB) - -PASS -- COMPILE 'csawmg_intel' [09:22, 08:56] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [31:29, 00:52](967 MB) -PASS -- TEST 'control_ras_intel' [31:29, 00:53](659 MB) - -PASS -- COMPILE 'wam_intel' [09:22, 08:57] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [31:30, 00:19](1666 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:27, 12:45] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:22, 02:11](1866 MB) -PASS -- TEST 'regional_control_faster_intel' [03:08, 00:49](866 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [33:47, 05:42] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [01:59, 00:34](1614 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [01:37, 01:24](1618 MB) -PASS -- TEST 'control_stochy_debug_intel' [01:28, 01:02](815 MB) -PASS -- TEST 'control_lndp_debug_intel' [01:28, 00:18](812 MB) -PASS -- TEST 'control_csawmg_debug_intel' [01:06, 00:30](1124 MB) -PASS -- TEST 'control_ras_debug_intel' [00:43, 01:14](828 MB) -PASS -- TEST 'control_diag_debug_intel' [00:26, 01:02](1680 MB) -PASS -- TEST 'control_debug_p8_intel' [00:13, 01:00](1910 MB) -PASS -- TEST 'regional_debug_intel' [00:03, 00:50](933 MB) -PASS -- TEST 'rap_control_debug_intel' [59:57, 00:34](1197 MB) -PASS -- TEST 'hrrr_control_debug_intel' [59:34, 00:43](1194 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [57:50, 01:00](1197 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [57:58, 01:07](1199 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [57:21, 00:17](1195 MB) -PASS -- TEST 'rap_diag_debug_intel' [57:06, 01:09](1278 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [57:00, 00:54](1196 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [56:59, 01:09](1201 MB) -PASS -- TEST 'rap_lndp_debug_intel' [55:58, 01:10](1198 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [55:53, 00:22](1197 MB) -PASS -- TEST 'rap_noah_debug_intel' [55:35, 00:38](1193 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [55:17, 00:37](1193 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [55:12, 00:23](1195 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [54:20, 01:00](1190 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [54:29, 00:50](1199 MB) -PASS -- TEST 'rap_flake_debug_intel' [54:14, 00:53](1203 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [53:59, 03:04](1199 MB) - -PASS -- COMPILE 'wam_debug_intel' [50:05, 03:49] ( 840 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [45:41, 00:55](1706 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [56:14, 09:00] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [39:32, 00:53](1055 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [39:31, 02:06](888 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [39:31, 04:15](888 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [39:31, 02:15](951 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [39:32, 02:44](940 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [39:31, 03:44](883 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [19:41, 02:41](796 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:22, 00:15](769 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [58:16, 11:55] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [37:29, 00:40](1094 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:40, 00:39](1078 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:39, 01:14](978 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [53:11, 09:04] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [39:19, 01:29](909 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [47:01, 03:53] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [44:28, 00:46](1074 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [44:28, 00:55](1067 MB) -PASS -- TEST 'conus13km_debug_intel' [44:28, 00:25](1168 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [44:28, 01:01](855 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [44:29, 00:57](1150 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [44:28, 00:39](1251 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [47:03, 03:47] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [44:26, 00:39](1093 MB) - -PASS -- COMPILE 'hafsw_intel' [54:10, 10:23] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [37:10, 01:30](706 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [37:10, 00:27](1055 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [37:08, 01:24](763 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [37:08, 01:48](798 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [37:09, 01:53](955 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [37:08, 00:56](483 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [37:09, 01:41](502 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [37:09, 01:19](386 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [37:12, 03:01](458 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [37:08, 01:14](514 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [37:08, 01:27](515 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [37:09, 00:48](578 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [37:08, 01:20](415 MB) -PASS -- TEST 'gnv1_nested_intel' [37:07, 03:37](1712 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [47:05, 04:15] ( 1468 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [43:25, 00:44](685 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [53:11, 13:45] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [33:19, 01:34](625 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [33:19, 01:47](798 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [25:40, 10:13] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [36:20, 01:40](796 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:23, 09:49] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [30:46, 01:53](758 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [29:15, 01:57](743 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [29:09, 00:44](896 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:23, 09:17] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [27:02, 00:50](769 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [19:35, 00:34](756 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [25:18, 00:45](652 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [24:52, 00:55](647 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [24:02, 00:52](649 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [22:15, 00:42](768 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [22:07, 01:02](756 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [22:02, 00:50](648 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [20:33, 01:52](693 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [18:53, 01:13](680 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [18:07, 00:28](767 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [17:30, 00:25](2037 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [17:25, 00:58](2034 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:24, 09:22] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [16:46, 00:47](768 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [09:22, 01:05] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [16:39, 01:14](302 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [15:52, 00:38](451 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [11:19, 01:10](450 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:29, 09:43] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [14:43, 01:02](1930 MB) - -PASS -- COMPILE 'atml_intel' [16:30, 10:38] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:44, 02:25](1895 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [14:34, 02:16](1895 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:05, 01:14](1047 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:23, 04:33] ( 883 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [13:39, 02:08](1934 MB) - -PASS -- COMPILE 'atmw_intel' [15:29, 09:26] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [13:07, 02:40](1905 MB) - -PASS -- COMPILE 'atmaero_intel' [39:55, 09:21] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [56:22, 01:51](3130 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [56:22, 02:01](3015 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [56:22, 02:10](3025 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [33:47, 03:52] ( 885 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [01:30, 01:45](4543 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:25, 10:23] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [57:34, 03:31](3309 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:31, 16:19] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [51:28, 04:26](2090 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [29:17, 04:21](2111 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [29:15, 04:13](1207 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [51:29, 02:51](2169 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:31, 16:19] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [52:27, 02:01](2089 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:52] ( 1524 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [02:40, 03:50](2170 MB) + +PASS -- COMPILE 's2swa_intel' [12:26, 10:28] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [57:33, 02:33](3322 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [57:33, 03:28](3339 MB) +PASS -- TEST 'cpld_restart_p8_intel' [43:20, 02:15](3258 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [57:33, 02:29](3364 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [43:20, 03:00](3277 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [57:33, 02:39](3622 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [57:33, 02:22](3334 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [57:34, 02:38](3452 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [57:33, 03:07](3323 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [57:33, 03:09](3272 MB) + +PASS -- COMPILE 's2sw_intel' [11:26, 09:57] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [58:33, 02:52](2004 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [58:33, 03:17](2029 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:26, 09:32] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [58:33, 03:10](2039 MB) + +PASS -- COMPILE 's2s_intel' [12:25, 10:32] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [57:33, 01:59](2883 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [57:33, 02:28](2898 MB) +PASS -- TEST 'cpld_restart_c48_intel' [51:54, 02:48](2320 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:30, 14:36] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [53:29, 03:18](3341 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:31, 15:28] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [52:27, 02:19](2107 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [31:42, 02:20](1262 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [31:30, 02:32](2179 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:33] ( 1559 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [55:20, 02:18](2199 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:18] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [47:08, 01:22](651 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [47:08, 01:51](1547 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [47:08, 01:28](1550 MB) +PASS -- TEST 'control_latlon_intel' [45:26, 01:45](1554 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [45:18, 02:31](1551 MB) +PASS -- TEST 'control_c48_intel' [42:11, 01:54](1574 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [40:27, 01:46](715 MB) +PASS -- TEST 'control_c192_intel' [38:51, 02:28](1785 MB) +PASS -- TEST 'control_c384_intel' [37:34, 03:11](3082 MB) +PASS -- TEST 'control_c384gdas_intel' [35:29, 03:39](2304 MB) +PASS -- TEST 'control_stochy_intel' [33:37, 01:24](603 MB) +PASS -- TEST 'control_stochy_restart_intel' [24:00, 01:35](412 MB) +PASS -- TEST 'control_lndp_intel' [33:29, 01:33](603 MB) +PASS -- TEST 'control_iovr4_intel' [33:18, 02:01](599 MB) +PASS -- TEST 'control_iovr5_intel' [32:34, 01:34](606 MB) +PASS -- TEST 'control_p8_intel' [32:15, 02:47](1826 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [31:28, 02:32](1846 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [31:26, 03:45](1841 MB) +PASS -- TEST 'control_restart_p8_intel' [19:11, 02:51](973 MB) +PASS -- TEST 'control_noqr_p8_intel' [30:02, 03:33](1836 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [16:34, 03:02](1004 MB) +PASS -- TEST 'control_decomp_p8_intel' [29:55, 02:47](1834 MB) +PASS -- TEST 'control_2threads_p8_intel' [29:51, 02:59](1936 MB) +PASS -- TEST 'control_p8_lndp_intel' [29:33, 02:19](1826 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [29:30, 03:00](1898 MB) +PASS -- TEST 'control_p8_mynn_intel' [28:58, 02:46](1829 MB) +PASS -- TEST 'merra2_thompson_intel' [28:24, 04:15](1847 MB) +PASS -- TEST 'regional_control_intel' [27:58, 01:14](865 MB) +PASS -- TEST 'regional_restart_intel' [20:05, 01:23](861 MB) +PASS -- TEST 'regional_decomp_intel' [27:01, 02:13](864 MB) +PASS -- TEST 'regional_2threads_intel' [25:25, 01:27](1178 MB) +PASS -- TEST 'regional_noquilt_intel' [23:53, 01:35](1190 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [23:50, 01:46](860 MB) +PASS -- TEST 'regional_wofs_intel' [23:14, 01:51](1597 MB) + +PASS -- COMPILE 'rrfs_intel' [10:24, 08:26] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [48:09, 03:58](988 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [48:10, 02:03](1660 MB) +PASS -- TEST 'rap_decomp_intel' [48:09, 04:06](991 MB) +PASS -- TEST 'rap_2threads_intel' [48:09, 02:43](1091 MB) +PASS -- TEST 'rap_restart_intel' [21:29, 03:44](832 MB) +PASS -- TEST 'rap_sfcdiff_intel' [48:09, 03:35](990 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [48:09, 03:18](986 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [21:38, 03:29](833 MB) +PASS -- TEST 'hrrr_control_intel' [48:09, 03:21](985 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [48:09, 03:23](984 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [48:10, 04:05](1215 MB) +PASS -- TEST 'hrrr_control_restart_intel' [20:54, 02:16](783 MB) +PASS -- TEST 'rrfs_v1beta_intel' [48:09, 03:53](981 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [48:09, 01:49](1944 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [48:09, 01:42](1934 MB) + +PASS -- COMPILE 'csawmg_intel' [10:24, 08:14] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [47:10, 01:56](923 MB) +PASS -- TEST 'control_ras_intel' [47:10, 01:44](639 MB) + +PASS -- COMPILE 'wam_intel' [10:24, 08:19] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [47:09, 01:52](1636 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:24, 08:27] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [19:15, 03:09](1833 MB) +PASS -- TEST 'regional_control_faster_intel' [19:17, 01:54](847 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:22, 07:03] ( 883 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [19:05, 01:20](1587 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [18:55, 02:30](1591 MB) +PASS -- TEST 'control_stochy_debug_intel' [18:26, 01:52](796 MB) +PASS -- TEST 'control_lndp_debug_intel' [16:53, 01:50](796 MB) +PASS -- TEST 'control_csawmg_debug_intel' [16:36, 01:42](1099 MB) +PASS -- TEST 'control_ras_debug_intel' [16:28, 01:18](807 MB) +PASS -- TEST 'control_diag_debug_intel' [16:09, 02:19](1653 MB) +PASS -- TEST 'control_debug_p8_intel' [16:08, 02:06](1885 MB) +PASS -- TEST 'regional_debug_intel' [15:35, 01:31](931 MB) +PASS -- TEST 'rap_control_debug_intel' [15:16, 01:19](1177 MB) +PASS -- TEST 'hrrr_control_debug_intel' [15:01, 01:20](1170 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [14:20, 01:32](1176 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [14:10, 02:09](1176 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [13:30, 01:20](1176 MB) +PASS -- TEST 'rap_diag_debug_intel' [12:59, 02:30](1262 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [12:42, 02:07](1177 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [12:43, 02:06](1177 MB) +PASS -- TEST 'rap_lndp_debug_intel' [12:05, 01:49](1181 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:58, 01:45](1178 MB) +PASS -- TEST 'rap_noah_debug_intel' [11:53, 01:53](1171 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [11:50, 02:13](1174 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:48, 02:07](1172 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [11:23, 01:39](1170 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:01, 01:38](1181 MB) +PASS -- TEST 'rap_flake_debug_intel' [11:07, 02:15](1177 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:06, 04:03](1183 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:24, 04:51] ( 838 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [10:56, 02:15](1674 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:27, 08:11] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:19, 02:07](1527 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:51, 03:22](870 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:17, 04:34](864 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:08, 02:46](947 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:52, 04:44](1069 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:44, 03:45](861 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [56:30, 03:41](760 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [56:56, 01:17](747 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:27, 08:11] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [08:35, 02:03](1066 MB) +PASS -- TEST 'conus13km_2threads_intel' [47:08, 02:09](1394 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [47:06, 01:32](910 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:25, 08:16] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:42, 01:54](895 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 04:49] ( 786 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:18, 01:34](1055 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:24, 01:40](1056 MB) +PASS -- TEST 'conus13km_debug_intel' [06:51, 02:08](1139 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [06:46, 01:39](828 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [06:00, 01:42](1477 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [05:36, 01:57](1230 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:47] ( 786 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:50, 02:03](1075 MB) + +PASS -- COMPILE 'hafsw_intel' [22:37, 09:30] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [04:18, 02:44](1676 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:13, 01:46](2028 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [03:34, 03:05](1196 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [03:26, 03:04](1231 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [03:22, 02:20](1382 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [03:09, 02:41](917 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [02:18, 03:03](1204 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [02:04, 02:20](1098 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [00:53, 03:41](1945 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [59:44, 02:21](956 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [59:31, 02:27](955 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [58:25, 01:55](1546 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [57:10, 02:03](1128 MB) +PASS -- TEST 'gnv1_nested_intel' [56:56, 04:32](1897 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [20:35, 05:23] ( 1466 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [56:33, 02:19](1641 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [24:40, 09:08] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [54:41, 01:49](1594 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [54:29, 02:07](1767 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [23:39, 09:12] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [54:01, 02:32](1763 MB) + +PASS -- COMPILE 'hafs_all_intel' [20:34, 08:57] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [53:23, 02:36](1183 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [52:27, 03:15](1166 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [50:08, 01:26](898 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [39:57, 09:24] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [49:41, 02:00](756 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [44:16, 01:14](757 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [43:21, 01:59](649 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [42:31, 01:46](647 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [41:18, 01:25](647 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [40:59, 01:44](769 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [40:19, 02:11](769 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [40:18, 01:19](646 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [40:17, 02:20](816 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [39:28, 02:12](795 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [38:11, 02:06](756 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [37:58, 01:43](2036 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [36:25, 02:07](2035 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [38:54, 09:13] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [36:08, 01:20](769 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [32:48, 01:04] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [35:05, 01:42](609 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [34:40, 02:16](747 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [28:50, 01:26](751 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [45:00, 09:52] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [34:25, 01:52](1954 MB) + +PASS -- COMPILE 'atml_intel' [46:02, 09:11] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [33:18, 03:01](2171 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [32:57, 03:53](2171 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [22:31, 02:00](1324 MB) + +PASS -- COMPILE 'atml_debug_intel' [32:48, 05:29] ( 881 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [32:29, 03:47](2216 MB) + +PASS -- COMPILE 'atmw_intel' [34:50, 08:46] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [32:14, 03:08](1935 MB) + +PASS -- COMPILE 'atmaero_intel' [34:49, 08:36] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [31:42, 02:51](3215 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [31:36, 03:07](3000 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [31:26, 02:58](3008 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [32:49, 04:50] ( 883 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [30:50, 02:54](4801 MB) SYNOPSIS: -Starting Date/Time: 20240805 16:07:25 -Ending Date/Time: 20240805 18:26:20 -Total Time: 02h:19m:22s -Compiles Completed: 38/38 -Tests Completed: 179/179 +Starting Date/Time: 20240905 17:49:41 +Ending Date/Time: 20240905 19:58:02 +Total Time: 02h:08m:47s +Compiles Completed: 37/37 +Tests Completed: 176/176 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index a80a8b4b99..39735c2292 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,27 +1,27 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -8cb23af867d56961352ff5fab97656c3a4c6b936 +09b868ff72fac6a029564ad640cb24311ec74865 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - fd590042f958cae20968eb2221bdbbcedd931bea FV3 (remotes/origin/skeb_hydrostatic) - d92b739ed0c7d7d676c5906a66d626cb3178c817 FV3/atmos_cubed_sphere (remotes/origin/skeb_hydrostatic) + 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) + ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) + 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) + 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) + e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,363 +35,286 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_85245 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240904 +COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_20365 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [26:18, 24:28] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:33, 06:05](3203 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:22, 26:54] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:09, 15:04](1909 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:04, 16:38](1937 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:08, 08:13](1072 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:09, 16:55](1881 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [29:23, 26:26] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:24, 14:34](1910 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:15, 15:08] ( 1530 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:13, 23:04](1933 MB) - -PASS -- COMPILE 's2swa_intel' [25:21, 24:03] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:15, 06:30](3221 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:39, 06:44](3221 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:05, 04:19](3149 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:15, 06:38](3247 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:03, 04:06](3176 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:32, 06:12](3732 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:47, 06:39](3219 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:27, 05:38](3534 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:37, 06:38](3228 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:14, 09:52](3816 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:01, 07:00](3618 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [34:56, 10:59](4518 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_bmark_p8_intel' [, ]( MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:24, 06:10](3202 MB) - -PASS -- COMPILE 's2sw_intel' [24:21, 22:14] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:56, 05:03](1919 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:08, 05:21](1986 MB) - -PASS -- COMPILE 's2swa_debug_intel' [18:20, 14:52] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:14, 08:23](3304 MB) - -PASS -- COMPILE 's2sw_debug_intel' [16:19, 13:52] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:00, 06:10](1956 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [21:20, 18:17] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:08, 05:11](1991 MB) - -PASS -- COMPILE 's2s_intel' [22:18, 18:46] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [35:35, 07:02](2891 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [31:33, 02:44](2902 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:42, 01:46](2309 MB) - -PASS -- COMPILE 's2swa_faster_intel' [27:20, 26:11] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [11:56, 06:29](3231 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [26:24, 24:46] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:17, 15:03](1929 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:29, 08:30](1088 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:01, 16:58](1905 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:25, 13:32] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:06, 24:45](1944 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:26, 15:20] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [08:03, 03:33](671 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [09:48, 02:29](1565 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:10, 02:35](1571 MB) -PASS -- TEST 'control_latlon_intel' [09:47, 02:32](1562 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:45, 02:33](1562 MB) -PASS -- TEST 'control_c48_intel' [19:47, 06:10](1575 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [18:59, 05:22](708 MB) -PASS -- TEST 'control_c192_intel' [16:56, 08:51](1674 MB) -PASS -- TEST 'control_c384_intel' [19:16, 09:02](1958 MB) -PASS -- TEST 'control_c384gdas_intel' [19:56, 07:31](1175 MB) -PASS -- TEST 'control_stochy_intel' [06:06, 01:36](621 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:47, 00:55](438 MB) -PASS -- TEST 'control_lndp_intel' [06:07, 01:26](622 MB) -PASS -- TEST 'control_iovr4_intel' [07:08, 02:12](622 MB) -PASS -- TEST 'control_iovr5_intel' [07:08, 02:14](623 MB) -PASS -- TEST 'control_p8_intel' [09:19, 03:19](1858 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [10:22, 03:21](1859 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [11:03, 03:15](1861 MB) -PASS -- TEST 'control_restart_p8_intel' [05:47, 02:08](1004 MB) -PASS -- TEST 'control_noqr_p8_intel' [10:43, 03:15](1851 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:30, 02:17](1011 MB) -PASS -- TEST 'control_decomp_p8_intel' [10:40, 03:26](1852 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:01, 03:12](1937 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:41, 05:08](1857 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:54, 04:09](1912 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:59, 03:18](1863 MB) -PASS -- TEST 'merra2_thompson_intel' [07:55, 03:28](1858 MB) -PASS -- TEST 'regional_control_intel' [08:30, 05:03](858 MB) -PASS -- TEST 'regional_restart_intel' [05:11, 03:29](862 MB) -PASS -- TEST 'regional_decomp_intel' [08:58, 05:27](870 MB) -PASS -- TEST 'regional_noquilt_intel' [07:56, 05:02](1181 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:02, 05:03](863 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:03, 05:18](868 MB) -PASS -- TEST 'regional_wofs_intel' [08:13, 05:46](1595 MB) - -PASS -- COMPILE 'rrfs_intel' [42:28, 14:11] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:16, 06:18](1004 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:26, 03:57](1156 MB) -PASS -- TEST 'rap_decomp_intel' [11:16, 06:32](1004 MB) -PASS -- TEST 'rap_2threads_intel' [09:26, 05:52](1081 MB) -PASS -- TEST 'rap_restart_intel' [05:27, 03:17](877 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:15, 06:16](1002 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:15, 06:32](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:25, 04:47](875 MB) -PASS -- TEST 'hrrr_control_intel' [07:40, 03:18](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:39, 03:29](996 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:14, 02:55](1078 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:01, 01:56](832 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:30, 06:10](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:50, 07:32](1957 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:54, 07:14](1947 MB) - -PASS -- COMPILE 'csawmg_intel' [39:31, 13:00] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [10:22, 06:31](955 MB) -PASS -- TEST 'control_ras_intel' [04:39, 03:00](658 MB) - -PASS -- COMPILE 'wam_intel' [38:32, 12:52] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:20, 10:23](1644 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [37:22, 13:24] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:46, 03:15](1857 MB) -PASS -- TEST 'regional_control_faster_intel' [07:14, 05:06](858 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [37:32, 15:50] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:22, 02:43](1609 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:18, 02:34](1610 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:47, 02:57](808 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:49, 02:46](807 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:23, 04:48](1115 MB) -PASS -- TEST 'control_ras_debug_intel' [03:58, 02:43](815 MB) -PASS -- TEST 'control_diag_debug_intel' [06:57, 02:43](1660 MB) -PASS -- TEST 'control_debug_p8_intel' [06:17, 03:28](1906 MB) -PASS -- TEST 'regional_debug_intel' [19:34, 16:34](919 MB) -PASS -- TEST 'rap_control_debug_intel' [06:51, 04:56](1191 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:54, 04:46](1186 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:54, 04:49](1189 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:39, 04:46](1193 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:51, 04:45](1193 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:18, 04:58](1271 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:51, 04:54](1192 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:49, 04:58](1192 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:51, 04:46](1196 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:57, 04:46](1188 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:53, 04:42](1187 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:49, 04:45](1189 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:45, 07:32](1186 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:50, 04:42](1185 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:01, 05:52](1193 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:52, 04:54](1187 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:27, 08:02](1199 MB) - -PASS -- COMPILE 'wam_debug_intel' [30:27, 08:42] ( 844 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:09, 12:08](1694 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:26, 12:50] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:10, 03:47](1019 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:25, 05:11](884 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:36, 02:57](884 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:25, 04:55](944 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:38, 02:33](938 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:36, 03:00](881 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:33, 03:59](790 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:47, 01:37](775 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [26:23, 12:50] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [08:35, 02:04](1073 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:59, 01:12](1070 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:56, 01:15](958 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [21:18, 13:09] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:44, 03:43](902 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [17:17, 09:08] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:46, 04:39](1068 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:45, 04:30](1070 MB) -PASS -- TEST 'conus13km_debug_intel' [17:24, 13:50](1148 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:30, 14:23](830 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:14, 08:16](1145 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:12, 13:54](1215 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:13, 09:00] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:49, 04:47](1087 MB) - -PASS -- COMPILE 'hafsw_intel' [21:21, 19:58] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:49, 04:51](704 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:40, 05:25](1043 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:57, 06:45](756 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:11, 11:15](770 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:28, 12:29](794 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:53, 04:47](461 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:58, 05:55](475 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:18, 02:27](387 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_global_multiple_4nests_atm_intel' [, ]( MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:20, 03:28](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:58, 03:15](499 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:54, 04:05](567 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:43, 01:21](418 MB) -PASS -- TEST 'gnv1_nested_intel' [08:48, 04:30](1713 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [12:22, 10:46] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:45, 12:38](620 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:25, 18:59] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:55, 07:27](614 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:24, 07:25](679 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:24, 20:24] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:32, 05:33](665 MB) - -PASS -- COMPILE 'hafs_all_intel' [20:18, 17:52] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:25, 06:03](737 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:27, 06:00](720 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:42, 16:24](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [15:22, 09:42] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:47, 02:34](757 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:04, 01:36](759 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:52, 02:25](645 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:55, 02:29](653 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:49, 02:27](649 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:51, 02:32](769 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:55, 02:36](768 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:48, 02:26](648 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [15:46, 05:50](696 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [15:44, 05:51](680 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:29, 02:34](770 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:00, 03:59](2033 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:07, 04:02](2033 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [13:19, 07:30] ( 7 warnings 2 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'datm_cdeps_debug_cfsr_intel' [, ]( MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [15:15, 09:59] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:46, 02:34](767 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [08:19, 03:20] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:58, 01:26](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:09, 01:17](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:00, 01:12](451 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:36, 15:38] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:09, 04:25](1906 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:20, 14:24] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:52, 04:06](1902 MB) - -PASS -- COMPILE 'atml_intel' [17:31, 16:32] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:30, 08:44](1891 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:37, 08:16](1889 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:06, 04:01](1037 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:27, 12:28] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:38, 06:45](1927 MB) - -PASS -- COMPILE 'atmw_intel' [16:21, 15:23] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:07, 02:31](1882 MB) - -PASS -- COMPILE 'atmaero_intel' [15:23, 14:46] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:20, 04:32](3122 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:26, 04:29](3003 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:20, 04:33](3008 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [11:14, 09:50] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [29:41, 22:29](4542 MB) +PASS -- COMPILE 's2swa_32bit_intel' [25:53, 25:13] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:43, 06:15](3205 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [34:01, 27:17] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:38, 15:04](1916 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:10, 16:33](1945 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [17:11, 08:36](1072 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:31, 17:12](1874 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [33:04, 27:10] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:06, 14:49](1910 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:54, 15:10] ( 1528 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:26, 23:23](1940 MB) + +PASS -- COMPILE 's2swa_intel' [33:04, 24:24] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:26, 06:52](3224 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:39, 06:50](3218 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:01, 04:30](3150 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:39, 06:58](3255 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [16:53, 04:29](3177 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:58, 06:23](3730 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:31, 06:41](3216 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:46, 05:48](3537 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:21, 06:59](3229 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [23:35, 10:17](3819 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [18:23, 07:17](3624 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [54:07, 11:25](4516 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [40:08, 08:29](4669 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:25, 06:29](3216 MB) + +PASS -- COMPILE 's2sw_intel' [31:58, 23:18] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:10, 05:12](1920 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:23, 05:22](1983 MB) + +PASS -- COMPILE 's2swa_debug_intel' [24:04, 15:16] ( 1453 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:33, 08:43](3302 MB) + +PASS -- COMPILE 's2sw_debug_intel' [25:57, 14:29] ( 1453 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:17, 06:22](1964 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [31:59, 19:43] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:24, 05:28](1992 MB) + +PASS -- COMPILE 's2s_intel' [31:05, 19:20] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:35, 07:13](2879 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [06:37, 02:59](2893 MB) +PASS -- TEST 'cpld_restart_c48_intel' [10:05, 02:22](2300 MB) + +PASS -- COMPILE 's2swa_faster_intel' [30:22, 28:21] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [17:21, 06:43](3231 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [28:26, 25:37] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:14, 15:07](1926 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:38, 08:48](1099 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:16, 17:11](1895 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [18:23, 14:15] ( 1563 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:38, 24:34](1955 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [20:18, 16:21] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:01, 03:29](664 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [09:07, 02:36](1560 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:28, 02:39](1561 MB) +PASS -- TEST 'control_latlon_intel' [10:10, 02:29](1557 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:08, 02:35](1569 MB) +PASS -- TEST 'control_c48_intel' [30:17, 06:11](1572 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [28:02, 05:21](709 MB) +PASS -- TEST 'control_c192_intel' [20:33, 08:54](1674 MB) +PASS -- TEST 'control_c384_intel' [22:49, 09:08](1958 MB) +PASS -- TEST 'control_c384gdas_intel' [28:11, 07:35](1180 MB) +PASS -- TEST 'control_stochy_intel' [06:02, 01:32](622 MB) +PASS -- TEST 'control_stochy_restart_intel' [07:51, 00:56](433 MB) +PASS -- TEST 'control_lndp_intel' [04:52, 01:28](621 MB) +PASS -- TEST 'control_iovr4_intel' [06:02, 02:12](620 MB) +PASS -- TEST 'control_iovr5_intel' [04:56, 02:28](619 MB) +PASS -- TEST 'control_p8_intel' [08:33, 03:37](1848 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [12:33, 03:17](1852 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [09:56, 03:33](1853 MB) +PASS -- TEST 'control_restart_p8_intel' [08:47, 02:26](1002 MB) +PASS -- TEST 'control_noqr_p8_intel' [13:27, 03:24](1844 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:46, 02:19](1012 MB) +PASS -- TEST 'control_decomp_p8_intel' [09:38, 03:32](1853 MB) +PASS -- TEST 'control_2threads_p8_intel' [12:42, 03:29](1925 MB) +PASS -- TEST 'control_p8_lndp_intel' [14:43, 05:27](1851 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [12:49, 04:21](1909 MB) +PASS -- TEST 'control_p8_mynn_intel' [11:39, 03:23](1861 MB) +PASS -- TEST 'merra2_thompson_intel' [12:07, 03:43](1864 MB) +PASS -- TEST 'regional_control_intel' [08:01, 05:21](854 MB) +PASS -- TEST 'regional_restart_intel' [11:02, 03:20](856 MB) +PASS -- TEST 'regional_decomp_intel' [09:13, 05:44](866 MB) +PASS -- TEST 'regional_noquilt_intel' [12:05, 05:15](1180 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:09, 05:19](860 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:15, 05:16](855 MB) +PASS -- TEST 'regional_wofs_intel' [10:08, 05:46](1587 MB) + +PASS -- COMPILE 'rrfs_intel' [17:23, 14:52] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [12:23, 06:17](1004 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:32, 03:55](1145 MB) +PASS -- TEST 'rap_decomp_intel' [11:46, 06:31](1010 MB) +PASS -- TEST 'rap_2threads_intel' [09:34, 05:50](1088 MB) +PASS -- TEST 'rap_restart_intel' [06:39, 03:21](878 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:37, 06:13](1001 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:47, 06:30](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:34, 04:42](878 MB) +PASS -- TEST 'hrrr_control_intel' [06:47, 03:21](998 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:39, 03:27](996 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [08:35, 02:55](1078 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:04, 01:53](831 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:44, 06:10](999 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:06, 07:33](1958 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:04, 07:19](1951 MB) + +PASS -- COMPILE 'csawmg_intel' [16:21, 13:57] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [10:38, 06:56](960 MB) +PASS -- TEST 'control_ras_intel' [05:52, 03:02](657 MB) + +PASS -- COMPILE 'wam_intel' [15:18, 13:06] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:42, 10:26](1643 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [16:22, 14:02] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [08:07, 03:23](1853 MB) +PASS -- TEST 'regional_control_faster_intel' [08:05, 05:17](861 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [19:18, 16:28] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:30, 02:42](1607 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:34, 02:38](1605 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:00, 03:01](810 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:56, 02:41](810 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:46, 04:53](1112 MB) +PASS -- TEST 'control_ras_debug_intel' [06:01, 02:52](815 MB) +PASS -- TEST 'control_diag_debug_intel' [08:01, 02:44](1665 MB) +PASS -- TEST 'control_debug_p8_intel' [06:23, 03:32](1905 MB) +PASS -- TEST 'regional_debug_intel' [20:23, 16:46](922 MB) +PASS -- TEST 'rap_control_debug_intel' [07:53, 04:47](1190 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:58, 04:52](1188 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:50, 04:57](1193 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:51, 04:58](1191 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:04, 04:52](1191 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:42, 05:07](1273 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:05, 05:00](1188 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:01, 05:00](1192 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:03, 04:51](1198 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:54, 04:53](1191 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:55, 04:48](1185 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:50, 04:51](1191 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:47, 07:44](1184 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:48, 04:49](1187 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:54, 05:37](1196 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:59, 04:55](1190 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:50, 08:26](1189 MB) + +PASS -- COMPILE 'wam_debug_intel' [26:26, 09:17] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:18, 12:34](1687 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [24:20, 13:26] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:50, 03:50](1022 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:35, 05:16](878 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:33, 02:51](873 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:21, 04:53](937 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:32, 02:34](925 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:26, 03:01](871 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:23, 04:02](785 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:56, 01:39](768 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [24:22, 12:43] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [07:04, 02:08](1072 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:46, 01:09](1073 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [06:49, 01:15](961 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [35:25, 13:12] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:33, 03:46](904 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [31:24, 09:40] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:55, 04:45](1066 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:01, 04:39](1063 MB) +PASS -- TEST 'conus13km_debug_intel' [19:31, 13:54](1147 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:34, 13:47](830 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [13:58, 08:08](1144 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:09, 13:50](1213 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [30:28, 09:22] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:50, 04:50](1095 MB) + +PASS -- COMPILE 'hafsw_intel' [42:26, 20:38] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [10:14, 04:56](702 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [12:22, 05:51](1052 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:35, 06:53](750 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:01, 11:19](776 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:37, 12:27](794 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:30, 04:52](467 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:03, 06:02](481 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [08:32, 02:32](388 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [18:20, 06:32](455 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:20, 03:30](501 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [10:46, 03:18](504 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:44, 04:09](573 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:44, 01:28](421 MB) +PASS -- TEST 'gnv1_nested_intel' [11:24, 04:43](1709 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [32:22, 11:03] ( 1470 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:26, 12:26](619 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [37:30, 19:18] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:08, 07:28](622 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:38, 07:31](680 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [39:33, 21:04] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:14, 05:33](670 MB) + +PASS -- COMPILE 'hafs_all_intel' [29:21, 18:30] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:11, 06:01](740 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:30, 06:04](726 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:48, 16:27](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:16, 11:13] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:49, 02:33](767 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:06, 01:37](757 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:51, 02:24](645 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:52, 02:29](645 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:51, 02:32](651 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:00, 02:35](756 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:52, 02:36](770 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:49, 02:27](646 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [16:49, 05:58](696 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [16:48, 05:53](674 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:30, 02:35](766 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:57, 04:10](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:51, 04:08](2034 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [10:15, 07:48] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:51, 05:15](739 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [12:20, 10:32] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [12:46, 02:35](767 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:14, 03:31] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:32, 01:36](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:32, 01:31](457 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:35, 01:00](450 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:23, 15:44] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [12:15, 04:18](1908 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:22, 14:42] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:40, 04:06](1903 MB) + +PASS -- COMPILE 'atml_intel' [18:17, 16:38] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:54, 09:55](1883 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [15:25, 09:07](1891 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [09:34, 04:54](1036 MB) + +PASS -- COMPILE 'atml_debug_intel' [14:20, 12:34] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:07, 06:47](1926 MB) + +PASS -- COMPILE 'atmw_intel' [18:21, 15:26] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:02, 02:31](1875 MB) + +PASS -- COMPILE 'atmaero_intel' [33:24, 15:42] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [11:11, 04:49](3130 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:09, 04:27](3002 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:34, 04:33](3014 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [29:27, 10:38] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [29:42, 22:55](4541 MB) SYNOPSIS: -Starting Date/Time: 20240808 18:27:21 -Ending Date/Time: 20240808 20:33:18 -Total Time: 02h:07m:14s +Starting Date/Time: 20240906 11:12:54 +Ending Date/Time: 20240906 15:44:31 +Total Time: 04h:33m:46s Compiles Completed: 41/41 -Tests Completed: 181/184 -Failed Tests: -* TEST cpld_restart_bmark_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2278/tests/logs/log_derecho/run_cpld_restart_bmark_p8_intel.log -* TEST hafs_global_multiple_4nests_atm_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2278/tests/logs/log_derecho/run_hafs_global_multiple_4nests_atm_intel.log -* TEST datm_cdeps_debug_cfsr_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2278/tests/logs/log_derecho/run_datm_cdeps_debug_cfsr_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF DERECHO REGRESSION TESTING LOG==== -====START OF DERECHO REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -be00f82a5b69e02f347d8334d4b13292804e83f5 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - fd590042f958cae20968eb2221bdbbcedd931bea FV3 (remotes/origin/skeb_hydrostatic) - d92b739ed0c7d7d676c5906a66d626cb3178c817 FV3/atmos_cubed_sphere (remotes/origin/skeb_hydrostatic) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_65928 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: nral0032 -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_intel' [25:26, 23:56] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_bmark_p8_intel' [26:43, 11:15](4518 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:58, 07:56](4664 MB) - -PASS -- COMPILE 'hafsw_intel' [21:24, 19:55] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:03, 06:30](449 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:12, 07:28] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:35, 05:15](738 MB) - -SYNOPSIS: -Starting Date/Time: 20240809 07:25:10 -Ending Date/Time: 20240809 08:43:35 -Total Time: 01h:18m:42s -Compiles Completed: 3/3 -Tests Completed: 4/4 +Tests Completed: 184/184 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index f9064a2595..8da1543c16 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,27 +1,27 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -8cb23af867d56961352ff5fab97656c3a4c6b936 +a78129ced4e805131daeb5617e71ca20902410ca Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - fd590042f958cae20968eb2221bdbbcedd931bea FV3 (remotes/origin/skeb_hydrostatic) - d92b739ed0c7d7d676c5906a66d626cb3178c817 FV3/atmos_cubed_sphere (remotes/origin/skeb_hydrostatic) + 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) + ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) + 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) + 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) + e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,285 +35,285 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_110577 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240904 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_242863 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:13, 18:58] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:58, 08:02](3205 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:15, 22:46] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:37, 14:17](1913 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [34:13, 14:16](1935 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [26:36, 06:52](1070 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:27, 14:54](1887 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:13, 23:42] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:53, 14:19](1910 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:16, 13:04] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [40:21, 25:16](1917 MB) - -PASS -- COMPILE 's2swa_intel' [19:13, 18:42] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:53, 08:33](3224 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:51, 08:39](3220 MB) -PASS -- TEST 'cpld_restart_p8_intel' [31:08, 05:21](3156 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [17:41, 08:32](3247 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [30:07, 05:06](3172 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:46, 06:59](3464 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:35, 08:32](3222 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:33, 07:54](3167 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:59, 08:38](3224 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [22:06, 11:38](3449 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [29:26, 07:27](3607 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [46:33, 13:06](4208 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:29, 09:15](4359 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [16:40, 08:18](3211 MB) - -PASS -- COMPILE 's2sw_intel' [19:13, 18:14] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [14:41, 05:33](1929 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:41, 05:59](1988 MB) - -PASS -- COMPILE 's2swa_debug_intel' [14:12, 13:37] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [23:35, 10:08](3281 MB) - -PASS -- COMPILE 's2sw_debug_intel' [13:16, 12:18] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [21:13, 06:14](1954 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:14, 15:42] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [17:49, 05:42](1995 MB) - -PASS -- COMPILE 's2s_intel' [15:14, 15:02] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [19:17, 06:32](2871 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [14:30, 02:07](2876 MB) -PASS -- TEST 'cpld_restart_c48_intel' [13:13, 01:13](2288 MB) - -PASS -- COMPILE 's2swa_faster_intel' [20:15, 19:40] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [28:55, 07:57](3223 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:17, 22:35] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [40:48, 15:19](1927 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:18, 07:47](1090 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:40, 17:37](1904 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:10, 14:23] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [39:22, 27:07](1956 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:12, 14:26] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [21:47, 04:04](664 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [25:17, 03:26](1560 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [25:15, 03:10](1565 MB) -PASS -- TEST 'control_latlon_intel' [25:05, 03:07](1564 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [21:17, 03:05](1563 MB) -PASS -- TEST 'control_c48_intel' [27:23, 06:37](1568 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [16:56, 05:42](697 MB) -PASS -- TEST 'control_c192_intel' [31:07, 09:49](1670 MB) -PASS -- TEST 'control_c384_intel' [40:31, 18:39](1928 MB) -PASS -- TEST 'control_c384gdas_intel' [38:25, 14:39](1153 MB) -PASS -- TEST 'control_stochy_intel' [23:35, 02:02](619 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:40, 01:02](425 MB) -PASS -- TEST 'control_lndp_intel' [23:41, 01:49](619 MB) -PASS -- TEST 'control_iovr4_intel' [25:39, 02:48](616 MB) -PASS -- TEST 'control_iovr5_intel' [25:37, 02:40](616 MB) -PASS -- TEST 'control_p8_intel' [28:42, 03:19](1848 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [29:02, 03:36](1850 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [27:46, 03:22](1852 MB) -PASS -- TEST 'control_restart_p8_intel' [06:36, 02:37](997 MB) -PASS -- TEST 'control_noqr_p8_intel' [27:05, 03:17](1843 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:37, 02:22](1015 MB) -PASS -- TEST 'control_decomp_p8_intel' [18:30, 03:25](1850 MB) -PASS -- TEST 'control_2threads_p8_intel' [17:30, 02:49](1928 MB) -PASS -- TEST 'control_p8_lndp_intel' [17:58, 05:16](1849 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [14:37, 04:11](1905 MB) -PASS -- TEST 'control_p8_mynn_intel' [12:46, 03:21](1863 MB) -PASS -- TEST 'merra2_thompson_intel' [11:35, 03:38](1856 MB) -PASS -- TEST 'regional_control_intel' [09:42, 04:35](848 MB) -PASS -- TEST 'regional_restart_intel' [07:01, 02:56](849 MB) -PASS -- TEST 'regional_decomp_intel' [09:43, 04:45](851 MB) -PASS -- TEST 'regional_2threads_intel' [08:45, 02:59](987 MB) -PASS -- TEST 'regional_noquilt_intel' [07:45, 04:27](1179 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:56, 04:38](856 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:20, 04:42](849 MB) -PASS -- TEST 'regional_wofs_intel' [08:38, 06:26](1580 MB) - -PASS -- COMPILE 'rrfs_intel' [15:14, 14:32] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:46, 07:14](1010 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:21, 04:13](1152 MB) -PASS -- TEST 'rap_decomp_intel' [09:25, 07:34](1006 MB) -PASS -- TEST 'rap_2threads_intel' [09:33, 06:42](1087 MB) -PASS -- TEST 'rap_restart_intel' [05:06, 03:48](878 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:52, 07:26](1005 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:50, 07:33](1004 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:43, 05:25](877 MB) -PASS -- TEST 'hrrr_control_intel' [06:22, 04:20](1001 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:22, 04:19](1001 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:20, 03:10](1075 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:48, 02:16](832 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:41, 06:50](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:54, 09:10](1959 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:47, 08:46](1947 MB) - -PASS -- COMPILE 'csawmg_intel' [16:12, 15:37] -PASS -- TEST 'control_csawmg_intel' [10:56, 07:03](957 MB) -PASS -- TEST 'control_ras_intel' [06:37, 03:32](653 MB) - -PASS -- COMPILE 'wam_intel' [14:12, 13:52] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:21, 11:58](1657 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:12, 14:07] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:59, 03:42](1847 MB) -PASS -- TEST 'regional_control_faster_intel' [06:54, 04:30](844 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [15:15, 14:33] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:26, 03:03](1589 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:06, 03:13](1592 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:42, 03:27](793 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:34, 03:07](794 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:45, 04:30](1099 MB) -PASS -- TEST 'control_ras_debug_intel' [04:43, 03:04](801 MB) -PASS -- TEST 'control_diag_debug_intel' [03:56, 03:02](1652 MB) -PASS -- TEST 'control_debug_p8_intel' [04:43, 03:17](1888 MB) -PASS -- TEST 'regional_debug_intel' [17:52, 16:21](888 MB) -PASS -- TEST 'rap_control_debug_intel' [07:08, 05:22](1182 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:53, 05:16](1173 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:36, 05:09](1177 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:35, 05:08](1177 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:45, 05:11](1182 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:54, 05:18](1261 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:44, 05:14](1176 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:52, 05:15](1182 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:53, 05:08](1182 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:00, 05:05](1182 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:01, 04:58](1176 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:49, 05:04](1180 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:55, 07:56](1175 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:03, 04:55](1170 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:41, 05:52](1178 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:41, 05:05](1179 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:53, 09:21](1179 MB) - -PASS -- COMPILE 'wam_debug_intel' [11:12, 10:18] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:16, 14:15](1674 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:12, 14:25] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:21, 04:40](1004 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:02, 06:54](878 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:21, 04:14](875 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:11, 06:18](933 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:42, 03:47](924 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:20, 04:01](875 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:19, 05:13](773 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:42, 02:07](757 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 13:36] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:06, 02:13](1086 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:42, 01:16](1062 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:08, 02:40](964 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:12, 14:26] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:25, 04:34](906 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:12, 10:37] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:45, 04:56](1051 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:48, 05:08](1052 MB) -PASS -- TEST 'conus13km_debug_intel' [17:11, 14:12](1136 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:50, 14:35](807 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:27, 08:25](1113 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:37, 14:07](1200 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:12, 10:30] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:48, 05:07](1079 MB) - -PASS -- COMPILE 'hafsw_intel' [18:11, 17:42] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:00, 05:30](683 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:42, 04:37](1033 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:38, 07:43](728 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:24, 11:54](758 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:02, 13:17](784 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:09, 05:28](462 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:57, 06:48](484 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [07:00, 03:04](369 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:48, 08:04](430 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:28, 03:56](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:48, 03:36](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:32, 05:00](557 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:32, 01:47](399 MB) -PASS -- TEST 'gnv1_nested_intel' [12:01, 06:51](1706 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [13:11, 13:08] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:11, 14:04](585 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [18:14, 17:25] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:04, 08:34](598 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:15, 08:01](777 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [19:13, 18:10] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:48, 06:10](778 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:19, 17:20] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:03, 06:19](719 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:55, 06:24](707 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:43, 20:04](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:13, 13:06] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:31, 02:39](761 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:30, 01:42](751 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:28, 02:27](643 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:35, 02:28](640 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:26, 02:31](639 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:26, 02:34](749 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:27, 02:36](749 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:38, 02:25](640 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:09, 06:09](694 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:33, 06:00](675 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:30, 02:34](761 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:48, 04:39](2029 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:34, 04:39](2029 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:11, 08:36] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:03, 05:36](733 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [14:11, 13:20] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:29, 02:33](752 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:11, 03:25] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:24, 02:30](316 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:15, 01:34](455 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:14, 02:11](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:15, 15:37] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:02, 04:31](1917 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:14, 14:55] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:09, 04:17](1903 MB) - -PASS -- COMPILE 'atml_intel' [16:12, 15:46] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:58, 08:20](1881 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:54, 08:31](1882 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:56, 05:16](1023 MB) - -PASS -- COMPILE 'atml_debug_intel' [12:17, 11:39] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:48, 06:37](1922 MB) - -PASS -- COMPILE 'atmw_intel' [14:11, 14:04] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:20, 02:23](1884 MB) - -PASS -- COMPILE 'atmaero_intel' [16:15, 15:29] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:25, 07:16](3118 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:28, 07:15](3009 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:19, 07:12](3018 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [12:15, 11:37] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [22:59, 18:16](4485 MB) +PASS -- COMPILE 's2swa_32bit_intel' [22:11, 20:21] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:09, 07:28](3203 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:13, 23:36] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [26:33, 14:13](1909 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:22, 14:37](1927 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:22, 07:02](1071 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:27, 14:56](1891 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:13, 23:20] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [24:55, 13:13](1907 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:11, 14:28] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:26, 25:22](1939 MB) + +PASS -- COMPILE 's2swa_intel' [21:11, 19:16] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:07, 07:45](3224 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:22, 07:53](3223 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:47, 05:04](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:07, 07:59](3249 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:47, 05:07](3172 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:08, 06:36](3467 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:00, 07:45](3224 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:08, 06:47](3166 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:21, 08:00](3224 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:35, 09:45](3445 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [15:40, 06:32](3605 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [24:56, 10:18](4205 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:59, 06:22](4358 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:05, 07:50](3212 MB) + +PASS -- COMPILE 's2sw_intel' [21:11, 19:29] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:13, 04:54](1931 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:19, 05:04](1994 MB) + +PASS -- COMPILE 's2swa_debug_intel' [17:13, 15:36] ( 1448 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:30, 09:50](3281 MB) + +PASS -- COMPILE 's2sw_debug_intel' [15:11, 13:51] ( 1448 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:50, 06:00](1948 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [19:11, 17:37] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:40, 05:19](1992 MB) + +PASS -- COMPILE 's2s_intel' [19:11, 17:05] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:15, 06:30](2871 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:13, 01:57](2882 MB) +PASS -- TEST 'cpld_restart_c48_intel' [14:23, 01:11](2292 MB) + +PASS -- COMPILE 's2swa_faster_intel' [22:15, 20:02] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:42, 08:06](3224 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:12, 22:19] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:29, 15:14](1929 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:21, 07:50](1100 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:23, 17:01](1904 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:11, 13:20] ( 1558 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:25, 28:14](1946 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:10, 14:38] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [09:47, 03:58](664 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [11:29, 03:37](1559 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:24, 03:42](1570 MB) +PASS -- TEST 'control_latlon_intel' [12:18, 03:11](1569 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:23, 03:40](1568 MB) +PASS -- TEST 'control_c48_intel' [15:35, 06:31](1566 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [13:20, 05:43](699 MB) +PASS -- TEST 'control_c192_intel' [19:34, 10:22](1666 MB) +PASS -- TEST 'control_c384_intel' [28:49, 18:40](1938 MB) +PASS -- TEST 'control_c384gdas_intel' [24:30, 14:25](1153 MB) +PASS -- TEST 'control_stochy_intel' [05:49, 02:17](619 MB) +PASS -- TEST 'control_stochy_restart_intel' [04:30, 01:20](426 MB) +PASS -- TEST 'control_lndp_intel' [07:50, 02:11](619 MB) +PASS -- TEST 'control_iovr4_intel' [09:56, 03:03](618 MB) +PASS -- TEST 'control_iovr5_intel' [09:52, 02:46](618 MB) +PASS -- TEST 'control_p8_intel' [12:41, 03:18](1861 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [14:00, 03:43](1861 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [12:44, 03:16](1854 MB) +PASS -- TEST 'control_restart_p8_intel' [06:04, 02:05](996 MB) +PASS -- TEST 'control_noqr_p8_intel' [11:45, 03:37](1853 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:59, 02:03](1006 MB) +PASS -- TEST 'control_decomp_p8_intel' [11:45, 03:25](1854 MB) +PASS -- TEST 'control_2threads_p8_intel' [11:00, 02:53](1929 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:48, 05:37](1861 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [09:08, 04:22](1908 MB) +PASS -- TEST 'control_p8_mynn_intel' [08:15, 03:46](1861 MB) +PASS -- TEST 'merra2_thompson_intel' [08:05, 03:47](1853 MB) +PASS -- TEST 'regional_control_intel' [06:37, 04:39](849 MB) +PASS -- TEST 'regional_restart_intel' [06:41, 02:34](854 MB) +PASS -- TEST 'regional_decomp_intel' [08:35, 04:48](852 MB) +PASS -- TEST 'regional_2threads_intel' [06:35, 02:46](992 MB) +PASS -- TEST 'regional_noquilt_intel' [06:47, 04:28](1179 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:50, 04:37](849 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:40, 04:51](851 MB) +PASS -- TEST 'regional_wofs_intel' [08:39, 06:07](1582 MB) + +PASS -- COMPILE 'rrfs_intel' [16:10, 13:55] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:05, 07:11](1003 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:08, 03:52](1147 MB) +PASS -- TEST 'rap_decomp_intel' [11:56, 07:29](1004 MB) +PASS -- TEST 'rap_2threads_intel' [10:08, 06:08](1084 MB) +PASS -- TEST 'rap_restart_intel' [05:54, 03:29](871 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:56, 07:12](1000 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:59, 07:09](1004 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:04, 04:53](871 MB) +PASS -- TEST 'hrrr_control_intel' [05:56, 03:50](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:54, 03:55](997 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:01, 03:03](1074 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:33, 01:55](827 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:56, 06:48](999 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:30, 08:14](1958 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:30, 07:58](1948 MB) + +PASS -- COMPILE 'csawmg_intel' [15:11, 13:02] +PASS -- TEST 'control_csawmg_intel' [09:38, 06:37](958 MB) +PASS -- TEST 'control_ras_intel' [05:25, 03:18](653 MB) + +PASS -- COMPILE 'wam_intel' [15:11, 13:29] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:03, 12:12](1657 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:17, 13:14] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:04, 03:13](1860 MB) +PASS -- TEST 'regional_control_faster_intel' [06:39, 04:41](846 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:12, 14:35] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:49, 03:07](1588 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:49, 03:05](1596 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:31, 03:19](797 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:31, 03:00](796 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:35, 04:17](1099 MB) +PASS -- TEST 'control_ras_debug_intel' [04:29, 02:57](804 MB) +PASS -- TEST 'control_diag_debug_intel' [04:44, 02:52](1659 MB) +PASS -- TEST 'control_debug_p8_intel' [05:40, 03:09](1883 MB) +PASS -- TEST 'regional_debug_intel' [18:34, 16:52](899 MB) +PASS -- TEST 'rap_control_debug_intel' [06:30, 04:56](1175 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:30, 05:05](1172 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:27, 04:58](1179 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:29, 05:06](1179 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:34, 04:59](1176 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:38, 05:21](1260 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:34, 05:04](1175 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:32, 05:05](1176 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:32, 05:07](1179 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:33, 05:11](1176 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:30, 04:52](1177 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:28, 05:09](1175 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:31, 07:49](1174 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:31, 05:06](1175 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:30, 05:46](1182 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:27, 04:58](1178 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:00, 08:21](1181 MB) + +PASS -- COMPILE 'wam_debug_intel' [12:14, 10:23] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:57, 13:36](1674 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:12, 12:48] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:04, 03:30](1014 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:59, 06:03](885 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:57, 03:32](879 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:56, 05:12](935 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:00, 02:40](926 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:53, 03:32](878 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:54, 04:33](776 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [08:34, 01:46](760 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:13, 12:58] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:59, 02:29](1084 MB) +PASS -- TEST 'conus13km_2threads_intel' [07:56, 00:55](1065 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [08:57, 01:32](961 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:13, 13:00] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:01, 04:27](906 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:13, 10:19] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:30, 05:04](1052 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:30, 04:50](1051 MB) +PASS -- TEST 'conus13km_debug_intel' [18:12, 14:24](1133 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:08, 14:21](805 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:00, 08:24](1112 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:01, 14:34](1198 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:13, 10:20] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:29, 05:08](1078 MB) + +PASS -- COMPILE 'hafsw_intel' [19:11, 17:03] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [10:11, 04:49](690 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:34, 03:55](1033 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:28, 07:25](725 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:16, 11:22](759 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:24, 12:28](778 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:12, 05:05](459 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:30, 06:12](479 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [09:11, 02:26](366 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:37, 06:51](440 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:55, 03:34](499 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:09, 03:15](497 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [12:05, 04:03](557 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:34, 01:15](396 MB) +PASS -- TEST 'gnv1_nested_intel' [12:58, 05:05](1698 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [14:12, 12:06] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:26, 12:36](585 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [18:11, 16:22] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:10, 07:05](601 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:12, 07:16](779 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:13, 16:50] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:34, 05:24](776 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:17, 15:23] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [12:16, 05:51](719 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:16, 06:06](703 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:12, 20:08](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:13, 12:26] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:28, 02:33](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:26, 01:34](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:24, 02:24](645 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:27, 02:28](643 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:27, 02:32](645 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:27, 02:34](752 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:26, 02:33](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:26, 02:25](641 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:02, 06:04](694 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:01, 05:53](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 02:33](751 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:24, 04:34](2032 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:27, 04:31](2031 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [10:14, 08:17] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:27, 05:24](747 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [14:11, 12:35] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:25, 02:35](763 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 03:27] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:50, 01:35](308 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:43, 01:08](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:42, 00:48](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:11, 14:19] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:18, 04:01](1917 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 13:24] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:15, 04:01](1897 MB) + +PASS -- COMPILE 'atml_intel' [15:11, 13:48] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:48, 06:48](1880 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:39, 07:01](1892 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:43, 03:35](1036 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:11, 10:23] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:29, 06:23](1919 MB) + +PASS -- COMPILE 'atmw_intel' [15:13, 13:52] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:04, 02:10](1888 MB) + +PASS -- COMPILE 'atmaero_intel' [15:11, 13:07] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:10, 06:03](3121 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:07, 07:09](3005 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:06, 06:39](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:14, 09:44] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [22:19, 18:23](4449 MB) SYNOPSIS: -Starting Date/Time: 20240808 20:31:36 -Ending Date/Time: 20240808 22:33:34 -Total Time: 02h:03m:10s +Starting Date/Time: 20240905 02:47:02 +Ending Date/Time: 20240905 04:36:54 +Total Time: 01h:50m:41s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index c585b44b12..f9fb19a0a6 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,18 +1,18 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -47a543052e09892e0825465e5699e061faf068cb +8fb13929a4f74a9181c8d3f619893aaf6e507bc5 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - fd590042f958cae20968eb2221bdbbcedd931bea FV3 (remotes/origin/skeb_hydrostatic) + 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) + e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -24,374 +24,375 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2101635 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240904 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_439415 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:13, 13:08] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [24:24, 05:44](3306 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:13, 16:41] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [41:08, 17:26](1979 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:10, 18:00](2148 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:06, 08:20](1246 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [43:05, 19:28](1876 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:13, 16:50] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [40:45, 16:56](1966 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 06:25] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [32:10, 23:16](1931 MB) - -PASS -- COMPILE 's2swa_intel' [14:13, 13:09] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [23:12, 05:51](3338 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [32:30, 05:58](3333 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:16, 03:34](3255 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [24:09, 05:54](3378 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:15, 03:30](3282 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [23:13, 05:29](3635 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [24:08, 05:50](3335 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [25:09, 04:47](3222 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [25:19, 05:51](3356 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [37:17, 10:15](3537 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:40, 06:23](3631 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [41:40, 09:31](4298 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:41, 06:03](4378 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [23:10, 05:26](3304 MB) - -PASS -- COMPILE 's2sw_intel' [13:14, 12:13] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [16:53, 04:53](2001 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [20:00, 04:22](2061 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:24] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [20:16, 08:38](3391 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:11, 06:18] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [15:03, 05:52](1965 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:13, 12:01] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [15:01, 04:19](2058 MB) - -PASS -- COMPILE 's2s_intel' [13:13, 11:30] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:48, 09:05](3051 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [08:48, 02:41](3042 MB) -PASS -- TEST 'cpld_restart_c48_intel' [14:39, 01:33](2491 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:11, 16:35] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [22:08, 05:31](3333 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:12] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [34:02, 17:30](1999 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:07, 08:21](1267 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:00, 20:00](1923 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 05:40] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [52:12, 26:05](1971 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:13, 11:07] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [16:26, 03:21](699 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [14:39, 02:54](1601 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:42, 03:01](1605 MB) -PASS -- TEST 'control_latlon_intel' [08:33, 02:55](1593 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:49, 02:58](1600 MB) -PASS -- TEST 'control_c48_intel' [12:45, 07:34](1722 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:29, 06:28](846 MB) -PASS -- TEST 'control_c192_intel' [13:57, 10:48](1740 MB) -PASS -- TEST 'control_c384_intel' [14:13, 10:39](1958 MB) -PASS -- TEST 'control_c384gdas_intel' [11:50, 08:01](1378 MB) -PASS -- TEST 'control_stochy_intel' [03:21, 01:40](659 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:22, 01:00](499 MB) -PASS -- TEST 'control_lndp_intel' [02:23, 01:36](662 MB) -PASS -- TEST 'control_iovr4_intel' [03:23, 02:30](656 MB) -PASS -- TEST 'control_iovr5_intel' [03:22, 02:30](657 MB) -PASS -- TEST 'control_p8_intel' [04:54, 03:07](1885 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:00, 03:11](1877 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:51, 03:02](1887 MB) -PASS -- TEST 'control_restart_p8_intel' [03:48, 01:46](1124 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:51, 03:02](1881 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:49, 01:45](1167 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:47, 03:13](1873 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:47, 02:56](1975 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:43, 05:25](1886 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:54, 04:06](1949 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:52, 03:10](1891 MB) -PASS -- TEST 'merra2_thompson_intel' [04:46, 03:29](1888 MB) -PASS -- TEST 'regional_control_intel' [06:32, 05:33](1087 MB) -PASS -- TEST 'regional_restart_intel' [03:31, 02:50](1090 MB) -PASS -- TEST 'regional_decomp_intel' [06:33, 05:48](1081 MB) -PASS -- TEST 'regional_2threads_intel' [04:37, 03:30](1090 MB) -PASS -- TEST 'regional_noquilt_intel' [06:37, 05:17](1392 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:39, 05:19](1095 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:32, 05:22](1099 MB) -PASS -- TEST 'regional_wofs_intel' [07:34, 06:52](1906 MB) - -PASS -- COMPILE 'rrfs_intel' [13:11, 10:02] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [23:39, 07:49](1112 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [20:06, 04:12](1258 MB) -PASS -- TEST 'rap_decomp_intel' [23:39, 08:11](1033 MB) -PASS -- TEST 'rap_2threads_intel' [22:45, 07:21](1170 MB) -PASS -- TEST 'rap_restart_intel' [04:46, 04:07](1098 MB) -PASS -- TEST 'rap_sfcdiff_intel' [22:43, 07:47](1104 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [23:40, 08:11](1040 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:44, 05:55](1136 MB) -PASS -- TEST 'hrrr_control_intel' [19:41, 04:01](1042 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [17:52, 04:10](1026 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:43, 03:47](1104 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:30, 02:15](994 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:52, 07:42](1095 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:29, 09:21](1991 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:27, 09:10](2073 MB) - -PASS -- COMPILE 'csawmg_intel' [14:11, 09:54] -PASS -- TEST 'control_csawmg_intel' [07:37, 06:09](1019 MB) -PASS -- TEST 'control_ras_intel' [04:21, 03:17](748 MB) - -PASS -- COMPILE 'csawmg_gnu' [18:13, 04:20] -PASS -- TEST 'control_csawmg_gnu' [09:37, 08:30](742 MB) - -PASS -- COMPILE 'wam_intel' [20:14, 09:50] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:53, 11:13](1675 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [24:15, 10:11] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:54, 02:48](1889 MB) -PASS -- TEST 'regional_control_faster_intel' [05:36, 04:50](1084 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [23:12, 07:28] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:42, 02:40](1629 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:42, 02:40](1631 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:22, 03:05](833 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:22, 02:52](830 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:33, 04:27](1142 MB) -PASS -- TEST 'control_ras_debug_intel' [03:23, 02:51](831 MB) -PASS -- TEST 'control_diag_debug_intel' [03:44, 02:46](1680 MB) -PASS -- TEST 'control_debug_p8_intel' [03:39, 03:05](1915 MB) -PASS -- TEST 'regional_debug_intel' [18:35, 17:57](1091 MB) -PASS -- TEST 'rap_control_debug_intel' [06:23, 05:09](1217 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:24, 05:01](1214 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:22, 04:59](1221 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:22, 05:04](1216 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:24, 05:09](1218 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:36, 05:17](1300 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:22, 05:13](1216 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:21, 05:06](1222 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:22, 05:01](1223 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:23, 05:06](1217 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:26, 05:01](1213 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:21, 04:59](1212 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:21, 08:14](1213 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:22, 05:00](1214 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:23, 06:10](1215 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:25, 05:04](1219 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:39, 08:53](1222 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [20:12, 04:29] -PASS -- TEST 'control_csawmg_debug_gnu' [03:32, 02:19](724 MB) - -PASS -- COMPILE 'wam_debug_intel' [17:12, 04:46] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:49, 13:43](1697 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [23:12, 09:46] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:02, 03:53](1121 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:31, 06:26](1068 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:36, 03:23](988 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:37, 06:08](1088 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:30, 03:08](963 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:29, 03:36](935 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:46, 04:54](1037 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:51](931 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [24:11, 09:56] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:52, 02:08](1195 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:45, 00:53](1111 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:44, 01:15](1101 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [24:12, 09:58] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:37, 04:10](985 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [18:13, 04:42] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:21, 05:03](1096 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:21, 04:52](1105 MB) -PASS -- TEST 'conus13km_debug_intel' [16:51, 15:11](1240 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:51, 15:15](944 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:43, 08:26](1168 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:43, 15:08](1315 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:11, 04:31] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:23, 05:01](1141 MB) - -PASS -- COMPILE 'hafsw_intel' [19:12, 11:31] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:14, 04:55](717 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:27, 05:54](1093 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:18, 06:52](808 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:15, 13:36](856 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:30, 15:08](869 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:55, 05:27](487 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:19, 06:35](507 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [08:45, 02:41](375 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:03, 07:08](483 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:47, 03:40](519 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:51, 03:28](523 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:54, 04:04](585 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:30, 01:14](404 MB) -PASS -- TEST 'gnv1_nested_intel' [11:34, 04:04](1726 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:12, 05:09] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:51, 12:42](589 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:12, 11:07] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:57, 08:36](627 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:04, 08:35](734 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 11:22] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:59, 06:22](736 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:12, 10:40] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [17:19, 06:27](814 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [16:22, 06:27](806 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:57, 16:02](1218 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:57] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 02:45](1175 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [06:20, 01:37](1126 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:38](1034 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:20, 02:40](1023 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:19, 02:36](1028 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:19, 02:39](1148 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [07:19, 02:44](1162 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:22, 02:32](1022 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:23, 06:09](1073 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:13, 06:02](1054 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [07:16, 02:43](1163 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:18, 03:49](2473 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:20, 03:53](2464 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:40] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:20](1089 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 07:15] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:38](1146 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:32] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 00:47](260 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 00:49](330 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:32](329 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:12, 10:35] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:58, 03:56](1975 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:12, 10:18] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:58, 03:33](1956 MB) - -PASS -- COMPILE 'atml_intel' [11:12, 10:44] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:58, 04:16](1871 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:00, 04:14](1862 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:45, 02:23](1100 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:12, 05:51] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:54, 05:46](1902 MB) - -PASS -- COMPILE 'atmw_intel' [11:12, 10:53] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:47, 01:50](1923 MB) - -PASS -- COMPILE 'atmaero_intel' [11:12, 10:12] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:58, 04:11](3208 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:52, 04:54](3104 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:42, 04:54](3114 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:11, 04:39] ( 884 warnings 6 remarks ) - -PASS -- COMPILE 'atm_gnu' [05:11, 04:39] -PASS -- TEST 'control_c48_gnu' [12:41, 11:17](1513 MB) -PASS -- TEST 'control_stochy_gnu' [04:20, 03:27](472 MB) -PASS -- TEST 'control_ras_gnu' [05:21, 04:47](500 MB) -PASS -- TEST 'control_p8_gnu' [05:54, 04:48](1455 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:48, 04:38](1455 MB) -PASS -- TEST 'control_flake_gnu' [11:24, 10:15](539 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:12, 04:34] -PASS -- TEST 'rap_control_gnu' [11:37, 10:47](844 MB) -PASS -- TEST 'rap_decomp_gnu' [11:35, 10:58](844 MB) -PASS -- TEST 'rap_2threads_gnu' [10:42, 09:56](931 MB) -PASS -- TEST 'rap_restart_gnu' [06:44, 05:33](575 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:41, 10:52](810 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:38, 11:06](807 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:43, 08:12](583 MB) -PASS -- TEST 'hrrr_control_gnu' [06:38, 05:37](814 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:33, 05:39](798 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:29, 05:01](908 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:31, 05:37](844 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:28, 02:54](563 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:26, 02:53](655 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:44, 10:35](809 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:12, 06:23] -PASS -- TEST 'control_diag_debug_gnu' [02:48, 01:40](1275 MB) -PASS -- TEST 'regional_debug_gnu' [12:40, 11:53](758 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:24, 02:36](827 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:23, 02:36](824 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:21, 02:33](831 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:22, 02:39](829 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:36, 02:51](909 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:21, 04:05](828 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:21, 02:37](826 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:20, 03:03](818 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:18, 01:35](457 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:19, 01:45](450 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:37, 01:53](1433 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:21, 02:38](828 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:20, 02:51](832 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:40, 04:19](833 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:34] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:08] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:31, 09:28](711 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:36, 04:54](706 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:33, 08:29](758 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:30, 04:30](752 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:28, 05:04](703 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:33, 07:01](554 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:26, 02:34](539 MB) -PASS -- TEST 'conus13km_control_gnu' [03:57, 03:09](874 MB) -PASS -- TEST 'conus13km_2threads_gnu' [06:49, 05:58](879 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:48, 01:56](567 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:11, 09:43] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:36, 05:44](731 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:11, 06:30] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:23, 02:33](717 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:22, 02:30](714 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:47, 06:53](888 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:41, 06:59](583 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:39, 07:30](889 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:40, 07:07](958 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:11, 06:28] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:22, 02:36](747 MB) - -PASS -- COMPILE 's2swa_gnu' [17:12, 16:29] - -PASS -- COMPILE 's2s_gnu' [16:13, 15:53] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [10:03, 07:17](1529 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:09] - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:14, 15:58] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [20:54, 19:58](1462 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 02:55] - -PASS -- COMPILE 'datm_cdeps_gnu' [17:13, 15:37] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:17, 02:58](698 MB) +PASS -- COMPILE 's2swa_32bit_intel' [21:12, 18:48] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:08, 07:25](3304 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:12, 17:13] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:00, 17:54](1936 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:21, 18:45](2141 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:13, 08:35](1237 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:59, 19:52](1855 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:12, 16:53] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:48, 17:24](1967 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:13, 12:55] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:03, 26:07](1930 MB) + +PASS -- COMPILE 's2swa_intel' [23:12, 19:56] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:23, 06:15](3360 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:32, 06:58](3329 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:25, 03:58](3264 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:19, 06:38](3342 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:40, 03:42](3284 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [12:16, 08:44](3651 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:16, 06:33](3332 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:23, 05:43](3201 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:34, 07:26](3322 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:16, 11:30](3543 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:04, 06:56](3623 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [21:31, 10:48](4309 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:52, 06:35](4393 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:22, 06:04](3331 MB) + +PASS -- COMPILE 's2sw_intel' [21:12, 19:27] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:16, 05:42](1984 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:15, 05:15](2058 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:11, 06:51] ( 1448 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:07, 09:01](3399 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:12, 05:56] ( 1448 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:07, 06:20](2011 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [21:14, 18:40] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:08, 04:48](2054 MB) + +PASS -- COMPILE 's2s_intel' [20:12, 17:49] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:55, 10:09](3053 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:46, 03:22](3043 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:51, 02:00](2477 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:12, 16:54] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:17, 06:07](3343 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:12, 16:54] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:10, 18:28](2000 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:29, 08:41](1262 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:09, 20:36](1923 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:12, 05:46] ( 1558 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:03, 26:34](1945 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:12, 10:46] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:26, 04:11](702 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:48, 03:22](1589 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:51, 03:24](1599 MB) +PASS -- TEST 'control_latlon_intel' [05:44, 03:20](1604 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:51, 03:21](1602 MB) +PASS -- TEST 'control_c48_intel' [09:50, 07:40](1727 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:29, 06:33](859 MB) +PASS -- TEST 'control_c192_intel' [14:04, 11:11](1747 MB) +PASS -- TEST 'control_c384_intel' [15:07, 11:42](1961 MB) +PASS -- TEST 'control_c384gdas_intel' [13:50, 09:03](1372 MB) +PASS -- TEST 'control_stochy_intel' [03:25, 01:53](651 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:33, 01:06](512 MB) +PASS -- TEST 'control_lndp_intel' [03:26, 01:42](654 MB) +PASS -- TEST 'control_iovr4_intel' [04:23, 02:48](657 MB) +PASS -- TEST 'control_iovr5_intel' [05:23, 03:22](658 MB) +PASS -- TEST 'control_p8_intel' [05:55, 03:23](1861 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:02, 03:21](1894 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:58, 03:10](1896 MB) +PASS -- TEST 'control_restart_p8_intel' [03:46, 01:49](1104 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:54, 03:14](1869 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:59, 01:42](1142 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:49, 03:17](1852 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:49, 02:58](1982 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:40, 05:37](1887 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:51, 04:08](1952 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:52, 03:13](1907 MB) +PASS -- TEST 'merra2_thompson_intel' [05:51, 03:28](1895 MB) +PASS -- TEST 'regional_control_intel' [07:37, 05:29](1088 MB) +PASS -- TEST 'regional_restart_intel' [04:37, 02:59](1087 MB) +PASS -- TEST 'regional_decomp_intel' [07:34, 05:59](1088 MB) +PASS -- TEST 'regional_2threads_intel' [05:34, 03:37](1080 MB) +PASS -- TEST 'regional_noquilt_intel' [07:41, 05:23](1394 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:41, 05:22](1097 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:36, 05:30](1086 MB) +PASS -- TEST 'regional_wofs_intel' [08:35, 06:58](1905 MB) + +PASS -- COMPILE 'rrfs_intel' [12:11, 10:14] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:45, 08:00](1108 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:19, 04:16](1250 MB) +PASS -- TEST 'rap_decomp_intel' [10:37, 08:33](1045 MB) +PASS -- TEST 'rap_2threads_intel' [09:33, 07:34](1169 MB) +PASS -- TEST 'rap_restart_intel' [06:53, 04:14](1089 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:40, 08:00](1095 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:39, 08:15](1037 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:51, 06:25](1121 MB) +PASS -- TEST 'hrrr_control_intel' [06:46, 04:04](1038 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:37, 04:16](1033 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:36, 03:45](1104 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:35, 02:15](998 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:43, 08:12](1089 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:27, 09:35](1967 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:27, 09:14](2069 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 09:50] +PASS -- TEST 'control_csawmg_intel' [08:39, 06:18](1020 MB) +PASS -- TEST 'control_ras_intel' [05:22, 03:24](734 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:11, 04:24] +PASS -- TEST 'control_csawmg_gnu' [11:37, 09:36](755 MB) + +PASS -- COMPILE 'wam_intel' [13:12, 11:27] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:51, 11:34](1678 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:12, 11:17] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:58, 02:47](1878 MB) +PASS -- TEST 'regional_control_faster_intel' [06:38, 05:04](1080 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:12, 07:52] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:44, 02:45](1614 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:44, 02:39](1626 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:21, 03:19](819 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:20, 02:48](832 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:34, 04:38](1135 MB) +PASS -- TEST 'control_ras_debug_intel' [05:24, 03:10](838 MB) +PASS -- TEST 'control_diag_debug_intel' [04:48, 02:56](1680 MB) +PASS -- TEST 'control_debug_p8_intel' [05:42, 03:14](1919 MB) +PASS -- TEST 'regional_debug_intel' [20:40, 18:20](1096 MB) +PASS -- TEST 'rap_control_debug_intel' [06:24, 04:59](1222 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:26, 04:55](1209 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:24, 05:14](1217 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:24, 05:02](1215 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:24, 05:01](1218 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:42, 05:18](1294 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:24, 05:33](1211 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:21, 05:07](1216 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:25, 05:11](1216 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 05:13](1218 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:58](1216 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:28, 05:45](1207 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:22, 08:21](1206 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:24, 05:07](1205 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:23, 06:44](1210 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:25, 05:00](1219 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:44, 08:42](1220 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [09:12, 07:23] +PASS -- TEST 'control_csawmg_debug_gnu' [04:35, 02:21](725 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:12, 06:10] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:47, 13:43](1685 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 10:46] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:07, 04:31](1119 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:41, 07:01](1066 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:40, 03:32](982 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:40, 06:36](1082 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:34, 03:26](967 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:35, 04:03](936 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:41, 05:17](1036 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:55](932 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:11, 10:51] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:00, 02:21](1193 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:46, 01:01](1116 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:17](1102 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:12, 10:22] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:43, 04:25](982 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:11] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:25, 05:01](1097 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 05:06](1087 MB) +PASS -- TEST 'conus13km_debug_intel' [16:56, 15:00](1236 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:52, 14:56](923 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:47, 08:44](1165 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:45, 16:51](1278 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:11, 05:57] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:27, 05:06](1140 MB) + +PASS -- COMPILE 'hafsw_intel' [14:11, 12:31] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:25, 05:21](725 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:34, 07:05](1106 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:32, 07:26](848 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:18, 15:06](836 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:31, 16:12](872 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:12, 07:00](493 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:28, 07:42](501 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:53, 02:54](370 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:31, 08:40](471 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:54, 05:01](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:56, 04:46](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:53, 05:34](573 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:19](401 MB) +PASS -- TEST 'gnv1_nested_intel' [07:36, 04:31](1753 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:10, 05:46] ( 1465 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:51, 13:20](596 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:11, 12:05] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:02, 09:42](616 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:08, 09:37](700 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:55] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:37, 07:00](726 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 11:02] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:19, 07:34](810 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:19, 07:21](797 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:06, 16:53](1217 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:44] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 02:46](1171 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 01:41](1113 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:19, 02:42](1033 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 02:56](1028 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:50](1024 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:46](1161 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:19, 02:41](1166 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:33](1033 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:31, 06:20](1074 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:24, 06:36](1059 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:49](1170 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:22, 03:53](2503 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:22, 03:59](2485 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:28] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:21, 06:24](1097 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:44] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:42](1159 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:24] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:51](260 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:54](327 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:35](321 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 10:40] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:10, 03:58](1963 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 10:22] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:00, 03:51](1957 MB) + +PASS -- COMPILE 'atml_intel' [13:12, 11:15] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:09, 04:39](1864 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:01, 04:39](1868 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:29, 02:23](1096 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 05:49] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:57, 06:05](1885 MB) + +PASS -- COMPILE 'atmw_intel' [12:12, 10:53] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:50, 02:00](1913 MB) + +PASS -- COMPILE 'atmaero_intel' [12:11, 11:07] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:58, 04:21](3204 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:58, 04:59](3095 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:46, 04:59](3109 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:55] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [06:13, 04:32] +PASS -- TEST 'control_c48_gnu' [13:39, 11:18](1511 MB) +PASS -- TEST 'control_stochy_gnu' [05:21, 03:27](497 MB) +PASS -- TEST 'control_ras_gnu' [06:22, 04:52](502 MB) +PASS -- TEST 'control_p8_gnu' [06:56, 04:52](1454 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:51, 04:47](1457 MB) +PASS -- TEST 'control_flake_gnu' [12:24, 10:40](539 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:12, 04:36] +PASS -- TEST 'rap_control_gnu' [12:39, 11:02](813 MB) +PASS -- TEST 'rap_decomp_gnu' [14:34, 12:48](811 MB) +PASS -- TEST 'rap_2threads_gnu' [13:33, 11:57](924 MB) +PASS -- TEST 'rap_restart_gnu' [07:43, 05:33](579 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [14:34, 12:28](818 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:37, 11:49](842 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:48, 08:11](582 MB) +PASS -- TEST 'hrrr_control_gnu' [07:41, 05:41](818 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:45, 05:42](801 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:44, 05:06](915 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:48, 05:54](847 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [05:47, 03:09](566 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [07:51, 02:56](659 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:45, 10:44](809 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:39] +PASS -- TEST 'control_diag_debug_gnu' [03:44, 01:34](1275 MB) +PASS -- TEST 'regional_debug_gnu' [15:36, 13:38](761 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:25, 02:38](830 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:25, 02:37](823 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:24, 02:37](827 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:22, 02:47](826 MB) +PASS -- TEST 'rap_diag_debug_gnu' [05:14, 02:52](910 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:24, 04:45](855 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:28, 02:40](825 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:30, 02:45](819 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:20, 01:33](460 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:24, 01:42](452 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:43, 01:50](1426 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:26, 02:52](827 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [05:21, 03:30](826 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:37, 04:58](832 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:41] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:12, 04:09] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [12:29, 10:51](709 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:39, 05:44](706 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:37, 08:57](752 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:38, 05:47](743 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:32, 06:22](707 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [11:40, 07:22](556 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [09:28, 02:39](540 MB) +PASS -- TEST 'conus13km_control_gnu' [06:57, 03:56](876 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:44, 05:50](878 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [09:45, 02:00](558 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:12, 09:46] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:41, 06:05](732 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 06:43] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:25, 03:13](716 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:25, 03:38](717 MB) +PASS -- TEST 'conus13km_debug_gnu' [09:54, 07:15](885 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [11:50, 07:35](573 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [10:45, 08:06](898 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [11:46, 07:01](959 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:49] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [07:25, 02:37](736 MB) + +PASS -- COMPILE 's2swa_gnu' [18:12, 16:49] + +PASS -- COMPILE 's2s_gnu' [17:12, 16:03] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:08, 06:53](1519 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [05:12, 03:31] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:13, 15:58] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [30:00, 25:19](1461 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:12, 03:21] + +PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 15:32] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:19, 03:00](691 MB) SYNOPSIS: -Starting Date/Time: 20240808 21:45:57 -Ending Date/Time: 20240808 23:40:22 -Total Time: 01h:54m:44s +Starting Date/Time: 20240905 16:15:04 +Ending Date/Time: 20240905 18:13:40 +Total Time: 01h:59m:34s Compiles Completed: 57/57 Tests Completed: 243/243 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 48ebe99b39..5b0445a2c8 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,27 +1,27 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -8cb23af867d56961352ff5fab97656c3a4c6b936 +4dee8d49d4f976f5af7b0fe91cab060c7814eac0 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - fd590042f958cae20968eb2221bdbbcedd931bea FV3 (remotes/origin/skeb_hydrostatic) - d92b739ed0c7d7d676c5906a66d626cb3178c817 FV3/atmos_cubed_sphere (remotes/origin/skeb_hydrostatic) + 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) + ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) + 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) + 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) + e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,376 +35,375 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_3225805 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240904 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_1802002 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [12:10, 11:10] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:50, 07:35](2128 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:10, 16:56] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:58, 14:11](2001 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [29:44, 15:42](2301 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [20:37, 07:19](1316 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:55, 15:28](1918 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:10, 15:29] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:30, 14:19](1996 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 06:45] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:00, 21:32](1982 MB) - -PASS -- COMPILE 's2swa_intel' [15:10, 14:11] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:49, 08:47](2175 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:56, 08:25](2179 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:05, 05:08](1971 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:54, 09:03](2201 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:13, 04:31](1734 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [18:50, 09:49](2542 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:53, 08:40](2184 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:51, 07:08](2094 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:56, 08:43](2171 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:42, 16:13](2988 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:07, 07:14](2920 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:24, 11:54](3835 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:27, 07:00](3625 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:47, 06:18](2157 MB) - -PASS -- COMPILE 's2sw_intel' [10:10, 10:08] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:52, 07:49](2017 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:54, 04:27](2087 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:44] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [09:56, 08:10](2211 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:10, 04:58] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:56, 05:21](2049 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:10, 09:18] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:53, 04:21](2088 MB) - -PASS -- COMPILE 's2s_intel' [10:10, 09:51] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:40, 07:41](3056 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:37, 02:10](3036 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:31, 01:16](2466 MB) - -PASS -- COMPILE 's2swa_faster_intel' [13:10, 12:12] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [15:59, 08:23](2184 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:10, 20:37] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:49, 14:38](2029 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:58, 07:51](1401 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:48, 16:16](1949 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 06:00] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:47, 23:07](2012 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:10, 08:52] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [08:23, 02:55](720 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [08:32, 02:29](1603 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:35, 02:35](1628 MB) -PASS -- TEST 'control_latlon_intel' [08:29, 02:29](1608 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:37, 02:36](1604 MB) -PASS -- TEST 'control_c48_intel' [12:33, 06:54](1713 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:26, 05:51](841 MB) -PASS -- TEST 'control_c192_intel' [15:44, 09:20](1749 MB) -PASS -- TEST 'control_c384_intel' [22:42, 10:19](2008 MB) -PASS -- TEST 'control_c384gdas_intel' [18:47, 07:23](1493 MB) -PASS -- TEST 'control_stochy_intel' [12:19, 01:28](663 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:26, 00:53](540 MB) -PASS -- TEST 'control_lndp_intel' [12:18, 01:25](669 MB) -PASS -- TEST 'control_iovr4_intel' [11:19, 02:12](661 MB) -PASS -- TEST 'control_iovr5_intel' [10:21, 02:11](662 MB) -PASS -- TEST 'control_p8_intel' [11:45, 03:37](1905 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:57, 03:22](1914 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:56, 03:30](1901 MB) -PASS -- TEST 'control_restart_p8_intel' [02:40, 01:39](1148 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:52, 03:25](1890 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:57, 02:23](1220 MB) -PASS -- TEST 'control_decomp_p8_intel' [08:49, 03:43](1886 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:43, 03:17](1973 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:29, 05:28](1903 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:56, 03:46](1964 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:03, 02:40](1901 MB) -PASS -- TEST 'merra2_thompson_intel' [04:55, 03:03](1894 MB) -PASS -- TEST 'regional_control_intel' [05:25, 04:38](1203 MB) -PASS -- TEST 'regional_restart_intel' [09:25, 03:46](1168 MB) -PASS -- TEST 'regional_decomp_intel' [06:24, 05:07](1187 MB) -PASS -- TEST 'regional_2threads_intel' [04:27, 03:01](1151 MB) -PASS -- TEST 'regional_noquilt_intel' [07:35, 05:15](1514 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:30, 04:36](1201 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:27, 05:07](1198 MB) -PASS -- TEST 'regional_wofs_intel' [09:30, 08:32](2078 MB) - -PASS -- COMPILE 'rrfs_intel' [09:10, 08:37] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:58, 07:25](1236 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:05, 04:07](1348 MB) -PASS -- TEST 'rap_decomp_intel' [08:40, 07:59](1175 MB) -PASS -- TEST 'rap_2threads_intel' [09:51, 07:16](1369 MB) -PASS -- TEST 'rap_restart_intel' [15:07, 03:55](1159 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:49, 07:37](1225 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:35, 08:06](1159 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [13:00, 05:38](1208 MB) -PASS -- TEST 'hrrr_control_intel' [06:59, 03:50](1099 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:40, 03:58](1049 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [12:44, 03:36](1116 MB) -PASS -- TEST 'hrrr_control_restart_intel' [12:28, 02:15](1040 MB) -PASS -- TEST 'rrfs_v1beta_intel' [15:54, 06:50](1223 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [17:21, 08:15](2019 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [16:23, 07:52](2169 MB) - -PASS -- COMPILE 'csawmg_intel' [09:10, 08:21] -PASS -- TEST 'control_csawmg_intel' [16:27, 06:31](1062 MB) -PASS -- TEST 'control_ras_intel' [14:19, 02:57](851 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:10, 04:01] -PASS -- TEST 'control_csawmg_gnu' [16:31, 08:00](1068 MB) - -PASS -- COMPILE 'wam_intel' [12:10, 11:16] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [21:35, 09:57](1663 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:10, 08:16] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [13:52, 03:10](1908 MB) -PASS -- TEST 'regional_control_faster_intel' [10:25, 05:10](1194 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:10, 06:07] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [12:29, 02:26](1644 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [14:33, 02:13](1639 MB) -PASS -- TEST 'control_stochy_debug_intel' [14:23, 02:51](844 MB) -PASS -- TEST 'control_lndp_debug_intel' [14:22, 02:23](842 MB) -PASS -- TEST 'control_csawmg_debug_intel' [16:29, 04:40](1145 MB) -PASS -- TEST 'control_ras_debug_intel' [14:27, 02:31](850 MB) -PASS -- TEST 'control_diag_debug_intel' [14:35, 02:22](1699 MB) -PASS -- TEST 'control_debug_p8_intel' [13:31, 03:20](1940 MB) -PASS -- TEST 'regional_debug_intel' [26:30, 16:16](1132 MB) -PASS -- TEST 'rap_control_debug_intel' [13:20, 04:14](1227 MB) -PASS -- TEST 'hrrr_control_debug_intel' [12:24, 04:20](1221 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [11:17, 04:15](1230 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [10:18, 04:15](1224 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:21, 04:14](1232 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:27, 04:29](1312 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:17, 04:26](1235 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:17, 04:25](1230 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:17, 04:23](1237 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:17, 04:28](1236 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:17, 04:20](1230 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:23, 04:11](1241 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:19, 07:34](1230 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:17, 04:31](1221 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:23, 05:18](1232 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:17, 04:43](1238 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:50, 07:18](1238 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [07:10, 04:12] -PASS -- TEST 'control_csawmg_debug_gnu' [02:28, 02:03](1045 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:10, 04:10] ( 839 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:10, 07:53] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:43, 03:16](1234 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:37, 05:25](1161 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:02, 02:53](1038 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:35, 05:02](1292 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:42, 02:45](1041 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:38, 03:03](974 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [24:51, 04:04](1094 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [22:28, 01:35](961 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:10, 08:03] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:38, 01:45](1282 MB) -PASS -- TEST 'conus13km_2threads_intel' [16:34, 00:52](1206 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [16:36, 01:06](1148 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:10, 08:10] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:35, 04:04](1080 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:10, 03:46] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:18, 04:05](1106 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:18, 03:58](1106 MB) -PASS -- TEST 'conus13km_debug_intel' [13:33, 12:32](1328 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [13:30, 12:44](997 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:28, 07:16](1241 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:35, 12:28](1409 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 03:54] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:20, 04:20](1171 MB) - -PASS -- COMPILE 'hafsw_intel' [12:11, 10:53] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:03, 05:26](854 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:21, 05:07](1260 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:20, 06:36](950 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [29:04, 14:12](975 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:10, 15:17](1117 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [21:47, 05:33](596 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [23:16, 07:01](609 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [21:38, 02:41](431 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [26:53, 07:38](547 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [24:38, 03:52](606 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [23:42, 03:42](605 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [26:42, 05:00](666 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [21:28, 01:15](447 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:10, 03:57] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [32:51, 11:58](640 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:11, 10:15] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [36:47, 16:11](738 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [36:48, 16:26](894 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 10:14] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [29:50, 09:27](809 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:11, 15:04] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [26:05, 05:44](931 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [29:03, 05:56](916 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [37:47, 16:30](1348 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:10, 05:10] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [22:18, 02:11](1169 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [16:20, 01:21](1096 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [22:16, 02:06](1025 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [25:18, 02:08](1013 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [24:16, 02:09](1022 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [26:16, 02:12](1159 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [30:18, 02:16](1162 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [29:19, 02:09](1016 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [27:52, 04:59](1167 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [28:52, 04:53](1151 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [24:21, 02:13](1160 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [10:15, 03:05](2406 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [22:17, 03:18](2405 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:48] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [24:16, 05:15](1067 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:01] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [21:18, 02:15](1153 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:45] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [18:27, 00:57](338 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [19:22, 00:52](574 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:24, 00:35](576 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:10, 09:03] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [22:46, 04:06](2015 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:11, 08:21] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [21:46, 04:15](1982 MB) - -PASS -- COMPILE 'atml_intel' [09:11, 08:41] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [22:53, 06:25](1890 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [21:56, 06:37](1897 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:34, 03:44](1154 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:11, 04:42] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [20:51, 06:02](1914 MB) - -PASS -- COMPILE 'atmw_intel' [10:11, 09:34] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [17:47, 02:35](1939 MB) - -PASS -- COMPILE 'atmaero_intel' [09:10, 08:42] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [19:46, 04:38](2025 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [19:43, 04:24](1822 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [19:40, 04:47](1820 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:10, 03:48] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [30:31, 17:12](4607 MB) - -PASS -- COMPILE 'atm_gnu' [10:10, 05:37] -PASS -- TEST 'control_c48_gnu' [20:37, 09:27](1531 MB) -PASS -- TEST 'control_stochy_gnu' [12:21, 02:31](728 MB) -PASS -- TEST 'control_ras_gnu' [13:19, 03:50](731 MB) -PASS -- TEST 'control_p8_gnu' [13:44, 04:44](1750 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [12:40, 04:30](1708 MB) -PASS -- TEST 'control_flake_gnu' [12:20, 04:50](806 MB) - -PASS -- COMPILE 'rrfs_gnu' [10:10, 05:48] -PASS -- TEST 'rap_control_gnu' [17:47, 08:33](1085 MB) -PASS -- TEST 'rap_decomp_gnu' [17:35, 08:53](1085 MB) -PASS -- TEST 'rap_2threads_gnu' [16:47, 07:39](1138 MB) -PASS -- TEST 'rap_restart_gnu' [06:57, 04:28](886 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [15:48, 08:18](1084 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [17:21, 08:36](1081 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:53, 06:11](884 MB) -PASS -- TEST 'hrrr_control_gnu' [11:32, 04:17](1069 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [11:32, 04:24](1137 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [10:45, 03:54](1015 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [10:31, 04:14](1070 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [07:21, 02:53](883 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [07:21, 02:46](933 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [15:09, 08:02](1087 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [12:10, 07:35] -PASS -- TEST 'control_diag_debug_gnu' [07:40, 01:22](1626 MB) -PASS -- TEST 'regional_debug_gnu' [14:26, 08:34](1133 MB) -PASS -- TEST 'rap_control_debug_gnu' [07:19, 02:20](1097 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [07:20, 02:14](1088 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [08:21, 02:09](1097 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [09:17, 02:15](1095 MB) -PASS -- TEST 'rap_diag_debug_gnu' [09:26, 02:19](1271 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [12:21, 04:25](1098 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [10:32, 02:09](1101 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [10:23, 02:09](1092 MB) -PASS -- TEST 'control_ras_debug_gnu' [08:19, 01:13](727 MB) -PASS -- TEST 'control_stochy_debug_gnu' [08:17, 01:27](724 MB) -PASS -- TEST 'control_debug_p8_gnu' [10:34, 02:58](1699 MB) -PASS -- TEST 'rap_flake_debug_gnu' [09:37, 02:10](1097 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [10:18, 03:06](1099 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [11:52, 04:02](1103 MB) - -PASS -- COMPILE 'wam_debug_gnu' [08:10, 04:13] -PASS -- TEST 'control_wam_debug_gnu' [13:35, 05:55](1561 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:10, 04:05] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [13:32, 07:59](963 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [09:40, 04:42](951 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [11:44, 07:25](1000 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [08:59, 04:17](889 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [09:37, 04:41](948 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:57, 05:54](865 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:30, 02:06](875 MB) -PASS -- TEST 'conus13km_control_gnu' [07:40, 03:29](1268 MB) -PASS -- TEST 'conus13km_2threads_gnu' [02:34, 01:10](1176 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:32, 01:38](933 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:11, 08:48] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:32, 05:23](987 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 06:18] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:18, 02:47](978 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:20, 02:38](969 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:35, 05:52](1286 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:31, 06:10](958 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:29, 04:26](1191 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:27, 06:09](1351 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [11:10, 06:46] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:19, 02:20](1005 MB) - -PASS -- COMPILE 's2swa_gnu' [24:10, 19:14] - -PASS -- COMPILE 's2s_gnu' [20:11, 15:52] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:57, 06:07](3090 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [06:10, 05:08] - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:10, 16:44] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [30:53, 27:07](3046 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [09:10, 04:47] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:53, 12:39](2901 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [21:10, 17:15] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [07:17, 02:17](769 MB) +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_intel' [11:01, 11:01] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:24, 07:39](2123 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:07, 17:06] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [14:11, 13:26](2002 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:01, 14:08](2318 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [07:26, 06:34](1303 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:48, 15:02](1915 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [15:59, 15:59] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [13:34, 13:11](1991 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:19, 05:18] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:58, 22:02](1976 MB) + +PASS -- COMPILE 's2swa_intel' [11:00, 11:00] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:25, 07:37](2184 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:31, 07:51](2178 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:02, 04:22](1953 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:27, 07:50](2198 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:21, 04:24](1733 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:23, 08:52](2545 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:21, 07:42](2162 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:13, 06:40](2083 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:12, 07:38](2180 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:55, 15:31](2974 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [07:05, 05:54](2921 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [14:43, 09:47](3809 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:11, 06:09](3632 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [05:41, 05:09](2154 MB) + +PASS -- COMPILE 's2sw_intel' [10:30, 10:29] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:46, 07:15](2024 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:57, 04:11](2103 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:51, 05:51] ( 1448 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [09:16, 08:27](2212 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:33, 05:33] ( 1448 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:38, 05:59](2039 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [09:57, 09:57] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:44, 04:02](2085 MB) + +PASS -- COMPILE 's2s_intel' [09:53, 09:53] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:23, 06:56](3064 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:28, 02:00](3015 MB) +PASS -- TEST 'cpld_restart_c48_intel' [01:39, 01:09](2493 MB) + +PASS -- COMPILE 's2swa_faster_intel' [11:57, 11:57] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:16, 07:32](2178 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:07, 16:07] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:38, 13:52](2049 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:43, 06:48](1393 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:23, 15:58](1967 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:16, 04:16] ( 1558 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:06, 22:35](2013 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:44, 11:44] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:50, 03:38](724 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:30, 03:07](1616 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:39, 03:14](1617 MB) +PASS -- TEST 'control_latlon_intel' [03:38, 03:03](1612 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:42, 03:14](1613 MB) +PASS -- TEST 'control_c48_intel' [07:30, 07:03](1699 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:11, 05:59](847 MB) +PASS -- TEST 'control_c192_intel' [12:37, 12:10](1764 MB) +PASS -- TEST 'control_c384_intel' [13:56, 12:46](1998 MB) +PASS -- TEST 'control_c384gdas_intel' [11:30, 09:55](1507 MB) +PASS -- TEST 'control_stochy_intel' [01:52, 01:46](675 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:21, 01:09](547 MB) +PASS -- TEST 'control_lndp_intel' [01:56, 01:46](665 MB) +PASS -- TEST 'control_iovr4_intel' [03:02, 02:46](667 MB) +PASS -- TEST 'control_iovr5_intel' [02:46, 02:37](668 MB) +PASS -- TEST 'control_p8_intel' [03:56, 03:18](1912 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:01, 03:17](1894 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:55, 03:13](1910 MB) +PASS -- TEST 'control_restart_p8_intel' [02:21, 01:51](1167 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:52, 03:13](1895 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:16, 01:45](1220 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:02, 03:23](1894 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:36, 02:58](1988 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:58, 05:39](1898 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:59, 04:24](1974 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:22, 02:42](1904 MB) +PASS -- TEST 'merra2_thompson_intel' [04:30, 03:47](1915 MB) +PASS -- TEST 'regional_control_intel' [05:09, 04:50](1196 MB) +PASS -- TEST 'regional_restart_intel' [03:06, 02:53](1170 MB) +PASS -- TEST 'regional_decomp_intel' [05:40, 05:26](1178 MB) +PASS -- TEST 'regional_2threads_intel' [03:30, 03:15](1156 MB) +PASS -- TEST 'regional_noquilt_intel' [04:55, 04:41](1520 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:06, 04:48](1198 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:09, 04:55](1198 MB) +PASS -- TEST 'regional_wofs_intel' [06:11, 05:52](2100 MB) + +PASS -- COMPILE 'rrfs_intel' [08:32, 08:32] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:20, 06:43](1213 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:07, 03:27](1344 MB) +PASS -- TEST 'rap_decomp_intel' [07:27, 06:53](1116 MB) +PASS -- TEST 'rap_2threads_intel' [06:52, 06:17](1358 MB) +PASS -- TEST 'rap_restart_intel' [04:16, 03:30](1136 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:19, 06:43](1223 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:33, 06:59](1157 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:50, 05:03](1215 MB) +PASS -- TEST 'hrrr_control_intel' [04:11, 03:29](1068 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:14, 03:39](1042 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:49, 04:04](1106 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:13, 01:52](1022 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:14, 06:29](1215 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [07:59, 07:42](2005 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:40, 07:31](2180 MB) + +PASS -- COMPILE 'csawmg_intel' [08:16, 08:16] +PASS -- TEST 'control_csawmg_intel' [05:53, 05:36](1046 MB) +PASS -- TEST 'control_ras_intel' [03:06, 02:56](854 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:03, 04:03] +PASS -- TEST 'control_csawmg_gnu' [07:56, 07:34](1070 MB) + +PASS -- COMPILE 'wam_intel' [08:52, 08:51] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [10:32, 10:14](1669 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [08:59, 08:59] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:02, 02:25](1885 MB) +PASS -- TEST 'regional_control_faster_intel' [04:31, 04:16](1190 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:26, 06:26] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:52, 02:33](1629 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:53, 02:31](1639 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:00, 02:49](844 MB) +PASS -- TEST 'control_lndp_debug_intel' [02:42, 02:31](850 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:12, 04:59](1155 MB) +PASS -- TEST 'control_ras_debug_intel' [02:42, 02:35](856 MB) +PASS -- TEST 'control_diag_debug_intel' [02:54, 02:36](1697 MB) +PASS -- TEST 'control_debug_p8_intel' [03:50, 03:25](1942 MB) +PASS -- TEST 'regional_debug_intel' [16:57, 16:36](1172 MB) +PASS -- TEST 'rap_control_debug_intel' [04:51, 04:39](1239 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:50, 04:36](1228 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:07, 04:53](1229 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:45, 04:35](1232 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:44, 04:37](1236 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:20, 05:01](1318 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:53, 04:46](1226 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:54, 04:48](1228 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:56, 04:36](1240 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:49, 04:40](1228 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:05, 04:54](1229 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:56, 04:48](1231 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:31, 08:24](1245 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:54, 04:46](1231 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:04, 05:57](1237 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:08, 04:49](1238 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:55, 08:37](1246 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:23, 04:23] +PASS -- TEST 'control_csawmg_debug_gnu' [03:08, 02:47](1048 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:05, 04:04] ( 837 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:15, 08:15] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:40, 04:00](1217 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:48, 07:17](1189 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:17, 03:32](1036 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:40, 07:08](1284 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:06, 03:18](1037 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:34, 03:53](992 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:24, 05:47](1127 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:05, 01:58](996 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:28, 08:28] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:29, 02:03](1299 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:18, 00:56](1190 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:46, 01:13](1144 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:28, 10:28] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:11, 03:46](1085 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:42, 03:40] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:04, 04:57](1117 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:21, 05:11](1115 MB) +PASS -- TEST 'conus13km_debug_intel' [16:16, 15:50](1362 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:25, 16:00](1008 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [13:04, 12:10](1256 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:48, 14:56](1410 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:56, 03:55] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:12, 04:35](1159 MB) + +PASS -- COMPILE 'hafsw_intel' [09:51, 09:51] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:50, 05:42](862 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:47, 05:13](1252 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:33, 06:25](921 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:10, 14:10](962 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:59, 15:53](996 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:05, 05:22](591 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:55, 06:52](607 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:03, 02:35](435 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:57, 07:45](547 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:41, 04:08](608 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:10, 03:36](603 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:15, 05:19](666 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:40, 01:24](446 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:25, 04:25] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:28, 12:41](643 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:40, 09:40] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:25, 16:25](724 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:35, 16:40](794 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:53, 10:53] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:20, 10:03](822 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:01, 10:01] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:07, 07:09](917 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:14, 06:15](895 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:45, 17:08](1332 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:05, 06:05] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:20, 02:14](1155 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:21, 01:17](1096 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:16, 02:10](1025 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:16, 02:11](1017 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:16, 02:10](1010 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:15, 02:12](1136 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:18, 02:10](1152 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:19, 02:13](1010 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:09, 05:33](1177 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:30, 04:56](1156 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:10, 03:00](1142 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:08, 03:03](2454 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:09](2392 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:16, 04:16] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:37, 05:31](1084 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [05:40, 05:40] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:01, 02:56](1141 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:23, 01:23] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:19, 01:02](339 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:16, 01:04](571 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:48, 00:52](573 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:11, 09:11] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:13, 03:31](2019 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:31, 09:31] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:14, 03:19](1986 MB) + +PASS -- COMPILE 'atml_intel' [09:19, 09:19] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:31, 06:33](1894 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:54, 08:01](1904 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:52, 03:26](1124 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:20, 05:20] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:51, 06:55](1927 MB) + +PASS -- COMPILE 'atmw_intel' [09:25, 09:25] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:32, 01:44](1929 MB) + +PASS -- COMPILE 'atmaero_intel' [09:18, 09:18] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:21, 04:35](2026 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:10, 04:25](1797 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:05, 04:30](1820 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [03:51, 03:51] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [18:21, 17:09](4618 MB) + +PASS -- COMPILE 'atm_gnu' [04:09, 04:09] +PASS -- TEST 'control_c48_gnu' [10:05, 09:38](1510 MB) +PASS -- TEST 'control_stochy_gnu' [02:45, 02:33](723 MB) +PASS -- TEST 'control_ras_gnu' [04:16, 04:02](729 MB) +PASS -- TEST 'control_p8_gnu' [04:56, 04:05](1721 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:20, 03:47](1727 MB) +PASS -- TEST 'control_flake_gnu' [04:52, 04:42](812 MB) + +PASS -- COMPILE 'rrfs_gnu' [09:08, 09:08] +PASS -- TEST 'rap_control_gnu' [09:04, 08:27](1081 MB) +PASS -- TEST 'rap_decomp_gnu' [09:01, 08:20](1084 MB) +PASS -- TEST 'rap_2threads_gnu' [08:01, 07:20](1136 MB) +PASS -- TEST 'rap_restart_gnu' [04:56, 04:10](885 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [09:06, 08:29](1084 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:36, 08:59](1081 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:33, 06:01](886 MB) +PASS -- TEST 'hrrr_control_gnu' [04:49, 04:10](1068 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [04:40, 04:07](1132 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:45, 04:00](1041 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:21, 04:27](1068 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:40, 02:17](885 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:39, 02:17](934 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:47, 08:02](1076 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [11:31, 11:31] +PASS -- TEST 'control_diag_debug_gnu' [01:35, 01:13](1623 MB) +PASS -- TEST 'regional_debug_gnu' [07:18, 07:00](1137 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:18, 02:05](1096 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:11, 01:58](1088 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:25, 02:06](1100 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:11, 02:01](1093 MB) +PASS -- TEST 'rap_diag_debug_gnu' [02:27, 02:08](1269 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:20, 03:12](1097 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:08, 01:58](1097 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:05, 01:57](1091 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:24, 01:15](727 MB) +PASS -- TEST 'control_stochy_debug_gnu' [01:27, 01:20](724 MB) +PASS -- TEST 'control_debug_p8_gnu' [01:47, 01:24](1715 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:09, 02:02](1094 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [02:18, 02:08](1098 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:05, 03:30](1100 MB) + +PASS -- COMPILE 'wam_debug_gnu' [02:53, 02:53] +PASS -- TEST 'control_wam_debug_gnu' [05:49, 05:28](1567 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:48, 04:43] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:50, 08:09](961 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:57, 04:07](953 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:42, 07:03](966 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:25, 03:38](896 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:44, 03:59](946 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:21, 05:44](861 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:39, 02:17](860 MB) +PASS -- TEST 'conus13km_control_gnu' [03:12, 02:45](1269 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:23, 01:04](1176 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:48, 01:29](935 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:11, 09:11] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:42, 05:15](989 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:14, 06:14] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:02, 01:56](976 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:15, 02:02](973 MB) +PASS -- TEST 'conus13km_debug_gnu' [05:49, 05:30](1284 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:11, 05:48](960 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [03:37, 03:22](1193 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:11, 05:47](1353 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 07:10] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:11, 02:03](1007 MB) + +PASS -- COMPILE 's2swa_gnu' [17:22, 17:21] + +PASS -- COMPILE 's2s_gnu' [16:17, 16:16] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [06:09, 05:20](3124 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:09, 04:09] + +PASS -- COMPILE 's2sw_pdlib_gnu' [15:59, 15:59] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:31, 25:49](3069 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:22, 04:22] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:54, 12:57](2926 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [15:47, 15:46] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [02:36, 02:29](769 MB) SYNOPSIS: -Starting Date/Time: 20240808 19:25:49 -Ending Date/Time: 20240808 21:56:56 -Total Time: 02h:32m:09s +Starting Date/Time: 20240904 10:36:24 +Ending Date/Time: 20240904 14:40:25 +Total Time: 04h:05m:00s Compiles Completed: 57/57 Tests Completed: 244/244 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 6afe601a58..889708db55 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,27 +1,27 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -8cb23af867d56961352ff5fab97656c3a4c6b936 +8fb13929a4f74a9181c8d3f619893aaf6e507bc5 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - fd590042f958cae20968eb2221bdbbcedd931bea FV3 (remotes/origin/skeb_hydrostatic) - d92b739ed0c7d7d676c5906a66d626cb3178c817 FV3/atmos_cubed_sphere (remotes/origin/skeb_hydrostatic) + 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) + ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) + 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) + 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) + e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,253 +35,254 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_1259533 +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240904 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2076954 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO - -PASS -- COMPILE 's2swa_32bit_intel' [43:50, 43:50] ( 1 warnings 1378 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:46, 08:18](2002 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [51:36, 51:36] ( 1 warnings 1425 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [24:13, 22:04](1884 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:57, 23:48](2021 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:18, 11:22](1114 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:08, 25:13](1849 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [49:59, 49:59] ( 1 warnings 1422 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:15, 21:38](1880 MB) - -PASS -- COMPILE 's2swa_intel' [44:02, 44:02] ( 1379 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:08, 08:29](2052 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:40, 08:55](2053 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:18, 05:22](1708 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:19, 08:48](2067 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:55, 05:02](1733 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:03, 08:38](2316 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:26, 09:04](2032 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:37, 07:37](2004 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:12, 08:42](1974 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:03, 08:37](2020 MB) - -PASS -- COMPILE 's2sw_intel' [41:26, 41:26] ( 1277 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:41, 07:21](1892 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:13, 07:34](1953 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:08, 07:08] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [13:04, 11:18](2079 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:45, 06:45] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:27, 07:57](1918 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [37:28, 37:28] ( 1008 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:33, 06:51](1966 MB) - -PASS -- COMPILE 's2s_intel' [38:10, 38:10] ( 1013 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [13:18, 12:21](3013 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:31, 03:32](3006 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:15, 02:14](2431 MB) - -PASS -- COMPILE 's2swa_faster_intel' [33:32, 33:32] ( 1607 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:25, 08:52](2042 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [47:33, 47:33] ( 1337 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:52, 22:27](1915 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:51, 13:18](1123 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:51, 25:31](1885 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:27, 06:27] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:37, 34:03](1934 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [38:50, 38:50] ( 1 warnings 1124 remarks ) -PASS -- TEST 'control_flake_intel' [05:05, 04:45](643 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:05, 04:24](1543 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:25, 04:26](1552 MB) -PASS -- TEST 'control_latlon_intel' [05:03, 04:26](1545 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:21, 04:32](1545 MB) -PASS -- TEST 'control_c48_intel' [12:34, 11:51](1700 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:46, 10:25](834 MB) -PASS -- TEST 'control_c192_intel' [16:26, 15:27](1661 MB) -PASS -- TEST 'control_c384_intel' [20:53, 18:49](1794 MB) -PASS -- TEST 'control_c384gdas_intel' [17:08, 14:23](1001 MB) -PASS -- TEST 'control_stochy_intel' [02:56, 02:41](604 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:54, 01:34](426 MB) -PASS -- TEST 'control_lndp_intel' [02:58, 02:36](599 MB) -PASS -- TEST 'control_iovr4_intel' [04:21, 03:51](599 MB) -PASS -- TEST 'control_iovr5_intel' [04:03, 03:37](601 MB) -PASS -- TEST 'control_p8_intel' [06:54, 05:44](1838 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:47, 05:30](1833 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:10, 05:05](1840 MB) -PASS -- TEST 'control_restart_p8_intel' [04:23, 03:18](1048 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:24, 05:16](1837 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:20, 03:09](1073 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:52, 05:45](1822 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:45, 05:34](1914 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:46, 08:26](1837 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:32, 06:24](1888 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:20, 05:09](1831 MB) -PASS -- TEST 'merra2_thompson_intel' [07:16, 05:43](1841 MB) -PASS -- TEST 'regional_control_intel' [09:22, 08:44](1012 MB) -PASS -- TEST 'regional_restart_intel' [05:15, 04:37](1002 MB) -PASS -- TEST 'regional_decomp_intel' [09:29, 08:50](1000 MB) -PASS -- TEST 'regional_2threads_intel' [07:09, 06:29](987 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:42, 08:02](1003 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:50, 08:16](1000 MB) - -PASS -- COMPILE 'rrfs_intel' [38:59, 38:58] ( 3 warnings 1100 remarks ) -PASS -- TEST 'rap_control_intel' [11:35, 10:26](988 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:53, 05:48](1166 MB) -PASS -- TEST 'rap_decomp_intel' [12:04, 10:55](979 MB) -PASS -- TEST 'rap_2threads_intel' [11:19, 10:05](1070 MB) -PASS -- TEST 'rap_restart_intel' [06:40, 05:36](985 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:37, 10:27](985 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:17, 11:02](976 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:18, 08:08](994 MB) -PASS -- TEST 'hrrr_control_intel' [06:39, 05:19](986 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:00, 05:47](976 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:14, 04:57](1056 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:19, 02:57](918 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:58, 10:32](981 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:26, 13:00](1942 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:10, 12:54](1936 MB) - -PASS -- COMPILE 'csawmg_intel' [35:25, 35:25] ( 1089 remarks ) -PASS -- TEST 'control_csawmg_intel' [10:14, 09:36](957 MB) -PASS -- TEST 'control_ras_intel' [05:01, 04:42](667 MB) - -PASS -- COMPILE 'wam_intel' [35:56, 35:56] ( 992 remarks ) -PASS -- TEST 'control_wam_intel' [16:10, 15:21](1600 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [38:03, 38:03] ( 1292 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:04, 04:43](1825 MB) -PASS -- TEST 'regional_control_faster_intel' [08:50, 08:10](996 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 09:23] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:16, 03:39](1565 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:18, 03:34](1571 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:29, 04:08](778 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:59, 03:42](776 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:43, 06:06](1087 MB) -PASS -- TEST 'control_ras_debug_intel' [04:05, 03:43](784 MB) -PASS -- TEST 'control_diag_debug_intel' [04:43, 03:49](1621 MB) -PASS -- TEST 'control_debug_p8_intel' [05:25, 04:36](1870 MB) -PASS -- TEST 'regional_debug_intel' [23:43, 23:12](1037 MB) -PASS -- TEST 'rap_control_debug_intel' [07:03, 06:38](1161 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:53, 06:28](1155 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:06, 06:41](1166 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:17, 06:48](1159 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:01, 06:24](1160 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:10, 06:38](1243 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:44, 06:29](1160 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:49, 06:33](1162 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:41, 06:25](1173 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:44, 06:23](1166 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:22, 06:09](1161 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:30, 06:16](1160 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:24, 10:08](1164 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:28, 06:13](1164 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:48, 07:30](1159 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:31, 06:14](1158 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:58, 10:47](1162 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:47, 05:46] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:24, 16:42](1616 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:56, 31:56] ( 3 warnings 1024 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:47, 05:44](1044 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:05, 08:52](895 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:12, 04:36](871 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:42, 09:08](943 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:50, 04:14](902 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:00, 04:59](852 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:59, 06:40](892 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:32, 02:51](845 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [27:44, 27:43] ( 3 warnings 1197 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:08, 03:16](1092 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:45, 01:45](1037 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:57, 02:00](1007 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:25, 32:25] ( 3 warnings 1044 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:11, 05:52](905 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:47, 05:47] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:36, 06:14](1033 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:39, 06:16](1029 MB) -PASS -- TEST 'conus13km_debug_intel' [20:11, 19:05](1145 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:27, 19:34](853 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:46, 11:07](1088 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:33, 18:57](1207 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:46, 05:46] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:33, 06:17](1078 MB) - -PASS -- COMPILE 'hafsw_intel' [40:45, 40:44] ( 1 warnings 1416 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:53, 07:21](676 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:38, 06:58](1073 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:32, 09:43](754 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:46, 17:19](785 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:33, 18:43](800 MB) -PASS -- TEST 'gnv1_nested_intel' [10:32, 08:18](1678 MB) - -PASS -- COMPILE 'hafs_all_intel' [36:41, 36:41] ( 1263 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:48, 09:34](749 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:42, 09:26](730 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:56, 08:56] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:11, 03:52](1060 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:34, 02:21](1031 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:53, 03:39](927 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:54, 03:40](928 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:53, 03:42](929 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:08, 03:41](1065 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:52, 03:42](1071 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:51, 03:41](936 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:37, 09:20](890 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:53, 08:48](842 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:53, 03:47](1068 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:24, 05:14](2357 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:24, 05:14](2299 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:50, 03:50] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:13, 08:05](1029 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:30, 08:30] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:58, 03:48](1087 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:57, 01:57] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:40, 02:06](232 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:10, 01:43](259 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:29, 01:09](257 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [37:14, 37:14] ( 1013 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:58, 06:29](1883 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [36:44, 36:44] ( 1013 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:45, 06:26](1880 MB) - -PASS -- COMPILE 'atml_intel' [42:33, 42:32] ( 8 warnings 1165 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:29, 10:02](1849 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:47, 10:29](1851 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:24, 06:37](1061 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:10, 07:08] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:03, 08:19](1874 MB) - -PASS -- COMPILE 'atmw_intel' [38:43, 38:42] ( 1258 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:36, 03:22](1856 MB) - -PASS -- COMPILE 'atmaero_intel' [36:55, 36:54] ( 1096 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:19, 06:09](1924 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:02, 06:40](1701 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:56, 06:51](1724 MB) +* (-a) - HPC PROJECT ACCOUNT: h-nems +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [50:35, 42:05] ( 1 warnings 1380 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [20:11, 07:06](2002 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [56:36, 48:30] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [27:08, 21:00](1910 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [43:20, 22:25](2017 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [30:13, 09:48](1126 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [30:24, 24:03](1857 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [55:36, 47:44] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [27:51, 20:47](1881 MB) + +PASS -- COMPILE 's2swa_intel' [50:35, 42:08] ( 1381 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [20:11, 07:34](2060 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:25, 07:37](2057 MB) +PASS -- TEST 'cpld_restart_p8_intel' [24:25, 04:19](1716 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [20:11, 07:40](2074 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [24:26, 04:24](1734 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [20:11, 07:18](2318 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [20:11, 07:42](2059 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [20:11, 06:27](2003 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:17, 07:36](2060 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [20:10, 07:14](2041 MB) + +PASS -- COMPILE 's2sw_intel' [48:33, 40:54] ( 1279 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [21:07, 06:06](1907 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [21:21, 05:49](1973 MB) + +PASS -- COMPILE 's2swa_debug_intel' [21:15, 07:50] ( 1448 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [31:17, 10:30](2092 MB) + +PASS -- COMPILE 's2sw_debug_intel' [19:13, 07:43] ( 1448 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [28:01, 07:22](1945 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [48:18, 36:34] ( 1010 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [18:13, 05:53](1983 MB) + +PASS -- COMPILE 's2s_intel' [43:18, 37:05] ( 1015 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [24:04, 12:14](3016 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [14:53, 03:41](3014 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:57, 01:59](2461 MB) + +PASS -- COMPILE 's2swa_faster_intel' [39:24, 33:20] ( 1609 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [26:44, 07:12](2066 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [07:20, 47:03] ( 1339 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [38:28, 20:51](1911 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [38:25, 10:07](1132 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [48:07, 24:02](1888 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [26:13, 06:04] ( 1558 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [47:19, 33:03](1938 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [52:15, 37:48] ( 1 warnings 1126 remarks ) +PASS -- TEST 'control_flake_intel' [42:33, 04:40](650 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [41:48, 04:03](1544 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [41:51, 04:25](1554 MB) +PASS -- TEST 'control_latlon_intel' [41:45, 04:06](1548 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [41:56, 04:10](1549 MB) +PASS -- TEST 'control_c48_intel' [50:00, 12:07](1701 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [48:45, 10:32](828 MB) +PASS -- TEST 'control_c192_intel' [52:14, 14:19](1667 MB) +PASS -- TEST 'control_c384_intel' [57:06, 18:09](1798 MB) +PASS -- TEST 'control_c384gdas_intel' [52:51, 13:31](1006 MB) +PASS -- TEST 'control_stochy_intel' [22:28, 02:08](610 MB) +PASS -- TEST 'control_stochy_restart_intel' [19:29, 01:16](434 MB) +PASS -- TEST 'control_lndp_intel' [40:32, 02:19](604 MB) +PASS -- TEST 'control_iovr4_intel' [18:30, 03:28](601 MB) +PASS -- TEST 'control_iovr5_intel' [23:31, 03:16](598 MB) +PASS -- TEST 'control_p8_intel' [42:06, 04:18](1841 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [23:05, 04:12](1833 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [22:55, 04:12](1841 MB) +PASS -- TEST 'control_restart_p8_intel' [30:50, 02:12](1061 MB) +PASS -- TEST 'control_noqr_p8_intel' [22:01, 04:06](1830 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [26:03, 02:16](1072 MB) +PASS -- TEST 'control_decomp_p8_intel' [24:55, 04:01](1829 MB) +PASS -- TEST 'control_2threads_p8_intel' [23:58, 03:42](1914 MB) +PASS -- TEST 'control_p8_lndp_intel' [42:51, 07:00](1836 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [47:05, 05:22](1890 MB) +PASS -- TEST 'control_p8_mynn_intel' [45:08, 04:06](1840 MB) +PASS -- TEST 'merra2_thompson_intel' [45:04, 04:31](1840 MB) +PASS -- TEST 'regional_control_intel' [33:47, 07:05](1012 MB) +PASS -- TEST 'regional_restart_intel' [20:37, 03:51](1009 MB) +PASS -- TEST 'regional_decomp_intel' [32:45, 07:29](1001 MB) +PASS -- TEST 'regional_2threads_intel' [29:44, 04:29](1008 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [32:51, 07:10](1006 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [30:40, 07:09](1004 MB) + +PASS -- COMPILE 'rrfs_intel' [48:19, 37:13] ( 3 warnings 1102 remarks ) +PASS -- TEST 'rap_control_intel' [26:43, 10:15](991 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [22:08, 05:43](1178 MB) +PASS -- TEST 'rap_decomp_intel' [26:43, 10:46](992 MB) +PASS -- TEST 'rap_2threads_intel' [25:47, 09:49](1077 MB) +PASS -- TEST 'rap_restart_intel' [30:00, 05:19](993 MB) +PASS -- TEST 'rap_sfcdiff_intel' [25:47, 10:12](994 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [26:43, 10:49](990 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [31:47, 07:37](993 MB) +PASS -- TEST 'hrrr_control_intel' [20:50, 05:16](990 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [21:47, 05:28](985 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [20:50, 04:54](1048 MB) +PASS -- TEST 'hrrr_control_restart_intel' [26:36, 02:52](922 MB) +PASS -- TEST 'rrfs_v1beta_intel' [25:55, 10:10](991 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [28:34, 12:36](1945 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [28:34, 12:13](1943 MB) + +PASS -- COMPILE 'csawmg_intel' [45:19, 34:10] ( 1091 remarks ) +PASS -- TEST 'control_csawmg_intel' [26:50, 08:22](961 MB) +PASS -- TEST 'control_ras_intel' [23:35, 04:35](663 MB) + +PASS -- COMPILE 'wam_intel' [51:15, 34:33] ( 994 remarks ) +PASS -- TEST 'control_wam_intel' [39:55, 14:21](1634 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [55:18, 36:18] ( 1294 remarks ) +PASS -- TEST 'control_p8_faster_intel' [25:56, 03:37](1834 MB) +PASS -- TEST 'regional_control_faster_intel' [27:45, 06:37](1002 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [24:14, 08:28] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [26:47, 03:21](1573 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [26:50, 03:22](1575 MB) +PASS -- TEST 'control_stochy_debug_intel' [31:24, 03:45](781 MB) +PASS -- TEST 'control_lndp_debug_intel' [31:25, 03:26](779 MB) +PASS -- TEST 'control_csawmg_debug_intel' [32:40, 05:26](1094 MB) +PASS -- TEST 'control_ras_debug_intel' [28:29, 03:26](791 MB) +PASS -- TEST 'control_diag_debug_intel' [28:48, 03:22](1635 MB) +PASS -- TEST 'control_debug_p8_intel' [28:46, 03:44](1876 MB) +PASS -- TEST 'regional_debug_intel' [43:46, 22:06](1037 MB) +PASS -- TEST 'rap_control_debug_intel' [26:32, 06:08](1162 MB) +PASS -- TEST 'hrrr_control_debug_intel' [24:30, 05:58](1164 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [23:26, 06:05](1166 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [22:27, 06:08](1166 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [21:26, 06:07](1169 MB) +PASS -- TEST 'rap_diag_debug_intel' [22:36, 06:24](1250 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [15:29, 06:15](1167 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [16:29, 06:15](1167 MB) +PASS -- TEST 'rap_lndp_debug_intel' [15:25, 06:09](1171 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [15:27, 06:05](1164 MB) +PASS -- TEST 'rap_noah_debug_intel' [16:26, 06:14](1173 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [17:28, 06:08](1168 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [20:28, 10:01](1164 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [16:26, 06:05](1159 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [17:31, 07:28](1170 MB) +PASS -- TEST 'rap_flake_debug_intel' [16:26, 06:09](1168 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [18:47, 10:41](1171 MB) + +PASS -- COMPILE 'wam_debug_intel' [25:12, 05:12] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [29:57, 16:35](1662 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [01:19, 30:43] ( 3 warnings 1026 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [14:04, 05:13](1045 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [16:41, 08:11](908 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [17:36, 04:18](877 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [20:41, 07:51](949 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [16:45, 03:59](911 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [17:40, 04:34](860 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [25:48, 06:19](899 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [20:30, 02:29](853 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [59:22, 31:46] ( 3 warnings 1199 remarks ) +PASS -- TEST 'conus13km_control_intel' [29:53, 02:54](1103 MB) +PASS -- TEST 'conus13km_2threads_intel' [07:54, 01:19](1055 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [08:52, 01:36](1017 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [57:18, 31:11] ( 3 warnings 1046 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [32:55, 05:34](915 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [30:20, 05:19] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [18:32, 06:03](1048 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [17:24, 05:55](1048 MB) +PASS -- TEST 'conus13km_debug_intel' [29:03, 18:51](1160 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [35:45, 18:43](883 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [27:42, 10:44](1062 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [48:47, 18:53](1225 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [29:14, 05:08] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [35:30, 06:17](1089 MB) + +PASS -- COMPILE 'hafsw_intel' [50:19, 39:17] ( 1 warnings 1418 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:14, 06:44](706 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:29, 06:12](1070 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:34, 09:05](758 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:22, 16:05](915 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:37, 18:19](793 MB) +PASS -- TEST 'gnv1_nested_intel' [09:45, 06:21](1679 MB) + +PASS -- COMPILE 'hafs_all_intel' [46:16, 35:47] ( 1265 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:24, 08:31](761 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:27, 08:36](743 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:12, 08:23] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [18:26, 03:40](1075 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [08:24, 02:14](1030 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [18:25, 03:31](933 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [18:26, 03:37](934 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [18:26, 03:35](932 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [18:25, 03:40](1068 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [18:26, 03:41](1081 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [18:26, 03:34](936 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [23:22, 07:46](896 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [23:18, 07:40](848 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [18:22, 03:42](1071 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [19:26, 05:03](2371 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [20:25, 05:14](2374 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:12, 03:20] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [26:28, 08:12](1025 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [35:18, 08:30] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:19, 03:35](1075 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [19:13, 01:55] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:35, 01:21](239 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:31, 01:06](263 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:26, 00:49](261 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [51:14, 35:59] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [23:20, 04:44](1910 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:15, 34:55] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [21:02, 04:32](1903 MB) + +PASS -- COMPILE 'atml_intel' [39:14, 37:05] ( 8 warnings 1167 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [26:10, 05:50](1864 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [26:12, 05:52](1871 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [21:55, 03:15](1075 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:11, 06:18] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:12, 07:18](1895 MB) + +PASS -- COMPILE 'atmw_intel' [38:16, 37:05] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [20:55, 02:22](1862 MB) + +PASS -- COMPILE 'atmaero_intel' [37:15, 35:09] ( 1098 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [22:08, 05:11](1935 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [23:05, 06:14](1721 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [22:53, 06:21](1730 MB) SYNOPSIS: -Starting Date/Time: 20240809 11:54:43 -Ending Date/Time: 20240809 19:34:18 -Total Time: 07h:40m:12s +Starting Date/Time: 20240905 16:13:47 +Ending Date/Time: 20240906 00:08:01 +Total Time: 07h:54m:39s Compiles Completed: 36/36 Tests Completed: 164/164 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index df924a66e7..32dedc9cc3 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,27 +1,27 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -2ef6b2a03b85a89d4029566f29f0ad99dbdda7a0 +b7fc09c740c82647c6dac1c3fd2ea36cbd07f8e8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + d90a4f0e1f8bffccc2d6ab4cbd2613a1d8a15e4b CMEPS-interface/CMEPS (cmeps_v0.4.1-3014-gd90a4f0e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - fd590042f958cae20968eb2221bdbbcedd931bea FV3 (remotes/origin/skeb_hydrostatic) - d92b739ed0c7d7d676c5906a66d626cb3178c817 FV3/atmos_cubed_sphere (remotes/origin/skeb_hydrostatic) + 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) + ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) + 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) + 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) + 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,285 +35,285 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2089570 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240830 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1591166 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [16:12, 15:46] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:43, 14:23](2084 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:12, 25:48] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:46, 18:00](1952 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:16, 18:51](2134 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:14, 08:52](1198 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:56, 20:17](1880 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 20:48] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:40, 17:39](1944 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:21] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:48, 27:20](1938 MB) - -PASS -- COMPILE 's2swa_intel' [16:11, 15:58] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:33, 14:26](2123 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:43, 14:25](2132 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:50, 07:57](1814 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:33, 14:28](2160 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:49, 08:01](1700 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:19, 13:07](2435 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:33, 14:15](2126 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:34, 11:50](2033 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:41, 14:04](2127 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:44, 16:33](2718 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:03, 09:00](2725 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [17:57, 11:35](3689 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:24, 07:18](3491 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:30, 05:56](2105 MB) - -PASS -- COMPILE 's2sw_intel' [16:11, 15:31] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:23, 13:44](1981 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:30, 04:43](2042 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:11, 08:19] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:21, 09:08](2165 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:11, 08:10] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:12, 06:20](1993 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:11, 14:28] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:12, 04:43](2041 MB) - -PASS -- COMPILE 's2s_intel' [15:11, 14:12] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:57, 10:03](3043 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:54, 03:14](3027 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:49, 02:18](2488 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:13, 16:26] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:27, 14:46](2131 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:12, 18:47] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:12, 18:18](1993 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:24, 09:04](1246 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:12, 20:25](1904 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:11, 08:21] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:15, 29:21](1969 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:13, 13:44] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:27, 03:47](685 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:47, 03:10](1582 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:52, 03:15](1592 MB) -PASS -- TEST 'control_latlon_intel' [03:38, 03:09](1583 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:55, 03:15](1584 MB) -PASS -- TEST 'control_c48_intel' [10:52, 09:28](1697 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:37, 08:05](838 MB) -PASS -- TEST 'control_c192_intel' [12:56, 11:43](1720 MB) -PASS -- TEST 'control_c384_intel' [14:57, 12:45](1967 MB) -PASS -- TEST 'control_c384gdas_intel' [12:40, 09:51](1327 MB) -PASS -- TEST 'control_stochy_intel' [02:33, 01:51](647 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:42, 01:05](478 MB) -PASS -- TEST 'control_lndp_intel' [02:30, 01:46](644 MB) -PASS -- TEST 'control_iovr4_intel' [03:26, 02:44](644 MB) -PASS -- TEST 'control_iovr5_intel' [03:31, 02:41](638 MB) -PASS -- TEST 'control_p8_intel' [05:25, 03:31](1876 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:21, 03:42](1872 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:31, 03:30](1876 MB) -PASS -- TEST 'control_restart_p8_intel' [03:14, 02:02](1085 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:12, 03:29](1870 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:39, 01:58](1129 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:16, 03:34](1860 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:08, 03:38](1959 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:50, 05:57](1874 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:29, 05:01](1940 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:25, 03:34](1889 MB) -PASS -- TEST 'merra2_thompson_intel' [05:38, 03:57](1880 MB) -PASS -- TEST 'regional_control_intel' [07:40, 06:32](1086 MB) -PASS -- TEST 'regional_restart_intel' [04:42, 03:33](1073 MB) -PASS -- TEST 'regional_decomp_intel' [07:41, 06:57](1083 MB) -PASS -- TEST 'regional_2threads_intel' [05:37, 04:49](1064 MB) -PASS -- TEST 'regional_noquilt_intel' [07:41, 06:34](1389 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 06:36](1090 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:32, 06:29](1078 MB) -PASS -- TEST 'regional_wofs_intel' [08:33, 07:50](1901 MB) - -PASS -- COMPILE 'rrfs_intel' [13:15, 13:10] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:01, 08:26](1053 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:57, 05:09](1263 MB) -PASS -- TEST 'rap_decomp_intel' [10:02, 08:34](1026 MB) -PASS -- TEST 'rap_2threads_intel' [10:01, 08:32](1157 MB) -PASS -- TEST 'rap_restart_intel' [06:38, 04:23](1046 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:02, 08:21](1057 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:03, 08:40](1026 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:31, 06:18](1071 MB) -PASS -- TEST 'hrrr_control_intel' [06:00, 04:22](1026 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:02, 04:26](1024 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:01, 04:11](1094 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:40, 02:24](948 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:16, 08:20](1046 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:23, 10:00](1986 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:28, 09:43](2026 MB) - -PASS -- COMPILE 'csawmg_intel' [12:12, 12:00] -PASS -- TEST 'control_csawmg_intel' [07:37, 06:35](1015 MB) -PASS -- TEST 'control_ras_intel' [04:24, 03:31](716 MB) - -PASS -- COMPILE 'wam_intel' [13:14, 12:33] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:47, 12:43](1665 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:13, 12:24] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:26, 03:19](1880 MB) -PASS -- TEST 'regional_control_faster_intel' [07:33, 06:11](1075 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:12, 09:50] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:43, 03:02](1615 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:45, 02:38](1611 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:30, 03:07](818 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:20, 02:49](817 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:32, 04:21](1134 MB) -PASS -- TEST 'control_ras_debug_intel' [03:25, 02:57](823 MB) -PASS -- TEST 'control_diag_debug_intel' [03:46, 02:47](1676 MB) -PASS -- TEST 'control_debug_p8_intel' [03:45, 03:07](1913 MB) -PASS -- TEST 'regional_debug_intel' [18:41, 17:27](1092 MB) -PASS -- TEST 'rap_control_debug_intel' [05:27, 04:58](1213 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:25, 05:03](1198 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:28, 04:54](1208 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:25, 05:24](1213 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:23, 05:03](1209 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:32, 05:12](1294 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:24, 05:02](1205 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:25, 05:00](1205 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:26, 05:18](1204 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:25, 04:54](1212 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:23, 04:56](1208 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:23, 05:03](1196 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:29, 07:55](1205 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:24, 04:56](1203 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:24, 06:13](1208 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:21, 05:01](1213 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:25, 08:41](1213 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:12, 06:40] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:45, 13:17](1678 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:12, 12:05] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:55, 04:51](1131 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:14, 07:09](1000 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:38, 03:47](932 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:14, 07:21](1074 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:40, 03:41](945 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:17, 03:56](900 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:20, 05:24](969 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:39, 02:02](880 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:13, 12:28] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:52, 02:37](1183 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:41, 01:13](1113 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:47, 01:36](1067 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:12, 12:57] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:40, 04:36](972 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:12, 07:04] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:22, 04:49](1080 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:29, 04:49](1083 MB) -PASS -- TEST 'conus13km_debug_intel' [15:50, 14:48](1232 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:45, 14:53](931 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:40, 08:31](1175 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:44, 15:09](1296 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:11, 07:04] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:25, 05:02](1142 MB) - -PASS -- COMPILE 'hafsw_intel' [15:13, 15:04] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:12, 06:05](740 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:28, 06:24](1116 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:25, 07:29](820 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [25:13, 24:07](851 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:20, 28:43](873 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:03, 07:01](495 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:30, 08:23](502 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:56, 03:24](375 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:28, 09:30](479 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:50, 04:40](523 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:57, 04:25](523 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:52, 05:42](574 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:30, 01:31](399 MB) -PASS -- TEST 'gnv1_nested_intel' [07:16, 04:23](1714 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:11, 08:01] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:02, 13:15](582 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:12, 14:39] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:09, 13:01](666 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:00, 12:58](731 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:13, 15:05] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:00, 08:32](711 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:12, 14:16] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:19, 07:28](818 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:12, 07:30](799 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:54, 16:22](1202 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:12, 08:54] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:20, 03:00](1149 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 02:01](1112 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:20, 02:49](1015 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:19, 02:54](1020 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:53](1023 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:57](1159 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:20, 02:59](1156 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:49](1023 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:10, 06:31](1030 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:06, 06:28](999 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:58](1158 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 04:20](2449 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:20, 04:21](2408 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:13, 05:01] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:31](1075 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:41] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:58](1157 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:12, 01:23] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 01:01](255 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:57](327 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 00:35](321 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:11, 13:12] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:06, 04:12](1969 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:12, 12:53] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:09, 03:56](1956 MB) - -PASS -- COMPILE 'atml_intel' [14:12, 13:29] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:31, 04:54](1850 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:29, 04:51](1863 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:54, 02:48](1052 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:12, 07:38] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:29, 05:50](1894 MB) - -PASS -- COMPILE 'atmw_intel' [14:12, 13:37] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:21, 02:08](1908 MB) - -PASS -- COMPILE 'atmaero_intel' [14:11, 13:17] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:22, 04:33](1986 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:12, 05:18](1767 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:04, 05:24](1783 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:11, 06:34] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [22:53, 20:23](4561 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:11, 16:20] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:19, 14:13](2091 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:12, 21:09] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:41, 17:59](1956 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:19, 18:54](2136 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:13, 08:50](1199 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:40, 20:15](1874 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:11, 22:22] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:41, 17:43](1943 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:10, 07:57] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [31:21, 27:31](1929 MB) + +PASS -- COMPILE 's2swa_intel' [19:11, 17:43] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [17:27, 14:13](2129 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:32, 14:14](2129 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:55, 07:53](1816 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:27, 14:44](2146 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:54, 07:53](1703 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:26, 13:12](2437 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:27, 14:10](2115 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:31, 12:18](2040 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:33, 14:15](2133 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [21:01, 16:42](2708 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:05, 08:54](2703 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:04, 11:37](3688 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:29, 07:12](3490 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:22, 05:53](2099 MB) + +PASS -- COMPILE 's2sw_intel' [18:11, 16:36] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [16:02, 13:27](1977 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:08, 04:44](2049 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:11, 08:44] ( 1448 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:15, 08:39](2160 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:11, 08:56] ( 1448 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:58, 06:18](2004 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:11, 15:18] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:09, 04:36](2044 MB) + +PASS -- COMPILE 's2s_intel' [16:11, 15:00] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:53, 09:58](3060 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:53, 03:29](3030 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:56, 02:13](2484 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:11, 17:12] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [17:18, 14:28](2128 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 18:00] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:02, 18:13](1995 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:29, 09:02](1246 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:18, 20:05](1912 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:10, 08:12] ( 1558 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:16, 29:27](1971 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:11, 13:46] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:23, 03:41](698 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:47, 03:11](1586 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:52, 03:14](1599 MB) +PASS -- TEST 'control_latlon_intel' [04:41, 03:06](1586 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:52, 03:14](1587 MB) +PASS -- TEST 'control_c48_intel' [11:53, 09:29](1704 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:32, 08:23](844 MB) +PASS -- TEST 'control_c192_intel' [13:55, 11:41](1723 MB) +PASS -- TEST 'control_c384_intel' [15:59, 13:00](1944 MB) +PASS -- TEST 'control_c384gdas_intel' [13:45, 09:42](1345 MB) +PASS -- TEST 'control_stochy_intel' [03:23, 01:50](647 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:40, 01:03](481 MB) +PASS -- TEST 'control_lndp_intel' [03:29, 01:45](652 MB) +PASS -- TEST 'control_iovr4_intel' [04:57, 02:41](649 MB) +PASS -- TEST 'control_iovr5_intel' [04:36, 02:40](644 MB) +PASS -- TEST 'control_p8_intel' [06:07, 04:00](1884 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:09, 03:43](1877 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:30, 03:30](1893 MB) +PASS -- TEST 'control_restart_p8_intel' [04:14, 01:59](1098 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:14, 03:39](1875 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:22, 01:57](1126 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:13, 03:38](1864 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:11, 03:39](1957 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:57, 06:02](1876 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:31, 04:59](1949 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:31, 03:32](1883 MB) +PASS -- TEST 'merra2_thompson_intel' [06:39, 03:56](1894 MB) +PASS -- TEST 'regional_control_intel' [08:40, 06:31](1079 MB) +PASS -- TEST 'regional_restart_intel' [05:40, 03:28](1077 MB) +PASS -- TEST 'regional_decomp_intel' [09:00, 06:50](1067 MB) +PASS -- TEST 'regional_2threads_intel' [06:30, 04:36](1077 MB) +PASS -- TEST 'regional_noquilt_intel' [08:38, 06:25](1382 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:42, 06:23](1087 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:39, 06:21](1085 MB) +PASS -- TEST 'regional_wofs_intel' [09:36, 07:49](1904 MB) + +PASS -- COMPILE 'rrfs_intel' [14:11, 12:44] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:18, 08:26](1053 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:57, 05:05](1250 MB) +PASS -- TEST 'rap_decomp_intel' [11:00, 08:40](1023 MB) +PASS -- TEST 'rap_2threads_intel' [10:55, 08:28](1153 MB) +PASS -- TEST 'rap_restart_intel' [07:35, 04:21](1045 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:25, 08:17](1050 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:13, 08:35](1024 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:32, 06:13](1074 MB) +PASS -- TEST 'hrrr_control_intel' [07:02, 04:19](1028 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:02, 04:25](1013 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:20, 04:07](1089 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:42, 02:20](942 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:22, 08:15](1054 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:30, 09:57](1979 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:26, 09:43](2011 MB) + +PASS -- COMPILE 'csawmg_intel' [14:11, 12:37] +PASS -- TEST 'control_csawmg_intel' [08:35, 06:31](1019 MB) +PASS -- TEST 'control_ras_intel' [05:23, 03:28](712 MB) + +PASS -- COMPILE 'wam_intel' [14:11, 12:46] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:50, 12:44](1655 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 12:58] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:30, 03:17](1879 MB) +PASS -- TEST 'regional_control_faster_intel' [08:35, 06:13](1071 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 09:46] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:40, 02:52](1618 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:41, 02:39](1607 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:20, 03:04](823 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:21, 02:45](815 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:44, 04:26](1134 MB) +PASS -- TEST 'control_ras_debug_intel' [04:23, 02:48](828 MB) +PASS -- TEST 'control_diag_debug_intel' [04:44, 02:50](1676 MB) +PASS -- TEST 'control_debug_p8_intel' [05:45, 03:10](1910 MB) +PASS -- TEST 'regional_debug_intel' [18:39, 16:56](1096 MB) +PASS -- TEST 'rap_control_debug_intel' [06:21, 05:05](1213 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:29, 04:53](1206 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:25, 04:48](1205 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:32, 05:03](1208 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:24, 05:00](1206 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:30, 05:40](1280 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:20, 05:29](1205 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:26, 04:59](1211 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:26, 05:03](1216 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:58](1208 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:47](1207 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:28, 04:59](1212 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 08:02](1204 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:58](1195 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:24, 05:56](1207 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:22, 04:54](1215 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:26, 08:36](1211 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:11, 06:40] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:40, 13:40](1681 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:14] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:01, 04:50](1132 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [12:15, 07:11](999 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:39, 03:44](924 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:55, 07:16](1069 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:12, 03:37](944 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:12, 03:53](902 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:34, 05:22](977 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [13:15, 02:02](878 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:53] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:55, 02:41](1168 MB) +PASS -- TEST 'conus13km_2threads_intel' [08:50, 01:15](1117 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [08:56, 01:31](1070 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:57] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:41, 04:33](977 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 06:42] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:25, 04:57](1082 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:30, 04:49](1086 MB) +PASS -- TEST 'conus13km_debug_intel' [20:52, 14:40](1237 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:47, 14:40](942 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [13:44, 08:33](1168 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:44, 15:08](1303 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:13, 06:43] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:27, 04:55](1131 MB) + +PASS -- COMPILE 'hafsw_intel' [17:12, 15:33] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:18, 05:59](733 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:32, 06:32](1115 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:34, 07:42](816 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [27:15, 24:05](849 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:21, 28:25](870 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [15:06, 07:13](500 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:31, 08:24](505 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [10:56, 03:27](373 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [18:31, 09:43](474 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:58, 04:46](525 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [13:03, 04:33](525 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [12:01, 05:46](573 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:36, 01:33](404 MB) +PASS -- TEST 'gnv1_nested_intel' [13:19, 04:21](1716 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:11, 07:18] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [23:06, 13:03](588 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:12, 15:14] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [22:05, 12:38](653 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [23:02, 13:02](726 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 14:58] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [19:36, 08:44](710 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:12, 15:03] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [19:22, 07:35](814 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [18:15, 07:29](795 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [26:00, 16:27](1201 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 09:07] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [12:24, 03:00](1159 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [11:22, 01:52](1111 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [12:18, 02:51](1013 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [10:20, 02:35](1009 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [10:19, 02:56](1019 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [10:17, 02:58](1156 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [10:19, 03:00](1153 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [09:19, 02:51](1024 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:11, 06:31](1019 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:06, 06:28](1003 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [08:22, 02:57](1152 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [09:21, 04:20](2397 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [14:19, 04:25](2452 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 05:44] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [15:21, 06:29](1082 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:55] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [11:21, 02:58](1145 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:18] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [12:34, 01:04](253 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [11:26, 00:56](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:30, 00:35](322 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:11, 13:31] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [15:10, 04:11](1980 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 13:10] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:59, 03:59](1947 MB) + +PASS -- COMPILE 'atml_intel' [16:11, 14:30] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [16:40, 04:55](1864 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [15:32, 04:51](1866 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:55, 02:47](1062 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:12, 07:50] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [15:34, 05:48](1892 MB) + +PASS -- COMPILE 'atmw_intel' [15:11, 13:45] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [12:22, 02:10](1909 MB) + +PASS -- COMPILE 'atmaero_intel' [15:11, 13:43] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [14:12, 04:33](1984 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [16:16, 05:17](1768 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:08, 05:23](1784 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:11, 06:29] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [31:58, 20:13](4562 MB) SYNOPSIS: -Starting Date/Time: 20240808 22:06:22 -Ending Date/Time: 20240808 23:39:07 -Total Time: 01h:33m:34s +Starting Date/Time: 20240830 11:24:28 +Ending Date/Time: 20240830 13:22:21 +Total Time: 01h:58m:55s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_s4.log b/tests/logs/RegressionTests_s4.log new file mode 100644 index 0000000000..3d3336f7c1 --- /dev/null +++ b/tests/logs/RegressionTests_s4.log @@ -0,0 +1,297 @@ +====START OF S4 REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +78892e674c5b283ae3fe4f575efc5836350a8bc8 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28f) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-1415-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) ++29e8d774f650f41231e302687e3061712aa680c0 FV3 (29e8d77) + 7c3102fccc493d4c006c936ea88e4b512f6f5251 FV3/atmos_cubed_sphere (201912_public_release-403-g7c3102f) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b076) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ++81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a8) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777e) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c7) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /data/prod/emc.nemspara/RT/NEMSfv3gfs/develop-20240808 +COMPARISON DIRECTORY: /scratch/users/isouopgui/FV3_RT/rt_438194 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: star +* (-c) - CREATE NEW BASELINES +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [12:10, 12:09] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:01, 06:58](2020 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:10, 12:40] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:36, 17:41](1880 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:55, 18:57](2049 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'cpld_restart_gfsv17_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'cpld_mpi_gfsv17_intel' [, ]( MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:10, 12:48] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:32, 17:35](1881 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 05:49] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:45, 25:38](1913 MB) + +PASS -- COMPILE 's2swa_intel' [12:11, 12:00] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:05, 06:48](2061 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [24:06, 07:00](2058 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'cpld_restart_p8_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'cpld_control_qr_p8_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'cpld_restart_qr_p8_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'cpld_2threads_p8_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'cpld_decomp_p8_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'cpld_mpi_p8_intel' [, ]( MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:03, 07:27](2059 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [31:02, 06:33](2040 MB) + +PASS -- COMPILE 's2sw_intel' [12:10, 11:45] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [27:01, 05:16](1909 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [29:02, 05:31](1965 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:10, 06:05] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:29, 09:26](2092 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:49] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:26, 06:30](1939 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:10, 11:22] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [16:02, 05:39](1976 MB) + +PASS -- COMPILE 's2s_intel' [12:10, 11:26] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [25:55, 09:50](3011 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [48:00, 03:02](2998 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'cpld_restart_c48_intel' [, ]( MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:11, 15:51] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [20:06, 06:33](2059 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [12:11, 11:44] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:33, 18:12](1909 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'cpld_restart_pdlib_p8_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'cpld_mpi_pdlib_p8_intel' [, ]( MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 05:34] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:35, 27:24](1942 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:10, 09:55] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [24:23, 04:45](642 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [27:55, 03:26](1542 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [25:57, 03:47](1547 MB) +PASS -- TEST 'control_latlon_intel' [25:55, 03:28](1537 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [27:54, 03:36](1540 MB) +PASS -- TEST 'control_c48_intel' [44:56, 07:35](1687 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [44:23, 06:38](824 MB) +PASS -- TEST 'control_c192_intel' [25:02, 12:17](1667 MB) +PASS -- TEST 'control_c384_intel' [21:34, 13:51](1943 MB) +PASS -- TEST 'control_c384gdas_intel' [41:14, 19:02](1336 MB) +PASS -- TEST 'control_stochy_intel' [20:22, 02:02](601 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'control_stochy_restart_intel' [, ]( MB) +PASS -- TEST 'control_lndp_intel' [21:22, 01:55](601 MB) +PASS -- TEST 'control_iovr4_intel' [22:23, 03:09](597 MB) +PASS -- TEST 'control_iovr5_intel' [22:23, 03:26](591 MB) +PASS -- TEST 'control_p8_intel' [24:59, 03:52](1832 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [23:41, 03:44](1835 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [22:38, 03:40](1828 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'control_restart_p8_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'control_noqr_p8_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'control_restart_noqr_p8_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'control_decomp_p8_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'control_2threads_p8_intel' [, ]( MB) +PASS -- TEST 'control_p8_lndp_intel' [21:31, 06:31](1829 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [18:31, 04:51](1892 MB) +PASS -- TEST 'control_p8_mynn_intel' [16:32, 03:45](1839 MB) +PASS -- TEST 'merra2_thompson_intel' [16:30, 04:02](1848 MB) +PASS -- TEST 'regional_control_intel' [18:28, 07:44](1017 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'regional_restart_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'regional_decomp_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'regional_2threads_intel' [, ]( MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [26:28, 09:10](1013 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'regional_2dwrtdecomp_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_intel' [10:10, 10:01] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [19:24, 09:30](1004 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:51, 05:37](1219 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'rap_decomp_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'rap_2threads_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'rap_restart_intel' [, ]( MB) +PASS -- TEST 'rap_sfcdiff_intel' [18:23, 09:17](1006 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'rap_sfcdiff_decomp_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'rap_sfcdiff_restart_intel' [, ]( MB) +PASS -- TEST 'hrrr_control_intel' [14:25, 04:49](992 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'hrrr_control_decomp_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'hrrr_control_2threads_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'hrrr_control_restart_intel' [, ]( MB) +PASS -- TEST 'rrfs_v1beta_intel' [18:21, 09:11](996 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [19:22, 10:56](1941 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [20:20, 10:25](1979 MB) + +PASS -- COMPILE 'csawmg_intel' [10:10, 09:48] +PASS -- TEST 'control_csawmg_intel' [18:29, 07:37](964 MB) +PASS -- TEST 'control_ras_intel' [13:16, 03:55](667 MB) + +PASS -- COMPILE 'wam_intel' [09:10, 08:58] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [30:45, 13:05](1615 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:10, 10:11] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [13:31, 03:24](1838 MB) +PASS -- TEST 'regional_control_faster_intel' [18:32, 08:29](1022 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [51:11, 07:00] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [35:44, 02:53](1560 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [38:46, 02:55](1569 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:22, 03:22](779 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:22, 02:58](775 MB) +PASS -- TEST 'control_csawmg_debug_intel' [37:43, 04:43](1084 MB) +PASS -- TEST 'control_ras_debug_intel' [04:22, 03:04](783 MB) +PASS -- TEST 'control_diag_debug_intel' [37:53, 03:06](1625 MB) +PASS -- TEST 'control_debug_p8_intel' [36:46, 03:15](1854 MB) +PASS -- TEST 'regional_debug_intel' [59:43, 20:28](1040 MB) +PASS -- TEST 'rap_control_debug_intel' [13:24, 05:25](1157 MB) +PASS -- TEST 'hrrr_control_debug_intel' [37:26, 05:25](1157 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [37:26, 05:36](1157 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [33:26, 05:22](1163 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'rap_unified_drag_suite_debug_intel' [, ]( MB) +PASS -- TEST 'rap_diag_debug_intel' [09:32, 05:33](1237 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [32:25, 05:44](1160 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'rap_unified_ugwp_debug_intel' [, ]( MB) +PASS -- TEST 'rap_lndp_debug_intel' [32:25, 05:31](1161 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:23, 05:14](1161 MB) +PASS -- TEST 'rap_noah_debug_intel' [11:24, 05:11](1162 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [33:26, 05:34](1163 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:23, 08:32](1159 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [09:24, 05:26](1158 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [41:20, 06:21](1165 MB) +PASS -- TEST 'rap_flake_debug_intel' [41:18, 05:24](1157 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [44:23, 09:19](1161 MB) + +PASS -- COMPILE 'wam_debug_intel' [49:11, 04:30] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:48, 15:11](1646 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [54:12, 09:30] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:49, 05:07](1091 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [41:21, 07:51](949 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [38:20, 04:11](899 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'rap_2threads_dyn32_phy32_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'rap_restart_dyn32_phy32_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [49:11, 09:10] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [37:47, 02:53](1125 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'conus13km_2threads_intel' [, ]( MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:38, 01:35](1031 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [46:11, 09:24] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [39:23, 05:05](906 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [40:11, 04:22] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:19, 05:21](1035 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:20, 05:20](1035 MB) +PASS -- TEST 'conus13km_debug_intel' [18:21, 16:09](1175 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'conus13km_debug_qr_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'conus13km_debug_2threads_intel' [, ]( MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:20, 16:30](1231 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [42:11, 04:37] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [40:17, 05:29](1081 MB) + +PASS -- COMPILE 'hafsw_intel' [47:11, 11:07] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:29, 07:41](713 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:20, 08:21](1083 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:33, 10:10](788 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [29:27, 16:43](816 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [23:32, 18:10](834 MB) + +PASS -- COMPILE 'hafs_all_intel' [47:11, 10:46] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [20:23, 09:48](784 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [23:24, 10:47](760 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [43:11, 06:53] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [27:17, 02:49](1083 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'datm_cdeps_restart_cfsr_intel' [, ]( MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [25:15, 02:41](955 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [25:16, 02:50](953 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [24:15, 02:49](955 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [19:14, 02:41](1072 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [14:15, 02:47](1074 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [09:14, 02:41](958 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:08, 06:22](944 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:04, 06:07](903 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [, ]( MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:16, 03:48](2447 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [10:15, 03:48](2442 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:18] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [12:15, 06:41](1011 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:10, 07:02] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [07:15, 02:46](1081 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 01:08] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:27, 01:03](234 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:21, 01:05](287 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'datm_cdeps_lnd_era5_rst_intel' [, ]( MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [50:11, 09:55] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:40, 04:30](1904 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [49:11, 09:28] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:46, 04:19](1895 MB) + +PASS -- COMPILE 'atml_intel' [49:11, 10:27] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:32, 06:07](1865 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:32, 05:58](1848 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'control_restart_p8_atmlnd_intel' [, ]( MB) + +PASS -- COMPILE 'atml_debug_intel' [43:10, 04:57] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:41, 06:26](1888 MB) + +PASS -- COMPILE 'atmw_intel' [48:11, 10:20] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:29, 02:09](1865 MB) + +PASS -- COMPILE 'atmaero_intel' [47:11, 09:50] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:38, 04:36](1939 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:39, 05:39](1722 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:26, 05:48](1725 MB) + +SYNOPSIS: +Starting Date/Time: 20240814 12:03:01 +Ending Date/Time: 20240814 14:10:59 +Total Time: 02h:08m:33s +Compiles Completed: 37/37 +Tests Completed: 121/164 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF S4 REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 82b2351fcc..640843a9a8 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,27 +1,27 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -2b4a599fc5da5cda16fc82974e07f353b6760f77 +fec503e13e8d4b6708283f074b01445a68e50f43 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - fd590042f958cae20968eb2221bdbbcedd931bea FV3 (remotes/origin/HEAD-5-gfd59004) - d92b739ed0c7d7d676c5906a66d626cb3178c817 FV3/atmos_cubed_sphere (201912_public_release-405-gd92b739) + 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) + ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) + 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) + 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) + e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,241 +35,308 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46914 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240904 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_100506 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:28, 11:14] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:43, 02:10](3103 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [37:08, 35:52] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [44:03, 02:02](1806 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:56, 01:44](1839 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [25:51, 02:15](973 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [43:58, 01:37](1784 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:25, 23:07] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [56:46, 01:09](1806 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:39, 15:18] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [04:33, 01:19](1845 MB) - -PASS -- COMPILE 's2swa_intel' [12:28, 11:22] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:43, 01:23](3132 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:43, 01:29](3132 MB) -PASS -- TEST 'cpld_restart_p8_intel' [00:23, 02:10](3059 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:43, 01:20](3154 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [00:23, 02:09](3080 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:43, 01:47](3367 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:43, 01:29](3127 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:44, 02:20](3077 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:43, 01:30](3131 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [08:52, 03:43](4123 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [50:28, 04:22](4266 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:43, 01:35](3110 MB) - -PASS -- COMPILE 's2sw_intel' [31:01, 29:46] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [50:11, 01:02](1827 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [50:11, 01:11](1896 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:28, 11:06] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:43, 01:22](1885 MB) - -PASS -- COMPILE 's2s_intel' [12:28, 10:05] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:42, 00:43](2865 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [08:42, 01:47](2870 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:07, 01:36](2274 MB) - -PASS -- COMPILE 's2swa_faster_intel' [23:24, 21:01] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [57:47, 01:54](3130 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:26, 22:52] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [56:46, 01:11](1817 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [39:18, 01:36](984 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [39:19, 00:55](1798 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:55, 08:10] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [57:48, 01:36](1860 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [20:34, 19:21] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [48:08, 00:31](568 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [48:08, 00:35](1473 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [48:08, 00:27](1480 MB) -PASS -- TEST 'control_latlon_intel' [48:08, 00:28](1469 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [48:08, 00:37](1468 MB) -PASS -- TEST 'control_c48_intel' [48:07, 00:58](1557 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [48:07, 00:57](690 MB) -PASS -- TEST 'control_c192_intel' [48:08, 01:14](1579 MB) -PASS -- TEST 'control_c384_intel' [48:12, 02:00](1862 MB) -PASS -- TEST 'control_c384gdas_intel' [48:12, 02:43](1065 MB) -PASS -- TEST 'control_stochy_intel' [47:51, 00:23](525 MB) -PASS -- TEST 'control_stochy_restart_intel' [45:23, 01:02](329 MB) -PASS -- TEST 'control_lndp_intel' [46:39, 00:34](529 MB) -PASS -- TEST 'control_iovr4_intel' [45:22, 00:41](523 MB) -PASS -- TEST 'control_iovr5_intel' [45:19, 00:40](519 MB) -PASS -- TEST 'control_p8_intel' [45:08, 01:01](1755 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [45:08, 01:02](1762 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [45:08, 01:05](1761 MB) -PASS -- TEST 'control_restart_p8_intel' [40:23, 00:57](895 MB) -PASS -- TEST 'control_noqr_p8_intel' [44:57, 01:29](1750 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [39:35, 00:50](916 MB) -PASS -- TEST 'control_decomp_p8_intel' [44:43, 01:23](1750 MB) -PASS -- TEST 'control_2threads_p8_intel' [44:42, 01:41](1848 MB) -PASS -- TEST 'control_p8_lndp_intel' [44:08, 01:01](1761 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [44:08, 01:55](1808 MB) -PASS -- TEST 'control_p8_mynn_intel' [44:06, 01:52](1773 MB) -PASS -- TEST 'merra2_thompson_intel' [44:06, 01:44](1766 MB) -PASS -- TEST 'regional_control_intel' [43:46, 01:10](845 MB) -PASS -- TEST 'regional_restart_intel' [37:08, 00:27](841 MB) -PASS -- TEST 'regional_decomp_intel' [43:32, 00:53](842 MB) -PASS -- TEST 'regional_2threads_intel' [43:19, 00:52](904 MB) -PASS -- TEST 'regional_noquilt_intel' [43:17, 00:22](1168 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [42:56, 00:25](844 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [41:53, 00:14](841 MB) -PASS -- TEST 'regional_wofs_intel' [41:50, 00:43](1572 MB) - -PASS -- COMPILE 'rrfs_intel' [14:26, 11:53] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [54:16, 01:28](909 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [54:17, 01:05](1058 MB) -PASS -- TEST 'rap_decomp_intel' [54:16, 01:39](911 MB) -PASS -- TEST 'rap_2threads_intel' [54:16, 02:08](994 MB) -PASS -- TEST 'rap_restart_intel' [41:10, 01:02](782 MB) -PASS -- TEST 'rap_sfcdiff_intel' [54:16, 01:20](906 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [54:16, 01:41](911 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [40:22, 01:45](777 MB) -PASS -- TEST 'hrrr_control_intel' [54:16, 01:21](909 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [54:16, 01:17](906 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [54:17, 01:46](983 MB) -PASS -- TEST 'hrrr_control_restart_intel' [48:38, 01:02](735 MB) -PASS -- TEST 'rrfs_v1beta_intel' [54:16, 01:18](906 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [54:16, 01:04](1870 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [54:16, 00:19](1857 MB) - -PASS -- COMPILE 'csawmg_intel' [17:30, 16:22] -PASS -- TEST 'control_csawmg_intel' [51:13, 00:32](864 MB) -PASS -- TEST 'control_ras_intel' [51:13, 00:49](559 MB) - -PASS -- COMPILE 'wam_intel' [14:20, 13:20] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [50:11, 00:30](1562 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:39, 09:33] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [40:22, 01:57](1750 MB) -PASS -- TEST 'regional_control_faster_intel' [39:54, 00:22](837 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [18:47, 17:59] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [38:42, 01:18](1501 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [38:39, 01:26](1496 MB) -PASS -- TEST 'control_stochy_debug_intel' [38:26, 00:46](702 MB) -PASS -- TEST 'control_lndp_debug_intel' [37:43, 01:11](699 MB) -PASS -- TEST 'control_csawmg_debug_intel' [37:36, 00:31](1007 MB) -PASS -- TEST 'control_ras_debug_intel' [37:22, 01:18](706 MB) -PASS -- TEST 'control_diag_debug_intel' [37:12, 01:22](1565 MB) -PASS -- TEST 'control_debug_p8_intel' [37:08, 01:00](1791 MB) -PASS -- TEST 'regional_debug_intel' [37:07, 00:39](885 MB) -PASS -- TEST 'rap_control_debug_intel' [36:56, 00:48](1089 MB) -PASS -- TEST 'hrrr_control_debug_intel' [36:54, 00:56](1079 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [36:15, 00:51](1080 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [36:14, 00:49](1082 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [35:57, 00:45](1084 MB) -PASS -- TEST 'rap_diag_debug_intel' [35:50, 00:41](1168 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [35:49, 00:39](1087 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [35:28, 00:41](1084 MB) -PASS -- TEST 'rap_lndp_debug_intel' [34:58, 00:42](1086 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [34:06, 00:49](1088 MB) -PASS -- TEST 'rap_noah_debug_intel' [34:06, 00:55](1078 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [34:03, 00:51](1085 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [33:57, 00:46](1081 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [33:55, 00:42](1077 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [33:48, 00:41](1081 MB) -PASS -- TEST 'rap_flake_debug_intel' [33:40, 00:32](1084 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [33:22, 01:56](1088 MB) - -PASS -- COMPILE 'wam_debug_intel' [20:52, 19:56] ( 825 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [33:22, 00:32](1581 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [25:03, 23:52] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [30:20, 01:29](921 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [30:18, 01:07](783 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [30:14, 02:24](779 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [30:07, 01:25](839 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [29:31, 02:05](830 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [29:30, 01:40](780 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [23:03, 01:32](676 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [24:22, 00:19](659 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:51, 10:21] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [39:53, 01:08](992 MB) -PASS -- TEST 'conus13km_2threads_intel' [33:10, 00:56](997 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [32:48, 00:43](871 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:29, 08:21] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [39:35, 01:23](810 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [16:46, 15:53] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [32:40, 00:51](961 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [32:20, 00:59](957 MB) -PASS -- TEST 'conus13km_debug_intel' [32:16, 00:50](1044 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [31:57, 00:33](717 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [29:19, 00:26](1046 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [29:14, 00:44](1118 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:34, 11:55] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [29:12, 00:49](984 MB) - -PASS -- COMPILE 'hafsw_intel' [11:32, 11:10] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [29:09, 01:31](600 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [28:54, 01:13](952 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [28:48, 01:50](652 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [28:12, 01:45](669 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [27:24, 01:40](698 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [27:23, 01:05](377 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [27:24, 02:13](393 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [27:23, 01:33](292 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [27:15, 02:36](368 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [26:17, 01:32](405 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [26:11, 00:58](411 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [24:17, 00:45](477 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [24:16, 00:28](310 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:29, 09:21] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [24:08, 01:16](513 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [10:38, 09:25] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [24:06, 00:58](519 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [23:55, 01:45](701 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:47, 15:17] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [23:06, 00:56](703 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:34, 12:01] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [22:40, 02:12](649 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [22:22, 02:09](625 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:47, 00:34](878 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:53, 14:47] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [21:47, 00:40](1822 MB) - -PASS -- COMPILE 'atml_intel' [15:44, 14:59] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [10:36, 09:49] ( 868 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [16:42, 16:12] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [19:53, 01:19](3028 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [19:53, 01:46](2908 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [19:53, 01:54](2921 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:33, 07:21] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:41, 01:58](4442 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:29, 11:27] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [36:29, 02:21](3099 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:29, 12:01] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [36:29, 02:50](1812 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:22, 02:25](1827 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [17:11, 03:08](956 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [36:30, 02:37](1794 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:29, 11:46] ( 1 warnings 8 remarks ) +FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_control_sfs_intel' [, ]( MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:15] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [42:37, 02:39](1842 MB) + +PASS -- COMPILE 's2swa_intel' [12:27, 11:09] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [37:31, 02:31](3133 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [37:31, 02:45](3134 MB) +PASS -- TEST 'cpld_restart_p8_intel' [28:17, 02:04](3057 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [37:31, 02:27](3151 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [28:17, 02:44](3079 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [37:31, 02:02](3368 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [37:31, 02:31](3120 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [37:32, 02:35](3071 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [37:31, 02:43](3137 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [37:40, 05:04](4124 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:07, 05:55](4262 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [37:31, 02:47](3110 MB) + +PASS -- COMPILE 's2sw_intel' [12:28, 10:44] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [37:30, 01:50](1827 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [37:30, 01:59](1900 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:28, 10:16] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [37:31, 02:01](1889 MB) + +PASS -- COMPILE 's2s_intel' [12:28, 10:27] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [37:29, 01:58](2868 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [37:29, 02:29](2874 MB) +PASS -- TEST 'cpld_restart_c48_intel' [32:26, 02:05](2288 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:35, 16:37] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [31:23, 02:52](3127 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:29, 11:43] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:29, 02:10](1825 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:56, 02:38](987 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:33, 02:41](1802 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 05:04] ( 1539 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:18, 02:13](1848 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:23, 08:55] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [27:07, 01:24](570 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [27:07, 01:30](1475 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [27:07, 02:24](1478 MB) +PASS -- TEST 'control_latlon_intel' [27:07, 01:20](1479 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [27:07, 02:27](1475 MB) +PASS -- TEST 'control_c48_intel' [27:06, 01:53](1559 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [27:06, 01:42](695 MB) +PASS -- TEST 'control_c192_intel' [27:07, 02:12](1576 MB) +PASS -- TEST 'control_c384_intel' [27:11, 03:01](1850 MB) +PASS -- TEST 'control_c384gdas_intel' [27:11, 03:44](1064 MB) +PASS -- TEST 'control_stochy_intel' [27:07, 01:26](524 MB) +PASS -- TEST 'control_stochy_restart_intel' [23:42, 02:02](328 MB) +PASS -- TEST 'control_lndp_intel' [27:07, 01:34](525 MB) +PASS -- TEST 'control_iovr4_intel' [27:07, 01:44](520 MB) +PASS -- TEST 'control_iovr5_intel' [27:07, 01:42](520 MB) +PASS -- TEST 'control_p8_intel' [27:07, 02:53](1750 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [27:07, 02:50](1759 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [27:07, 02:54](1759 MB) +PASS -- TEST 'control_restart_p8_intel' [20:41, 01:45](908 MB) +PASS -- TEST 'control_noqr_p8_intel' [23:38, 02:55](1746 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [16:32, 02:00](917 MB) +PASS -- TEST 'control_decomp_p8_intel' [22:38, 02:31](1756 MB) +PASS -- TEST 'control_2threads_p8_intel' [22:38, 02:48](1839 MB) +PASS -- TEST 'control_p8_lndp_intel' [22:30, 02:03](1756 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [22:22, 02:55](1813 MB) +PASS -- TEST 'control_p8_mynn_intel' [22:19, 02:50](1766 MB) +PASS -- TEST 'merra2_thompson_intel' [22:01, 02:48](1761 MB) +PASS -- TEST 'regional_control_intel' [21:42, 02:13](840 MB) +PASS -- TEST 'regional_restart_intel' [13:59, 01:22](839 MB) +PASS -- TEST 'regional_decomp_intel' [21:33, 01:59](844 MB) +PASS -- TEST 'regional_2threads_intel' [21:15, 01:54](899 MB) +PASS -- TEST 'regional_noquilt_intel' [21:08, 01:20](1172 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [20:58, 01:26](852 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [20:39, 02:11](841 MB) +PASS -- TEST 'regional_wofs_intel' [20:39, 01:32](1570 MB) + +PASS -- COMPILE 'rrfs_intel' [10:23, 08:25] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [20:15, 02:59](911 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [19:25, 02:03](1053 MB) +PASS -- TEST 'rap_decomp_intel' [19:17, 02:18](909 MB) +PASS -- TEST 'rap_2threads_intel' [18:06, 02:12](990 MB) +PASS -- TEST 'rap_restart_intel' [09:45, 02:05](777 MB) +PASS -- TEST 'rap_sfcdiff_intel' [16:32, 03:05](906 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:55, 02:21](910 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:02, 02:40](778 MB) +PASS -- TEST 'hrrr_control_intel' [15:38, 02:22](900 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [15:23, 02:52](902 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [15:16, 02:19](980 MB) +PASS -- TEST 'hrrr_control_restart_intel' [09:14, 02:05](733 MB) +PASS -- TEST 'rrfs_v1beta_intel' [15:01, 03:02](900 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [14:44, 01:39](1867 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:31, 02:01](1856 MB) + +PASS -- COMPILE 'csawmg_intel' [09:24, 07:49] +PASS -- TEST 'control_csawmg_intel' [28:05, 01:30](861 MB) +PASS -- TEST 'control_ras_intel' [28:05, 01:58](557 MB) + +PASS -- COMPILE 'wam_intel' [09:24, 07:53] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [28:05, 01:29](1561 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:25, 08:12] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [14:27, 03:05](1756 MB) +PASS -- TEST 'regional_control_faster_intel' [14:08, 01:22](842 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:24, 07:21] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [14:08, 02:18](1488 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [13:59, 02:25](1498 MB) +PASS -- TEST 'control_stochy_debug_intel' [13:55, 01:48](703 MB) +PASS -- TEST 'control_lndp_debug_intel' [13:45, 02:03](705 MB) +PASS -- TEST 'control_csawmg_debug_intel' [13:13, 01:28](1006 MB) +PASS -- TEST 'control_ras_debug_intel' [12:59, 02:04](710 MB) +PASS -- TEST 'control_diag_debug_intel' [12:20, 02:07](1553 MB) +PASS -- TEST 'control_debug_p8_intel' [12:17, 01:51](1783 MB) +PASS -- TEST 'regional_debug_intel' [12:05, 01:13](883 MB) +PASS -- TEST 'rap_control_debug_intel' [11:57, 01:38](1085 MB) +PASS -- TEST 'hrrr_control_debug_intel' [09:25, 01:48](1078 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [09:14, 01:39](1080 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [09:14, 01:39](1083 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:57, 02:35](1086 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:25, 02:20](1164 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:24, 02:29](1085 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:23, 02:33](1087 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:17, 02:28](1080 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:11, 02:27](1086 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:53, 03:21](1081 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:41, 03:09](1080 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:32, 01:29](1082 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:26, 02:58](1081 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:37, 01:57](1083 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:34, 02:00](1082 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [06:31, 02:57](1088 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:19, 04:29] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [30:09, 02:08](1586 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 07:51] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:29, 03:16](918 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:54, 02:58](785 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:17, 03:52](784 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [04:44, 02:13](846 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:31, 03:24](832 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:27, 02:53](780 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [56:46, 02:31](681 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [57:57, 01:21](665 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:25, 07:50] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:06, 03:06](989 MB) +PASS -- TEST 'conus13km_2threads_intel' [58:11, 01:54](994 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [58:05, 01:42](864 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:22, 07:57] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [03:53, 02:15](810 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 04:29] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [03:23, 01:56](960 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [01:49, 01:28](955 MB) +PASS -- TEST 'conus13km_debug_intel' [01:43, 01:53](1037 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [01:43, 01:47](711 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [59:53, 02:11](1046 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [59:47, 01:40](1110 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:20] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [59:47, 01:55](986 MB) + +PASS -- COMPILE 'hafsw_intel' [11:26, 09:25] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [59:50, 02:56](604 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [59:49, 01:46](947 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [59:48, 02:37](637 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [59:46, 02:27](671 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [58:50, 02:34](694 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [58:49, 02:07](380 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [58:47, 03:15](387 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [58:46, 02:41](280 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [58:35, 03:26](365 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [57:58, 01:44](403 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [57:58, 02:07](408 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [57:40, 01:44](478 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [57:27, 01:31](316 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:19, 04:53] ( 1447 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [57:20, 02:17](507 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [10:24, 09:07] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [57:04, 01:49](516 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [56:49, 02:36](702 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:24, 09:06] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [55:53, 02:07](705 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:24, 08:40] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [54:53, 03:07](640 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [54:50, 03:02](628 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [54:27, 01:20](821 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:28, 10:04] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [54:26, 02:36](1822 MB) + +PASS -- COMPILE 'atml_intel' [10:24, 09:02] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [07:20, 05:19] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [09:28, 08:12] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [54:25, 02:16](3025 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [53:54, 02:42](2905 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [53:53, 02:36](2917 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:19, 04:23] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [52:42, 01:45](4443 MB) SYNOPSIS: -Starting Date/Time: 20240809 15:38:32 -Ending Date/Time: 20240809 17:05:15 -Total Time: 01h:27m:22s +Starting Date/Time: 20240905 17:09:45 +Ending Date/Time: 20240905 18:34:06 +Total Time: 01h:24m:50s Compiles Completed: 33/33 -Tests Completed: 156/156 +Tests Completed: 155/156 +Failed Tests: +* TEST cpld_control_sfs_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/jiandewang/ufs-weather-model/tests/logs/log_wcoss2/run_cpld_control_sfs_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF WCOSS2 REGRESSION TESTING LOG==== +====START OF WCOSS2 REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +fec503e13e8d4b6708283f074b01445a68e50f43 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) + ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240904 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_68121 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: GFS-DEV +* (-c) - CREATE NEW BASELINES +* (-n) - RUN SINGLE TEST: cpld_control_sfs +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:35, 12:30] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [20:08, 01:46](1806 MB) + +SYNOPSIS: +Starting Date/Time: 20240905 20:25:17 +Ending Date/Time: 20240905 20:59:08 +Total Time: 00h:34m:06s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/parm/MOM_input_025.IN b/tests/parm/MOM_input_025.IN index 0898e1def4..2a0ef86fcb 100644 --- a/tests/parm/MOM_input_025.IN +++ b/tests/parm/MOM_input_025.IN @@ -882,9 +882,7 @@ CD_TIDES = 0.0018 ! [nondim] default = 1.0E-04 ! The drag coefficient that applies to the tides. GUST_CONST = 0.0 ! [Pa] default = 0.02 ! The background gustiness in the winds. -FIX_USTAR_GUSTLESS_BUG = False ! [Boolean] default = False - ! If true correct a bug in the time-averaging of the gustless wind friction - ! velocity +USTAR_GUSTLESS_BUG = True ! [Boolean] default = False USE_RIGID_SEA_ICE = True ! [Boolean] default = False ! If true, sea-ice is rigid enough to exert a nonhydrostatic pressure that ! resist vertical motion. @@ -902,3 +900,5 @@ PERT_EPBL = @[PERT_EPBL] ! [Boolean] default = False ! === module MOM_restart === RESTART_CHECKSUMS_REQUIRED = False ! === module MOM_file_parser === + +USE_HUYNH_STENCIL_BUG = True diff --git a/tests/parm/MOM_input_050.IN b/tests/parm/MOM_input_050.IN index 3974f87cfe..6712c11877 100644 --- a/tests/parm/MOM_input_050.IN +++ b/tests/parm/MOM_input_050.IN @@ -306,7 +306,7 @@ REMAPPING_SCHEME = "PPM_H4" ! default = "PLM" ! Parameters providing information about the lateral grid. ! === module MOM_state_initialization === -INIT_LAYERS_FROM_Z_FILE = True ! [Boolean] default = False +INIT_LAYERS_FROM_Z_FILE = @[MOM6_INIT_FROM_Z] ! [Boolean] default = False ! If true, initialize the layer thicknesses, temperatures, and salinities from a ! Z-space file on a latitude-longitude grid. @@ -328,7 +328,96 @@ Z_INIT_ALE_REMAPPING = True ! [Boolean] default = False Z_INIT_REMAP_OLD_ALG = True ! [Boolean] default = True ! If false, uses the preferred remapping algorithm for initialization. If true, ! use an older, less robust algorithm for remapping. +! === WARMSTARTS === +THICKNESS_CONFIG = "file" ! default = "uniform" + ! A string that determines how the initial layer thicknesses are specified for a + ! new run: + ! file - read interface heights from the file specified + ! by (THICKNESS_FILE). + ! thickness_file - read thicknesses from the file specified + ! by (THICKNESS_FILE). + ! mass_file - read thicknesses in units of mass per unit area from the file + ! specified by (THICKNESS_FILE). + ! coord - determined by ALE coordinate. + ! uniform - uniform thickness layers evenly distributed + ! between the surface and MAXIMUM_DEPTH. + ! list - read a list of positive interface depths. + ! DOME - use a slope and channel configuration for the + ! DOME sill-overflow test case. + ! ISOMIP - use a configuration for the + ! ISOMIP test case. + ! benchmark - use the benchmark test case thicknesses. + ! Neverworld - use the Neverworld test case thicknesses. + ! search - search a density profile for the interface + ! densities. This is not yet implemented. + ! circle_obcs - the circle_obcs test case is used. + ! DOME2D - 2D version of DOME initialization. + ! adjustment2d - 2D lock exchange thickness ICs. + ! sloshing - sloshing gravity thickness ICs. + ! seamount - no motion test with seamount ICs. + ! dumbbell - sloshing channel ICs. + ! soliton - Equatorial Rossby soliton. + ! rossby_front - a mixed layer front in thermal wind balance. + ! USER - call a user modified routine. +THICKNESS_FILE = @[MOM6_WARMSTART_FILE] ! + ! The name of the thickness file. +ADJUST_THICKNESS = True ! [Boolean] default = False + ! If true, all mass below the bottom removed if the topography is shallower than + ! the thickness input file would indicate. +THICKNESS_TOLERANCE = 0.1 ! [m] default = 0.1 + ! A parameter that controls the tolerance when adjusting the thickness to fit + ! the bathymetry. Used when ADJUST_THICKNESS=True. +INTERFACE_IC_VAR = "eta" ! default = "eta" + ! The variable name for initial conditions for interface heights relative to + ! mean sea level, positive upward unless otherwise rescaled. +INTERFACE_IC_RESCALE = 1.0 ! [various] default = 1.0 + ! A factor by which to rescale the initial interface heights to convert them to + ! units of m or correct sign conventions to positive upward. +TS_CONFIG = "file" ! + ! A string that determines how the initial temperatures and salinities are + ! specified for a new run: + ! file - read velocities from the file specified + ! by (TS_FILE). + ! fit - find the temperatures that are consistent with + ! the layer densities and salinity S_REF. + ! TS_profile - use temperature and salinity profiles + ! (read from TS_FILE) to set layer densities. + ! benchmark - use the benchmark test case T & S. + ! linear - linear in logical layer space. + ! DOME2D - 2D DOME initialization. + ! ISOMIP - ISOMIP initialization. + ! adjustment2d - 2d lock exchange T/S ICs. + ! sloshing - sloshing mode T/S ICs. + ! seamount - no motion test with seamount ICs. + ! dumbbell - sloshing channel ICs. + ! rossby_front - a mixed layer front in thermal wind balance. + ! SCM_CVMix_tests - used in the SCM CVMix tests. + ! USER - call a user modified routine. +TS_FILE = @[MOM6_WARMSTART_FILE] ! + ! The initial condition file for temperature. +TEMP_IC_VAR = "Temp" ! default = "PTEMP" + ! The initial condition variable for potential temperature. +SALT_IC_VAR = "Salt" ! default = "SALT" + ! The initial condition variable for salinity. +SALT_FILE = @[MOM6_WARMSTART_FILE] ! default = "none" + ! The initial condition file for salinity. +VELOCITY_CONFIG = @[MOM6_INIT_UV] ! default = "zero" + ! A string that determines how the initial velocities are specified for a new + ! run: + ! file - read velocities from the file specified + ! by (VELOCITY_FILE). + ! zero - the fluid is initially at rest. + ! uniform - the flow is uniform (determined by + ! parameters INITIAL_U_CONST and INITIAL_V_CONST). + ! rossby_front - a mixed layer front in thermal wind balance. + ! soliton - Equatorial Rossby soliton. + ! USER - call a user modified routine. +VELOCITY_FILE = @[MOM6_WARMSTART_FILE] ! + ! The name of the velocity initial condition file. +U_IC_VAR = "u" ! default = "u" + ! The initial condition variable for zonal velocity in VELOCITY_FILE. +V_IC_VAR = "v" ! default = "v" ! === module MOM_diag_mediator === !Jiande NUM_DIAG_COORDS = 2 ! default = 1 NUM_DIAG_COORDS = 1 ! default = 1 @@ -927,9 +1016,7 @@ CD_TIDES = 0.0018 ! [nondim] default = 1.0E-04 ! The drag coefficient that applies to the tides. GUST_CONST = 0.0 ! [Pa] default = 0.02 ! The background gustiness in the winds. -FIX_USTAR_GUSTLESS_BUG = False ! [Boolean] default = False - ! If true correct a bug in the time-averaging of the gustless wind friction - ! velocity +USTAR_GUSTLESS_BUG = True ! [Boolean] default = False USE_RIGID_SEA_ICE = True ! [Boolean] default = False ! If true, sea-ice is rigid enough to exert a nonhydrostatic pressure that ! resist vertical motion. @@ -947,3 +1034,5 @@ PERT_EPBL = @[PERT_EPBL] ! [Boolean] default = False ! === module MOM_restart === ! === module MOM_file_parser === + +USE_HUYNH_STENCIL_BUG = True diff --git a/tests/parm/MOM_input_100.IN b/tests/parm/MOM_input_100.IN index 70efc8da9d..9f68d0515b 100644 --- a/tests/parm/MOM_input_100.IN +++ b/tests/parm/MOM_input_100.IN @@ -289,7 +289,7 @@ REMAPPING_SCHEME = "PPM_H4" ! default = "PLM" ! Parameters providing information about the lateral grid. ! === module MOM_state_initialization === -INIT_LAYERS_FROM_Z_FILE = True ! [Boolean] default = False +INIT_LAYERS_FROM_Z_FILE = @[MOM6_INIT_FROM_Z] ! [Boolean] default = False ! If true, initialize the layer thicknesses, temperatures, and salinities from a ! Z-space file on a latitude-longitude grid. @@ -310,7 +310,96 @@ Z_INIT_ALE_REMAPPING = True ! [Boolean] default = False Z_INIT_REMAP_OLD_ALG = True ! [Boolean] default = False ! If false, uses the preferred remapping algorithm for initialization. If true, ! use an older, less robust algorithm for remapping. +! === WARMSTARTS === +THICKNESS_CONFIG = "file" ! default = "uniform" + ! A string that determines how the initial layer thicknesses are specified for a + ! new run: + ! file - read interface heights from the file specified + ! by (THICKNESS_FILE). + ! thickness_file - read thicknesses from the file specified + ! by (THICKNESS_FILE). + ! mass_file - read thicknesses in units of mass per unit area from the file + ! specified by (THICKNESS_FILE). + ! coord - determined by ALE coordinate. + ! uniform - uniform thickness layers evenly distributed + ! between the surface and MAXIMUM_DEPTH. + ! list - read a list of positive interface depths. + ! DOME - use a slope and channel configuration for the + ! DOME sill-overflow test case. + ! ISOMIP - use a configuration for the + ! ISOMIP test case. + ! benchmark - use the benchmark test case thicknesses. + ! Neverworld - use the Neverworld test case thicknesses. + ! search - search a density profile for the interface + ! densities. This is not yet implemented. + ! circle_obcs - the circle_obcs test case is used. + ! DOME2D - 2D version of DOME initialization. + ! adjustment2d - 2D lock exchange thickness ICs. + ! sloshing - sloshing gravity thickness ICs. + ! seamount - no motion test with seamount ICs. + ! dumbbell - sloshing channel ICs. + ! soliton - Equatorial Rossby soliton. + ! rossby_front - a mixed layer front in thermal wind balance. + ! USER - call a user modified routine. +THICKNESS_FILE = @[MOM6_WARMSTART_FILE] ! + ! The name of the thickness file. +ADJUST_THICKNESS = True ! [Boolean] default = False + ! If true, all mass below the bottom removed if the topography is shallower than + ! the thickness input file would indicate. +THICKNESS_TOLERANCE = 0.1 ! [m] default = 0.1 + ! A parameter that controls the tolerance when adjusting the thickness to fit + ! the bathymetry. Used when ADJUST_THICKNESS=True. +INTERFACE_IC_VAR = "eta" ! default = "eta" + ! The variable name for initial conditions for interface heights relative to + ! mean sea level, positive upward unless otherwise rescaled. +INTERFACE_IC_RESCALE = 1.0 ! [various] default = 1.0 + ! A factor by which to rescale the initial interface heights to convert them to + ! units of m or correct sign conventions to positive upward. +TS_CONFIG = "file" ! + ! A string that determines how the initial temperatures and salinities are + ! specified for a new run: + ! file - read velocities from the file specified + ! by (TS_FILE). + ! fit - find the temperatures that are consistent with + ! the layer densities and salinity S_REF. + ! TS_profile - use temperature and salinity profiles + ! (read from TS_FILE) to set layer densities. + ! benchmark - use the benchmark test case T & S. + ! linear - linear in logical layer space. + ! DOME2D - 2D DOME initialization. + ! ISOMIP - ISOMIP initialization. + ! adjustment2d - 2d lock exchange T/S ICs. + ! sloshing - sloshing mode T/S ICs. + ! seamount - no motion test with seamount ICs. + ! dumbbell - sloshing channel ICs. + ! rossby_front - a mixed layer front in thermal wind balance. + ! SCM_CVMix_tests - used in the SCM CVMix tests. + ! USER - call a user modified routine. +TS_FILE = @[MOM6_WARMSTART_FILE] ! + ! The initial condition file for temperature. +TEMP_IC_VAR = "Temp" ! default = "PTEMP" + ! The initial condition variable for potential temperature. +SALT_IC_VAR = "Salt" ! default = "SALT" + ! The initial condition variable for salinity. +SALT_FILE = @[MOM6_WARMSTART_FILE] ! default = "none" + ! The initial condition file for salinity. +VELOCITY_CONFIG = @[MOM6_INIT_UV] ! default = "zero" + ! A string that determines how the initial velocities are specified for a new + ! run: + ! file - read velocities from the file specified + ! by (VELOCITY_FILE). + ! zero - the fluid is initially at rest. + ! uniform - the flow is uniform (determined by + ! parameters INITIAL_U_CONST and INITIAL_V_CONST). + ! rossby_front - a mixed layer front in thermal wind balance. + ! soliton - Equatorial Rossby soliton. + ! USER - call a user modified routine. +VELOCITY_FILE = @[MOM6_WARMSTART_FILE] ! + ! The name of the velocity initial condition file. +U_IC_VAR = "u" ! default = "u" + ! The initial condition variable for zonal velocity in VELOCITY_FILE. +V_IC_VAR = "v" ! default = "v" ! === module MOM_diag_mediator === !Jiande NUM_DIAG_COORDS = 2 ! default = 1 NUM_DIAG_COORDS = 1 @@ -854,9 +943,7 @@ CD_TIDES = 0.0018 ! [nondim] default = 1.0E-04 ! The drag coefficient that applies to the tides. GUST_CONST = 0.02 ! [Pa] default = 0.0 ! The background gustiness in the winds. -FIX_USTAR_GUSTLESS_BUG = False ! [Boolean] default = True - ! If true correct a bug in the time-averaging of the gustless wind friction - ! velocity +USTAR_GUSTLESS_BUG = True ! [Boolean] default = False ! === module ocean_stochastics === DO_SPPT = @[DO_OCN_SPPT] ! [Boolean] default = False ! If true perturb the diabatic tendencies in MOM_diabadic_driver @@ -866,3 +953,5 @@ PERT_EPBL = @[PERT_EPBL] ! [Boolean] default = False ! === module MOM_restart === ! === module MOM_file_parser === + +USE_HUYNH_STENCIL_BUG = True diff --git a/tests/parm/MOM_input_500.IN b/tests/parm/MOM_input_500.IN index bf474652ee..aa1befa83e 100644 --- a/tests/parm/MOM_input_500.IN +++ b/tests/parm/MOM_input_500.IN @@ -49,6 +49,9 @@ NJGLOBAL = @[NY_GLB] ! ! The total number of thickness grid points in the y-direction in the physical ! domain. With STATIC_MEMORY_ this is set in MOM_memory.h at compile time. +DEFAULT_ANSWER_DATE = 20231231 ! default = 99991231 + ! This sets the default value for the various _ANSWER_DATE parameters. + ! === module MOM_hor_index === ! Sets the horizontal array index types. @@ -592,3 +595,5 @@ WIND_STAGGER = "A" ! default = "C" ! === module MOM_restart === ! === module MOM_file_parser === + +USE_HUYNH_STENCIL_BUG = True diff --git a/tests/parm/MOM_input_hafs b/tests/parm/MOM_input_hafs index b7fd7e72bc..1b79ea777a 100644 --- a/tests/parm/MOM_input_hafs +++ b/tests/parm/MOM_input_hafs @@ -942,9 +942,7 @@ LATENT_HEAT_VAPORIZATION = 2.5E+06 ! [J/kg] default = 2.5E+06 ! surface anomaly (akin to a piston velocity). Note the non-MKS units. GUST_CONST = 0.0 ! [Pa] default = 0.0 ! The background gustiness in the winds. -FIX_USTAR_GUSTLESS_BUG = True ! [Boolean] default = True - ! If true correct a bug in the time-averaging of the gustless wind friction - ! velocity +USTAR_GUSTLESS_BUG = False ! [Boolean] default = True ! These parameters are used in CORE mode but should not be used in ! the coupled model (CM4). @@ -974,3 +972,5 @@ USE_NET_FW_ADJUSTMENT_SIGN_BUG = False ! [Boolean] default = True ! === module MOM_restart === ! === module MOM_file_parser === + +USE_HUYNH_STENCIL_BUG = True diff --git a/tests/parm/control.nml.IN b/tests/parm/control.nml.IN index d48d1fb422..c7b45874f1 100644 --- a/tests/parm/control.nml.IN +++ b/tests/parm/control.nml.IN @@ -89,6 +89,7 @@ agrid_vel_rst = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/parm/control_ca.nml.IN b/tests/parm/control_ca.nml.IN index 95abe17265..527eb7e296 100644 --- a/tests/parm/control_ca.nml.IN +++ b/tests/parm/control_ca.nml.IN @@ -89,6 +89,7 @@ agrid_vel_rst = .true. read_increment = .false. res_latlon_dynamics = "" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/parm/control_csawmg.nml.IN b/tests/parm/control_csawmg.nml.IN index 6729ed1031..88a46c3e58 100644 --- a/tests/parm/control_csawmg.nml.IN +++ b/tests/parm/control_csawmg.nml.IN @@ -87,6 +87,7 @@ z_tracer = .true. agrid_vel_rst = .true. read_increment = .false. + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] res_latlon_dynamics = "" / diff --git a/tests/parm/control_flake.nml.IN b/tests/parm/control_flake.nml.IN index cea5817471..27f96e5c61 100644 --- a/tests/parm/control_flake.nml.IN +++ b/tests/parm/control_flake.nml.IN @@ -88,6 +88,7 @@ agrid_vel_rst = .true. read_increment = .false. res_latlon_dynamics = "" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/parm/control_gdas.nml.IN b/tests/parm/control_gdas.nml.IN index 9ffeadd0e3..0d5991b24a 100644 --- a/tests/parm/control_gdas.nml.IN +++ b/tests/parm/control_gdas.nml.IN @@ -91,7 +91,7 @@ agrid_vel_rst = .true. read_increment = .false. res_latlon_dynamics = "" - + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &cires_ugwp_nml diff --git a/tests/parm/control_gfsv17.nml.IN b/tests/parm/control_gfsv17.nml.IN index 247cca85e8..ce77835c8f 100644 --- a/tests/parm/control_gfsv17.nml.IN +++ b/tests/parm/control_gfsv17.nml.IN @@ -89,6 +89,7 @@ agrid_vel_rst = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/parm/control_noahmp.nml.IN b/tests/parm/control_noahmp.nml.IN index 6082aa789b..bc61672a00 100644 --- a/tests/parm/control_noahmp.nml.IN +++ b/tests/parm/control_noahmp.nml.IN @@ -88,6 +88,7 @@ agrid_vel_rst = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/parm/csawmg3shoc127.nml.IN b/tests/parm/csawmg3shoc127.nml.IN index b01ba5f205..d510d0ca6f 100644 --- a/tests/parm/csawmg3shoc127.nml.IN +++ b/tests/parm/csawmg3shoc127.nml.IN @@ -90,6 +90,7 @@ z_tracer = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = "fv3_increment.nc" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/parm/csawmgshoc.nml.IN b/tests/parm/csawmgshoc.nml.IN index 3f77e6fd0f..2bd6144f3e 100644 --- a/tests/parm/csawmgshoc.nml.IN +++ b/tests/parm/csawmgshoc.nml.IN @@ -89,6 +89,7 @@ z_tracer = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = "fv3_increment.nc" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/parm/datm.streams.IN b/tests/parm/datm.streams.IN index f6ec3e1b16..bac426f620 100644 --- a/tests/parm/datm.streams.IN +++ b/tests/parm/datm.streams.IN @@ -1,4 +1,4 @@ -stream_info: @[FILENAME_BASE]01 +stream_info: @[FILEBASE_DATM].01 taxmode01: limit mapalgo01: bilinear tInterpAlgo01: linear diff --git a/tests/parm/global_control.nml.IN b/tests/parm/global_control.nml.IN index ecdc0c5d0b..8868906af9 100644 --- a/tests/parm/global_control.nml.IN +++ b/tests/parm/global_control.nml.IN @@ -94,6 +94,7 @@ agrid_vel_rst = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/parm/input_global_hafs.nml.IN b/tests/parm/input_global_hafs.nml.IN index fdc887c8f5..2c7173fce7 100644 --- a/tests/parm/input_global_hafs.nml.IN +++ b/tests/parm/input_global_hafs.nml.IN @@ -94,6 +94,7 @@ agrid_vel_rst = .true. read_increment = .false. res_latlon_dynamics = "fv3_increment.nc" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] write_3d_diags = .true. do_schmidt = .true. diff --git a/tests/parm/input_global_nest.nml.IN b/tests/parm/input_global_nest.nml.IN index affbb2af94..dab50280d1 100644 --- a/tests/parm/input_global_nest.nml.IN +++ b/tests/parm/input_global_nest.nml.IN @@ -101,6 +101,7 @@ agrid_vel_rst = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] nested = @[NESTED] twowaynest = @[TWOWAYNEST02] nestupdate = 7 diff --git a/tests/parm/input_global_parent.nml.IN b/tests/parm/input_global_parent.nml.IN index 2027367087..33c1baa34f 100644 --- a/tests/parm/input_global_parent.nml.IN +++ b/tests/parm/input_global_parent.nml.IN @@ -100,6 +100,7 @@ agrid_vel_rst = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] do_schmidt = .true. target_lat = @[TARGET_LAT] target_lon = @[TARGET_LON] diff --git a/tests/parm/input_nest02.nml.IN b/tests/parm/input_nest02.nml.IN index 561afaffa9..4056f629bb 100644 --- a/tests/parm/input_nest02.nml.IN +++ b/tests/parm/input_nest02.nml.IN @@ -89,6 +89,7 @@ warm_start = @[WARM_START] read_increment = @[READ_INCREMENT] res_latlon_dynamics = "fv3_increment.nc" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] no_dycore = .false. z_tracer = .true. diff --git a/tests/parm/input_nest_hafs.nml.IN b/tests/parm/input_nest_hafs.nml.IN index 3fdf8e7d5e..055e4ddeac 100644 --- a/tests/parm/input_nest_hafs.nml.IN +++ b/tests/parm/input_nest_hafs.nml.IN @@ -94,6 +94,7 @@ agrid_vel_rst = .true. read_increment = .false. res_latlon_dynamics = "fv3_increment.nc" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] write_3d_diags = .true. nested = .true. diff --git a/tests/parm/input_regional_hafs.nml.IN b/tests/parm/input_regional_hafs.nml.IN index d88db070ef..95cec669bd 100644 --- a/tests/parm/input_regional_hafs.nml.IN +++ b/tests/parm/input_regional_hafs.nml.IN @@ -93,6 +93,7 @@ agrid_vel_rst = .true. read_increment = .false. res_latlon_dynamics = "fv3_increment.nc" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] write_3d_diags = .true. do_schmidt = .true. diff --git a/tests/parm/params_grib2_tbl_new b/tests/parm/params_grib2_tbl_new old mode 100644 new mode 100755 index 396a77e9ca..20ab866ed4 --- a/tests/parm/params_grib2_tbl_new +++ b/tests/parm/params_grib2_tbl_new @@ -5,6 +5,7 @@ 0 3 15 0 5WAVH 0 3 193 1 5WAVH 0 20 106 0 AACOEF + 4 10 4 0 AATRATE 0 2 11 0 ABSD 4 2 5 0 ABSFRQ 0 1 18 0 ABSH @@ -24,8 +25,10 @@ 0 2 36 0 AFRWE 0 20 50 0 AIA 0 18 10 0 AIRCON + 10 0 82 0 AIRDENOC 2 0 208 1 AKHS 2 0 209 1 AKMS + 10 2 14 0 ALBDOICE 0 19 1 0 ALBDO 0 20 108 0 ALBGRD 0 20 107 0 ALBSAT @@ -37,6 +40,7 @@ 0 3 11 0 ALTS 10 0 37 0 ALTWH 2 0 219 1 AMIXL + 4 5 0 0 AMPL 3 192 11 0 AMSRE10 3 192 12 0 AMSRE11 3 192 13 0 AMSRE12 @@ -65,7 +69,11 @@ 0 190 0 0 ATEXT 3 1 13 0 ATMDIV 0 20 101 0 ATMTK + 4 10 7 0 AURELEC + 20 1 8 0 AVECTNUM + 20 1 7 0 AVHRATIO 2 3 201 1 AVSFT + 10 191 4 0 BARDSF 2 3 200 1 BARET 10 4 7 0 BATHY 10 0 44 0 BENINX @@ -79,6 +87,7 @@ 2 0 197 1 BMIXL 0 7 201 1 BNEGELAY 2 3 4 0 BOTLST + 10 4 29 0 BPEH 0 7 202 1 BPOSELAY 0 15 1 0 BREF 3 1 27 0 BRFLF @@ -87,6 +96,11 @@ 0 15 2 0 BRVEL 0 15 0 0 BSWID 4 3 0 0 BTOT + 2 6 2 0 BUILDCOVER + 2 6 3 0 BUILDHGT + 2 4 21 0 BURNABAREA + 2 4 20 0 BURNAREA + 2 4 17 0 BURNIDX 4 3 1 0 BVEC1 4 3 2 0 BVEC2 4 3 3 0 BVEC3 @@ -94,6 +108,7 @@ 4 8 4 0 CAIIRAD 0 7 206 1 CANGLE 2 1 192 1 CANL + 2 0 63 0 CANTMP 0 7 6 0 CAPE 0 1 88 0 CATCP 0 19 29 0 CATEDR @@ -111,27 +126,48 @@ 0 6 11 0 CDCB 0 6 22 0 CDCC 0 17 3 0 CDCDLTFD + 0 1 162 0 CDCIMF 0 6 23 0 CDCIMR + 0 1 161 0 CDCLWMF 0 6 2 0 CDCON 0 6 12 0 CDCTOP 0 6 8 0 CDCT 0 17 2 0 CDGDLTFD + 0 3 43 0 CDGFLUX + 0 20 80 0 CDIVMF 0 6 14 0 CDLYR 0 6 192 1 CDLYR + 0 1 163 0 CDRMF + 0 1 164 0 CDSMF + 0 3 35 0 CDTMF + 0 1 165 0 CDTWMF 0 4 195 1 CDUVB + 0 1 160 0 CDWFMF + 0 3 42 0 CDWGFLUX 10 0 16 0 CDWW 0 2 29 0 CD 0 2 196 1 CD + 0 1 154 0 CECIMF + 0 1 152 0 CECLWMF + 0 1 158 0 CEFMF + 0 3 40 0 CEGFLUX 0 6 13 0 CEIL + 0 20 78 0 CEMF + 0 1 156 0 CERMF + 0 3 36 0 CETMF + 0 1 150 0 CEWVMF 0 5 197 1 CFNLF 0 4 199 1 CFNSF 0 1 34 0 CFRZR 0 1 193 1 CFRZR 0 20 54 0 CGDRC 0 20 53 0 CGPRC + 10 0 76 0 CHNCK + 0 1 147 0 CHPRECIP 10 3 2 0 CH 0 18 17 0 CIAIRC 0 19 206 1 CICEL + 0 1 146 0 CICEPR 0 1 35 0 CICEP 0 1 194 1 CICEP 10 2 12 0 CICES @@ -147,6 +183,7 @@ 2 3 22 0 CISICE 2 3 20 0 CISOILM 2 0 23 0 CISOILW + 0 19 50 0 CITEDR 0 19 207 1 CIVIS 3 2 9 0 CLDALB 3 2 10 0 CLDEMISS @@ -156,12 +193,23 @@ 3 2 6 0 CLDPER 3 2 4 0 CLDPHAS 3 1 16 0 CLDRAD + 3 1 31 0 CLDREF 3 2 3 0 CLDTYPE 0 1 235 1 CLLMR 0 1 22 0 CLMR 3 0 7 0 CLOUDM + 3 1 32 0 CLRREF + 0 3 39 0 CMATMOS + 0 1 155 0 CNCIMF + 0 1 153 0 CNCLWMF + 0 20 81 0 CNETS + 0 3 41 0 CNGFLUX 0 2 216 1 CNGWDU 0 2 217 1 CNGWDV + 0 20 79 0 CNMF + 0 1 157 0 CNRMF + 0 1 159 0 CNSMF + 0 3 37 0 CNTMF 0 3 209 1 CNVDEMF 0 3 208 1 CNVDMF 0 0 196 1 CNVHR @@ -171,8 +219,10 @@ 0 2 213 1 CNVV 2 0 13 0 CNWAT 2 0 196 1 CNWAT + 0 1 151 0 CNWVMF 0 20 56 0 COAIA 0 20 1 0 COLMD + 2 4 24 0 COMBCO 0 20 51 0 CONAIR 0 7 19 0 CONAPES 0 1 216 1 CONDP @@ -209,6 +259,7 @@ 0 1 33 0 CRAIN 0 1 192 1 CRAIN 0 20 71 0 CRERELSP + 2 0 48 0 CROPCOV 0 1 76 0 CRRATE 4 2 9 0 CRTFRQ 1 2 13 0 CSAFC @@ -219,6 +270,8 @@ 3 1 17 0 CSKYRAD 0 1 36 0 CSNOW 0 1 195 1 CSNOW + 20 3 8 0 CSPPCAP + 20 3 9 0 CSPPROD 0 1 58 0 CSRATE 0 1 55 0 CSRWE 0 5 195 1 CSULF @@ -230,29 +283,41 @@ 0 19 21 0 CTP 0 6 16 0 CUEFI 0 6 194 1 CUEFI + 0 19 239 1 CWASP + 0 1 149 0 CWATERMR 0 6 6 0 CWAT 0 7 195 1 CWDI 0 6 15 0 CWORK 0 6 193 1 CWORK 0 1 48 0 CWP 1 1 195 1 CWR + 0 1 166 0 CWVF + 0 19 41 0 DBHEIGHT 10 4 195 1 DBSS 0 7 203 1 DCAPE + 2 4 33 0 DDLMC 0 20 12 0 DDMFLX 0 3 30 0 DDRATE + 2 6 8 0 DDROAD + 2 6 6 0 DDROOF 0 20 15 0 DDVEL - 2 0 30 0 DECF + 2 4 35 0 DDWMC + 2 0 30 0 DECFC + 0 2 61 0 DEC 0 3 14 0 DENALT 0 3 10 0 DEN 0 0 7 0 DEPR 1 0 13 0 DEPWSS + 20 1 6 0 DFPRATIO 10 2 2 0 DICED + 4 10 3 0 DIDXSG 4 4 2 0 DIFEFLUX 4 4 4 0 DIFIFLUX 4 4 0 0 DIFPFLUX 3 6 5 0 DIFSOLEX 3 6 4 0 DIFSOLIR 0 4 14 0 DIFSWRF + 2 6 7 0 DIOWALL 10 1 0 0 DIRC 2 3 14 0 DIREC 10 0 10 0 DIRPW @@ -263,36 +328,82 @@ 10 0 32 0 DIRWWW 1 0 7 0 DISRS 0 3 6 0 DIST + 0 21 13 0 DIVENTFLUX + 0 21 16 0 DIVKENGFLUX + 0 21 14 0 DIVPOTFLUX + 0 21 17 0 DIVTOTFLUX + 0 21 18 0 DIVWENTFLUX + 0 21 15 0 DIVWPOTFLUX + 2 4 29 0 DLFL 0 5 8 0 DLWRFCS 0 5 3 0 DLWRF 0 5 192 1 DLWRF 0 3 28 0 DMFLX + 0 4 54 0 DNSWRFLX + 0 1 123 0 DPTYPE 0 0 6 0 DPT + 2 0 43 0 DRAINDIR + 2 4 13 0 DRFACT 2 4 8 0 DRTCODE 0 18 12 0 DRYDEP 0 19 237 1 DRYTPROB 4 7 2 0 DSKDAY 4 7 1 0 DSKINT 4 7 3 0 DSKNGT + 10 3 20 0 DSLIBARCOR 10 3 1 0 DSLM 10 191 3 0 DSLOBSO 0 191 3 0 DSLOBS 0 4 52 0 DSWRFCS + 0 4 61 0 DSWRFLXCS 0 4 13 0 DSWRFLX 0 4 7 0 DSWRF 0 4 192 1 DSWRF + 0 2 60 0 DTC 0 4 204 1 DTRF 2 4 7 0 DUFMCODE 0 4 194 1 DUVB + 2 4 30 0 DWFL + 10 3 4 0 DWHFLUX 0 4 12 0 DWUVR 0 2 9 0 DZDT 0 7 207 1 E3KH + 0 21 22 0 EADYGR 3 2 11 0 EAODR + 10 1 5 0 EASTCUR + 0 21 5 0 EASTENTFLUX + 0 21 19 0 EASTHFLUX + 0 21 9 0 EASTKINFLUX + 0 21 7 0 EASTPOTFLUX + 0 21 11 0 EASTTOTFLUX + 0 2 64 0 EASTTSSOD + 0 2 66 0 EASTTSSSR + 0 2 62 0 EASTTSS + 10 3 5 0 EASTWSS + 10 4 23 0 EASTWVEL 3 5 5 0 EBSDSSTS 3 5 4 0 EBSSTSTD + 2 0 61 0 ECORFLUX + 4 10 6 0 EDISSTIX 0 19 30 0 EDPARM + 0 1 138 0 EFARCICE + 0 1 140 0 EFARGRL + 0 1 141 0 EFARHAIL + 0 1 137 0 EFARRAIN + 0 1 142 0 EFARSIC + 0 1 139 0 EFARSNOW + 20 0 5 0 EFFTEMP 0 7 204 1 EFHL + 0 1 129 0 EFRCCWAT + 0 1 131 0 EFRCICE + 0 1 133 0 EFRGRL + 0 1 134 0 EFRHAIL + 0 1 130 0 EFRRAIN + 0 1 136 0 EFRSICEC + 0 1 135 0 EFRSLC + 0 1 132 0 EFRSNOW 0 3 222 1 EFSH + 10 0 89 0 EFWS 0 7 9 0 EHLX 2 0 237 1 EIWATER 4 2 1 0 ELCDEN @@ -302,9 +413,15 @@ 0 0 205 1 ELMELT 0 191 197 1 ELONN 0 191 193 1 ELON + 0 20 76 0 EMISFLX + 2 0 62 0 EMISS + 10 0 93 0 EMIWAVE 0 1 211 1 EMNP + 2 4 19 0 ENRELCOM + 0 21 3 0 ENTHALPY 0 0 3 0 EPOT 0 19 218 1 EPSR + 4 2 13 0 EQSLABT 10 3 252 1 EROSNP 1 0 3 0 ESCT 0 2 233 1 ESHR @@ -312,6 +429,8 @@ 3 1 0 0 ESTP 3 1 4 0 ESTUGRD 3 1 5 0 ESTVGRD + 10 3 14 0 ESURFWVEL + 10 4 38 0 ESWVP 0 2 32 0 ETACVV 10 3 250 1 ETCWL 4 3 4 0 ETOT @@ -319,6 +438,7 @@ 0 2 38 0 ETSS 4 6 3 0 EUVIRR 4 8 1 0 EUVRAD + 2 0 39 0 EVAPTRAT 2 0 6 0 EVAPT 0 1 79 0 EVARATE 2 3 198 1 EVBS @@ -326,22 +446,29 @@ 4 3 5 0 EVEC1 4 3 6 0 EVEC2 4 3 7 0 EVEC3 - 2 0 29 0 EVERF + 2 0 29 0 EVGFC 0 1 6 0 EVP 2 0 213 1 EWATR + 0 2 50 0 EWINDSTR 0 2 39 0 EWTPARM + 0 3 26 0 EXPRES 4 6 5 0 F107 + 20 1 5 0 FALPRATE 2 4 3 0 FBAREA 2 4 10 0 FBUPINX 0 6 37 0 FCONPC + 10 0 81 0 FCVOCEAN + 2 4 32 0 FDLMC 3 5 3 0 FDNSSTMP 2 4 11 0 FDSRTE + 2 4 34 0 FDWMC 1 0 0 0 FFLDG 1 0 1 0 FFLDRO 2 4 6 0 FFMCODE 0 1 228 1 FICEAC 0 6 21 0 FICE 0 6 199 1 FICE + 2 4 15 0 FIREDIDX 3 0 9 0 FIREDI 2 4 1 0 FIREODT 2 4 0 0 FIREOLK @@ -349,11 +476,15 @@ 1 0 12 0 FLDPSW 0 19 205 1 FLGHT 0 7 18 0 FLXRN + 20 1 9 0 FMALVRH + 0 6 50 0 FOG 2 4 4 0 FOSINDX 0 1 67 0 FPRATE 0 6 32 0 FRACCC + 2 4 36 0 FRADPOW 0 1 43 0 FRAIN 0 1 202 1 FRAIN + 4 5 2 0 FREQ 10 0 63 0 FREWWW 10 0 17 0 FRICVW 0 2 30 0 FRICV @@ -361,12 +492,19 @@ 0 1 227 1 FROZR 2 3 24 0 FRSTINX 10 0 64 0 FRWWTSW + 10 2 29 0 FRZDATE + 10 2 27 0 FRZMLTPOT 0 1 225 1 FRZR 10 3 204 1 FRZSPR 0 1 121 0 FSNOWC 0 6 36 0 FSTRPC + 2 4 23 0 FUELLOAD + 2 4 25 0 FUELMC + 10 4 31 0 FWFC + 10 4 30 0 FWFSW 2 4 5 0 FWINX 0 1 95 0 FZPRATE + 0 3 33 0 GAMSL 0 18 3 0 GDCES 0 18 4 0 GDIOD 0 18 5 0 GDRADP @@ -376,13 +514,19 @@ 0 2 44 0 GEOWS 2 0 10 0 GFLUX 2 0 193 1 GFLUX + 0 3 34 0 GHARGRD + 2 5 0 0 GLACCOV 2 5 1 0 GLACTMP + 0 19 47 0 GLIRRTS + 20 0 3 0 GLOBETMP 0 3 9 0 GPA 0 1 75 0 GPRATE 0 3 4 0 GP 0 4 3 0 GRAD + 2 0 49 0 GRASSCOV 0 7 17 0 GRDRN 0 1 32 0 GRLE + 2 0 60 0 GROSSFLUX 3 6 1 0 GSOLEXP 3 6 0 0 GSOLIRR 0 2 22 0 GUST @@ -396,13 +540,16 @@ 0 19 198 1 HAILPROB 0 1 73 0 HAILPR 0 1 31 0 HAIL + 10 3 10 0 HALOCSSH 4 8 2 0 HARAD 0 19 210 1 HAVNI + 20 1 3 0 HBRATEAV 0 6 5 0 HCDC 0 6 26 0 HCONCB 0 6 27 0 HCONCT 0 0 12 0 HEATX 4 8 6 0 HELCOR + 10 3 18 0 HFLUXCOR 2 0 24 0 HFLUX 0 20 62 0 HGTMD 0 3 211 1 HGTN @@ -411,6 +558,7 @@ 0 3 5 0 HGT 0 19 32 0 HIFREL 2 4 2 0 HINDEX + 2 0 54 0 HIVEGCOV 0 7 8 0 HLCY 0 18 16 0 HMXACON 0 3 18 0 HPBL @@ -421,14 +569,22 @@ 0 15 15 0 HSR 0 3 7 0 HSTDV 10 0 3 0 HTSGW + 20 0 4 0 HUMIDX + 0 3 44 0 HWBT 0 3 3 0 ICAHT 1 2 7 0 ICECIL 10 2 0 0 ICEC 10 2 7 0 ICED + 10 2 19 0 ICEFTHCK 10 2 6 0 ICEG + 10 2 21 0 ICEMPD + 10 2 20 0 ICEMPF + 10 2 22 0 ICEMPV 10 2 9 0 ICEPRS + 0 1 127 0 ICEP 0 19 27 0 ICESC 0 19 37 0 ICESEV + 2 3 29 0 ICETEMP 1 2 6 0 ICETIL 10 2 1 0 ICETK 10 2 8 0 ICETMP @@ -441,6 +597,7 @@ 0 19 234 1 ICSEV 1 2 5 0 ICTKIL 2 0 207 1 ICWAT + 2 4 18 0 IGNCOMP 0 1 20 0 ILIQW 10 0 27 0 IMFTSW 10 0 26 0 IMFWW @@ -454,13 +611,19 @@ 4 0 3 0 IONTMP 0 1 68 0 IPRATE 3 1 1 0 IRRATE + 2 0 47 0 IRRCOV 10 191 0 0 IRTSEC 3 5 0 0 ISSTMP 0 19 235 1 JFWPRB 10 3 201 1 KENG + 0 21 1 0 KINENG 0 7 3 0 KOX + 4 10 5 0 KP + 2 4 12 0 KRIDX 10 0 43 0 KSSEDW 0 7 2 0 KX + 2 0 56 0 LAIHI + 2 0 55 0 LAILO 0 7 198 1 LAI 2 0 234 1 LAKEFRC 2 0 233 1 LANDFRC @@ -476,19 +639,26 @@ 0 3 205 1 LAYTH 0 6 3 0 LCDC 10 3 203 1 LCH + 1 2 15 0 LDEPTH 2 0 28 0 LEAINX + 2 4 31 0 LFMC 0 7 10 0 LFTX 0 7 192 1 LFTX + 0 0 30 0 LHFLXE + 0 0 31 0 LHFLXS 0 0 10 0 LHTFL 0 1 229 1 LICEAC 0 13 195 1 LIPMF 2 3 10 0 LIQVSM + 2 4 27 0 LLFL 0 15 4 0 LMAXBR 4 7 0 0 LMBINT 0 3 210 1 LMH 0 2 218 1 LMV + 1 2 14 0 LNDSNOWT 0 2 203 1 LOPP 0 2 199 1 LOUV + 2 0 53 0 LOVEGCOV 0 2 201 1 LOVV 2 3 3 0 LOWLSM 0 13 194 1 LPMTF @@ -507,9 +677,13 @@ 0 17 192 1 LTNG 0 17 1 0 LTPINX 0 5 2 0 LWAVR + 2 4 28 0 LWFL 0 5 194 1 LWHR 0 4 5 0 LWRAD 2 3 23 0 LWSNWP + 20 1 1 0 MACPRATE + 20 1 0 0 MALACASE + 20 1 4 0 MALAIMM 4 8 7 0 MASK 0 6 38 0 MASSDCD 0 6 39 0 MASSDCI @@ -525,6 +699,7 @@ 0 2 21 0 MAXGUST 0 16 198 1 MAXREF 0 1 27 0 MAXRH + 4 2 10 0 MAXUFZ 0 2 220 1 MAXUVV 0 2 222 1 MAXUW 0 1 245 1 MAXVIG @@ -538,16 +713,22 @@ 0 1 112 0 MDLWGVA 0 1 109 0 MDLWHVA 0 1 115 0 MDLWSVA + 10 0 74 0 MDTSWEL + 10 0 75 0 MDWWAVE 3 2 30 0 MEACST + 20 0 1 0 MEANRTMP + 0 19 44 0 MEANVGRTL 0 6 200 1 MFLUX 0 2 26 0 MFLX 0 2 193 1 MFLX 0 0 14 0 MINDPD 0 1 198 1 MINRH + 0 19 45 0 MINVGRTL 0 19 3 0 MIXHT 0 19 204 1 MIXLY 0 1 2 0 MIXR 0 7 212 1 MLFC + 10 2 28 0 MLTDATE 0 191 195 1 MLYNO 0 1 114 0 MMLWGDA 0 1 111 0 MMLWHDA @@ -566,6 +747,7 @@ 10 0 20 0 MSSW 2 0 11 0 MSTAV 2 0 194 1 MSTAV + 2 3 204 1 MSTAV 2 0 7 0 MTERH 10 4 1 0 MTHA 10 4 0 0 MTHD @@ -598,25 +780,53 @@ 0 6 30 0 NDENCD 2 0 31 0 NDVINX 2 0 217 1 NDVI + 2 0 59 0 NECOFLUX + 10 0 85 0 NEFOCEAN + 10 0 83 0 NEFW + 0 19 46 0 NETRADFLUX + 10 3 13 0 NETUPWFLUX + 0 5 9 0 NIRALBDIF + 0 5 11 0 NIRALBDIRG + 0 5 12 0 NIRALBDIRI + 0 5 13 0 NIRALBDIRV + 0 5 10 0 NIRALBDIR 0 191 196 1 NLATN 0 191 192 1 NLAT 0 3 206 1 NLGSP 0 3 25 0 NLPRES + 0 2 54 0 NLSRLH + 0 2 55 0 NLSRLM 0 5 6 0 NLWRCS 0 5 5 0 NLWRF 0 5 0 0 NLWRS 0 5 1 0 NLWRT + 20 0 6 0 NOREFTMP + 10 3 6 0 NORTHWSS 3 1 6 0 NPIXU + 10 1 6 0 NRTHCUR + 0 21 6 0 NRTHENTFLUX + 0 21 20 0 NRTHHFLUX + 0 21 10 0 NRTHKINFLUX + 0 21 8 0 NRTHPOTFLUX + 0 21 12 0 NRTHTOTFLUX + 0 2 65 0 NRTHTSSOD + 0 2 67 0 NRTHTSSSR + 0 2 63 0 NRTHTSS + 10 4 24 0 NRTHWVEL + 10 0 84 0 NSOCEAN + 10 3 15 0 NSURFWVEL 0 4 11 0 NSWRFCS 0 4 9 0 NSWRF 0 4 0 0 NSWRS 0 4 1 0 NSWRT + 10 4 39 0 NSWVP 4 4 6 0 NTRNFLUX 0 2 37 0 NTSS 0 1 106 0 NUMDG 0 1 107 0 NUMDH 0 1 104 0 NUMDR 0 1 105 0 NUMDS + 0 2 51 0 NWINDSTR 0 2 34 0 NWIND 0 19 214 1 NWSALB 10 0 19 0 NWSTR @@ -648,19 +858,35 @@ 2 0 235 1 PAHFLX 3 3 2 0 PBINFRC 3 3 1 0 PBLIFRC + 0 1 126 0 PBLIZZ 0 19 12 0 PBLREG 3 3 0 0 PBMVFRC + 0 1 125 0 PBSNOW + 0 19 49 0 PCONTB + 0 19 48 0 PCONTT 0 1 234 1 PCPDUR 0 14 202 1 PDMAX1 0 14 203 1 PDMAX24 + 10 0 72 0 PDTSWELL + 10 0 71 0 PDWWAVE + 4 2 12 0 PEAKDEN + 4 2 11 0 PEAKH + 20 0 8 0 PEQUTMP + 0 1 143 0 PERATE 10 0 11 0 PERPW 1 0 16 0 PERRATE 10 0 13 0 PERSW + 2 0 40 0 PEVAPTRAT 0 1 40 0 PEVAP 0 1 199 1 PEVAP 0 1 41 0 PEVPR 0 1 200 1 PEVPR + 20 1 2 0 PFEIRATE + 4 5 1 0 PHASE + 0 4 60 0 PHOARFCS 0 4 10 0 PHOTAR + 0 1 122 0 PIIDX + 0 21 21 0 PILENERGY 3 0 8 0 PIXST 2 0 238 1 PLANTTR 0 7 0 0 PLI @@ -669,9 +895,12 @@ 10 0 23 0 PMAXWH 0 13 192 1 PMTC 0 13 193 1 PMTF + 20 2 0 0 POPDEN 1 1 2 0 POP 2 3 9 0 POROS 2 3 197 1 POROS + 0 20 18 0 POTHPH + 0 21 0 0 POTINTENG 0 0 2 0 POT 0 14 199 1 POZO 0 14 198 1 POZT @@ -681,11 +910,13 @@ 1 1 194 1 PPFFG 0 1 231 1 PPINDX 1 1 1 0 PPOSP + 10 3 3 0 PRACTSAL 0 1 7 0 PRATE 4 0 4 0 PRATMP 0 15 5 0 PREC 0 3 13 0 PRESALT 0 3 8 0 PRESA + 0 3 46 0 PRESDHS 0 3 212 1 PRESN 0 3 0 0 PRES 0 3 1 0 PRMSL @@ -697,6 +928,7 @@ 0 19 216 1 PRSIGSVR 0 19 215 1 PRSVR 10 4 21 0 PRTSAL + 0 1 124 0 PSHOW 0 19 36 0 PSNOWS 0 3 2 0 PTEND 0 1 19 0 PTYPE @@ -705,23 +937,33 @@ 0 1 3 0 PWAT 10 0 46 0 PWAVEDIR 0 1 30 0 PWCAT + 10 0 68 0 PWDFSPAR + 10 0 69 0 PWDSSPAR + 10 0 70 0 PWDTSPAR 10 0 34 0 PWPER + 10 0 65 0 PWPFSPAR + 10 0 66 0 PWPSSPAR + 10 0 67 0 PWPTSPAR 0 1 226 1 PWTHER 0 1 219 1 QMAX 0 1 220 1 QMIN + 1 1 196 1 QPFARI + 1 1 197 1 QPFFFG 2 0 215 1 QREC 0 1 218 1 QZ0 0 16 201 1 RADARVIL 2 3 202 1 RADT + 2 4 14 0 RATESPRD 3 1 8 0 RAZA - 2 0 21 0 RCQ + 2 0 20 0 RCQ 2 0 204 1 RCQ - 2 0 20 0 RCSOL + 2 0 21 0 RCSOL 2 0 205 1 RCSOL 2 0 18 0 RCS 2 0 202 1 RCS 2 0 19 0 RCT 2 0 203 1 RCT + 1 2 16 0 RDEPTH 2 0 206 1 RDRIP 0 15 6 0 RDSP1 0 15 7 0 RDSP2 @@ -739,6 +981,8 @@ 0 16 192 1 REFZR 0 2 13 0 RELD 0 2 12 0 RELV + 20 3 0 0 RENPCAP + 20 3 1 0 RENPPROD 0 16 3 0 RETOP 0 16 197 1 RETOP 0 0 194 1 REV @@ -746,6 +990,7 @@ 0 15 10 0 RFCI 0 15 13 0 RFGRPL 0 15 14 0 RFHAIL + 3 1 30 0 RFL04 3 1 9 0 RFL06 3 1 10 0 RFL08 3 1 11 0 RFL16 @@ -763,6 +1008,8 @@ 0 7 194 1 RI 2 3 6 0 RLYRS 2 3 193 1 RLYRS + 2 6 1 0 ROADCOVER + 4 10 2 0 ROTIDX 0 1 65 0 RPRATE 2 0 16 0 RSMIN 2 0 200 1 RSMIN @@ -770,11 +1017,13 @@ 0 191 194 1 RTSEC 10 3 206 1 RUNUP 1 0 11 0 RVERSW + 10 0 80 0 RWAVEAFW 0 1 24 0 RWMR 0 18 14 0 SACON 0 20 100 0 SADEN 0 19 19 0 SALBD 3 0 1 0 SALBEDO + 10 3 21 0 SALINITY 10 4 193 1 SALIN 1 2 12 0 SALTIL 10 4 3 0 SALTY @@ -812,6 +1061,16 @@ 3 192 36 0 SBTA177 3 192 37 0 SBTA178 3 192 38 0 SBTA179 + 3 192 79 0 SBTA1810 + 3 192 80 0 SBTA1811 + 3 192 81 0 SBTA1812 + 3 192 82 0 SBTA1813 + 3 192 83 0 SBTA1814 + 3 192 84 0 SBTA1815 + 3 192 85 0 SBTA1816 + 3 192 76 0 SBTA187 + 3 192 77 0 SBTA188 + 3 192 78 0 SBTA189 3 192 55 0 SBTAGR10 3 192 56 0 SBTAGR11 3 192 57 0 SBTAGR12 @@ -834,22 +1093,39 @@ 3 192 68 0 SBTAHI9 3 0 2 0 SBTMP 0 7 210 1 SCCP - 4 2 10 0 SCINT + 4 10 1 0 SCIDEXS4 + 4 10 0 0 SCINIDX 0 1 84 0 SCLIWC 0 1 83 0 SCLLWC 3 1 29 0 SCRAD 0 20 112 0 SCTAOTK 3 0 5 0 SCTPRES + 2 6 5 0 SDBUILDHGT 0 20 6 0 SDDMFLX 0 1 61 0 SDEN + 0 3 38 0 SDFSO 3 1 99 0 SDMPEMRR 0 3 20 0 SDSGSO 0 1 60 0 SDWE + 10 4 48 0 SEACMMT + 10 4 44 0 SEACMVT + 10 4 50 0 SEACPSALT + 10 4 51 0 SEACSALT + 10 4 49 0 SEACZMT + 10 4 45 0 SEACZVT + 10 4 46 0 SEAMMT + 10 4 42 0 SEAMVT + 10 3 12 0 SEASFLUX + 10 4 47 0 SEAZMT + 10 4 43 0 SEAZVT 0 20 11 0 SEDMFLX 1 2 3 0 SEDTK 1 2 4 0 SEDTMP + 0 19 39 0 SEEINDEX 10 3 207 1 SETUP 0 1 62 0 SEVAP + 10 0 86 0 SEVWAVE + 0 20 77 0 SFCEFLX 2 0 216 1 SFCRH 2 0 1 0 SFCR 2 0 34 0 SFCWRO @@ -869,6 +1145,8 @@ 3 192 33 0 SFRA174 3 192 34 0 SFRA175 3 192 35 0 SFRA176 + 0 2 47 0 SFRHEAT + 0 2 48 0 SFRMOIST 10 4 11 0 SFSALP 1 2 9 0 SFSAL 10 4 12 0 SFTMPP @@ -882,17 +1160,24 @@ 0 1 108 0 SHTPRM 0 7 13 0 SHWINX 10 2 3 0 SICED + 10 2 17 0 SICEHC + 10 2 15 0 SICEVOL + 4 8 8 0 SICFL + 10 2 23 0 SIFTP 4 9 1 0 SIGHAL 0 7 209 1 SIGH 4 9 2 0 SIGPAR 4 9 0 0 SIGPED 0 7 211 1 SIGT 0 19 217 1 SIPD + 2 0 50 0 SKINRC 0 0 17 0 SKINT 3 5 1 0 SKSSTMP + 0 19 38 0 SKYIDX 0 1 230 1 SLACC 0 19 23 0 SLDP 3 0 4 0 SLFTI + 0 17 5 0 SLNGPIDX 10 3 202 1 SLTFL 2 3 194 1 SLTYP 0 6 34 0 SLWTC @@ -901,6 +1186,7 @@ 0 1 113 0 SMLWGMA 0 1 110 0 SMLWHMA 0 1 116 0 SMLWSMA + 2 0 41 0 SMRATE 2 3 7 0 SMREF 2 3 195 1 SMREF 0 19 18 0 SNFALB @@ -917,17 +1203,23 @@ 0 1 208 1 SNOT 0 1 42 0 SNOWC 0 1 201 1 SNOWC + 0 1 148 0 SNOWERAT 0 1 233 1 SNOWLR + 0 19 40 0 SNOWLVL 0 19 236 1 SNOWLVL + 2 3 28 0 SNOWTMP + 10 2 13 0 SNOWTSI 0 1 222 1 SNOWT + 20 3 6 0 SNPVPCAP + 20 3 7 0 SNPVPPROD + 10 2 18 0 SNSIHC + 10 2 16 0 SNVOLSI 2 3 25 0 SNWDEB 2 3 27 0 SOILDEP 2 3 21 0 SOILICE 2 3 5 0 SOILL 2 3 192 1 SOILL 2 3 19 0 SOILMOI - 2 0 3 0 SOILM - 2 0 22 0 SOILM 2 3 15 0 SOILP 2 0 239 1 SOILSE 2 3 18 0 SOILTMP @@ -939,6 +1231,7 @@ 3 1 28 0 SPBRT 10 1 1 0 SPC 4 6 4 0 SPECIRR + 10 0 88 0 SPECWI 4 1 0 0 SPEED 0 1 0 0 SPFH 10 0 45 0 SPFTR @@ -947,7 +1240,10 @@ 0 1 100 0 SPNCR 0 1 101 0 SPNCS 0 1 66 0 SPRATE + 2 4 16 0 SPRDCOMP 4 2 7 0 SPRDF + 20 3 4 0 SPVPCAP + 20 3 5 0 SPVPPROD 3 0 3 0 SPWAT 3 0 0 0 SRAD 0 1 85 0 SRAINC @@ -958,16 +1254,20 @@ 3 192 49 0 SRFAGR4 3 192 50 0 SRFAGR5 3 192 51 0 SRFAGR6 + 0 1 144 0 SRWATERC 0 1 12 0 SRWEQ 0 20 103 0 SSALBK 0 3 22 0 SSGSO + 10 3 19 0 SSHGTPARM 10 3 195 1 SSHG 3 5 2 0 SSKSSTMP 3 192 62 0 SSMS1715 3 192 63 0 SSMS1716 3 192 64 0 SSMS1717 3 192 65 0 SSMS1718 + 0 1 145 0 SSNOWWC 0 1 86 0 SSNOWW + 0 1 168 0 SSPFHW 1 0 6 0 SSRUN 1 0 193 1 SSRUN 10 3 200 1 SSST @@ -975,22 +1275,31 @@ 2 0 211 1 SSTOR 10 3 199 1 SSTT 0 6 35 0 SSWTC + 20 0 7 0 STDEFTMP + 10 3 11 0 STERCSSH + 10 0 96 0 STMCREST + 10 0 97 0 STMWAVE 0 19 200 1 STORPROB 0 7 208 1 STPC 0 2 4 0 STRM 0 1 87 0 STRPRATE + 2 0 52 0 SUBSRATE + 0 6 51 0 SUNFRAC 0 6 33 0 SUNSD 0 6 201 1 SUNSD 0 6 24 0 SUNS + 2 0 51 0 SURFRATE 10 3 192 1 SURGE 0 19 220 1 SVRTS 10 3 208 1 SWASH + 0 3 32 0 SWATERVP 0 4 2 0 SWAVR 10 0 7 0 SWDIR 0 20 7 0 SWDMFLX 0 7 5 0 SWEATX 10 0 8 0 SWELL 1 0 4 0 SWEPON + 2 3 30 0 SWET 10 0 47 0 SWHFSWEL 0 4 197 1 SWHR 10 0 48 0 SWHSSWEL @@ -1000,10 +1309,18 @@ 3 1 194 1 SWQI 0 4 6 0 SWRAD 0 19 212 1 SWSALB + 10 4 41 0 SWSTBC + 10 4 35 0 SWSTNR + 10 4 37 0 SWSTP + 10 4 40 0 SWTTBC + 10 4 34 0 SWTTNR + 10 4 36 0 SWTTP 0 6 1 0 TCDC + 0 191 4 0 TCDTRACK 0 0 204 1 TCHP 0 1 81 0 TCICON 0 14 2 0 TCIOZ + 0 1 169 0 TCISSPFHW 0 1 64 0 TCIWV 2 0 35 0 TCLASS 0 1 209 1 TCLSW @@ -1026,6 +1343,7 @@ 0 6 17 0 TCONDO 0 1 21 0 TCOND 0 6 195 1 TCOND + 0 1 167 0 TCSLW 10 3 242 1 TCSRG20 10 3 243 1 TCSRG30 10 3 244 1 TCSRG40 @@ -1037,7 +1355,10 @@ 0 1 51 0 TCWAT 0 0 20 0 TDCHT 0 2 31 0 TDCMOM + 10 0 94 0 TDMCREST + 10 0 95 0 TDMWAVE 2 0 36 0 TFRCT + 10 3 9 0 THERCSSH 0 0 197 1 THFLX 0 3 12 0 THICK 0 6 10 0 THUNC @@ -1046,10 +1367,13 @@ 0 18 7 0 TIACIP 0 18 8 0 TIACRP 10 3 251 1 TIDE + 0 7 20 0 TIIDEX 0 1 206 1 TIPD 0 19 11 0 TKE 0 1 90 0 TKMFLX + 0 19 42 0 TLBHEIGHT 0 17 4 0 TLGTFD + 0 19 43 0 TLTHEIGH 0 6 9 0 TMAXT 0 0 4 0 TMAX 0 0 5 0 TMIN @@ -1064,12 +1388,15 @@ 0 19 197 1 TORPROB 0 7 4 0 TOTALX 0 1 80 0 TOTCON + 0 21 2 0 TOTENG 0 18 13 0 TOTLWD 0 14 0 0 TOZNE 0 14 197 1 TOZ 2 0 37 0 TPERCT 0 19 219 1 TPFI 0 1 52 0 TPRATE + 0 2 231 1 TPWDIR + 0 2 232 1 TPWSPD 0 20 13 0 TRANHH 2 3 12 0 TRANSO 2 0 230 1 TRANS @@ -1078,11 +1405,13 @@ 0 2 225 1 TRWSPD 0 0 200 1 TSD1D 0 191 0 0 TSEC + 0 2 58 0 TSFCSTR 4 6 0 0 TSI 0 3 199 1 TSLSA 0 1 50 0 TSNOWP 0 1 241 1 TSNOW 2 0 2 0 TSOIL + 0 1 128 0 TSPRATE 0 1 57 0 TSRATE 0 1 53 0 TSRWE 0 19 203 1 TSTMC @@ -1107,8 +1436,11 @@ 10 3 205 1 TWLWAV 0 20 58 0 TYAAL 0 20 57 0 TYABA + 2 0 58 0 TYPHIVEG + 2 0 57 0 TYPLOVEG 0 3 16 0 U-GWD 0 3 194 1 U-GWD + 0 4 57 0 UBALBDIRG 10 1 194 1 UBARO 0 3 31 0 UCLSPRS 0 1 120 0 UCSCIW @@ -1126,8 +1458,10 @@ 0 5 4 0 ULWRF 0 5 193 1 ULWRF 0 3 27 0 UMFLX + 2 4 22 0 UNBURNAREA 0 1 118 0 UNCSH 0 2 45 0 UNDIV + 0 2 56 0 UNWIND 10 1 2 0 UOGRD 1 0 14 0 UPAPCP 1 0 15 0 UPASM @@ -1135,17 +1469,28 @@ 0 7 197 1 UPHL 2 3 2 0 UPLSM 2 3 1 0 UPLST + 2 0 44 0 UPSAREA + 10 4 27 0 UPWWVEL + 2 6 0 0 URBCOVER 3 1 192 1 USCT + 10 0 90 0 USMFO 10 0 21 0 USSD 0 2 27 0 USTM 0 2 194 1 USTM 0 4 53 0 USWRFCS 0 4 8 0 USWRF 0 4 193 1 USWRF + 20 0 0 0 UTHCIDX 0 4 205 1 UTRF + 0 4 15 0 UUVEARTH + 0 4 55 0 UVALBDIF + 0 4 58 0 UVALBDIRI + 0 4 56 0 UVALBDIR + 0 4 59 0 UVBDIRV 0 4 50 0 UVIUCS 0 4 51 0 UVI 0 7 196 1 UVI + 0 2 52 0 UWINDSTR 0 3 17 0 V-GWD 0 3 195 1 V-GWD 0 19 232 1 VAFTD @@ -1158,6 +1503,8 @@ 0 14 195 1 VDFOZ 0 2 208 1 VDFUA 0 2 209 1 VDFVA + 0 2 59 0 VDIV + 10 4 28 0 VEDDYDIF 0 2 204 1 VEDH 2 0 232 1 VEGMAX 2 0 231 1 VEGMIN @@ -1184,6 +1531,7 @@ 0 19 0 0 VIS 0 1 92 0 VKMFLX 0 20 52 0 VMXR + 0 2 57 0 VNWIND 10 1 3 0 VOGRD 3 4 4 0 VOLACDEM 3 4 7 0 VOLACDEN @@ -1202,6 +1550,9 @@ 0 0 15 0 VPTMP 0 2 224 1 VRATE 3 1 193 1 VSCT + 10 4 33 0 VSFC + 10 4 32 0 VSFSW + 10 0 91 0 VSMFO 2 0 25 0 VSOILM 2 3 16 0 VSOSM 10 0 22 0 VSSD @@ -1213,18 +1564,29 @@ 0 2 16 0 VVCSH 0 2 8 0 VVEL 2 0 27 0 VWILTM + 0 2 53 0 VWINDSTR 0 2 25 0 VWSH 0 2 192 1 VWSH + 2 6 4 0 VZAFRAC 10 4 17 0 WATDENA + 0 21 4 0 WATENTHALPY 10 4 16 0 WATERDEN 2 0 236 1 WATERSA 10 4 20 0 WATPDENA 10 4 19 0 WATPDEN 10 4 18 0 WATPTEMP 2 0 5 0 WATR + 10 0 79 0 WAVEFDIR + 10 0 78 0 WAVEFMAG 10 0 62 0 WAVEFREW + 4 5 3 0 WAVELGTH + 10 0 87 0 WAVEMSLC + 10 0 77 0 WAVESPSK + 10 0 92 0 WAVETEFO + 10 0 73 0 WCAPFRAC 2 0 223 1 WCCONV 0 0 13 0 WCF + 10 4 22 0 WCHEATC 2 0 221 1 WCINC 2 0 226 1 WCUFLX 2 0 227 1 WCVFLX @@ -1238,9 +1600,15 @@ 10 0 58 0 WDWTSWEL 0 1 13 0 WEASD 10 0 42 0 WESP + 20 0 2 0 WETBGTMP + 0 0 32 0 WETBPT 0 0 27 0 WETBT + 2 0 45 0 WETCOV 0 18 11 0 WETDEP + 0 0 206 1 WETGLBT + 2 0 46 0 WETTYPE 0 20 75 0 WFIREFLX + 2 4 26 0 WFIREPOT 1 2 2 0 WFRACT 10 0 59 0 WFWFSWEL 10 0 60 0 WFWSSWEL @@ -1250,13 +1618,18 @@ 2 0 26 0 WILT 2 0 201 1 WILT 0 2 33 0 WINDF + 20 3 2 0 WINDPCAP + 20 3 3 0 WINDPPROD 0 19 199 1 WINDPROB + 0 2 49 0 WINDSTR 3 1 19 0 WINDS 0 2 1 0 WIND 0 19 25 0 WIWW 10 0 193 1 WLENG 0 20 9 0 WLSMFLX 0 2 19 0 WMIXE + 0 3 45 0 WOBT + 2 0 42 0 WRDRATE 2 0 33 0 WROD 10 0 192 1 WSTP 10 0 18 0 WSTR @@ -1276,8 +1649,15 @@ 2 0 224 1 WVUFLX 2 0 225 1 WVVFLX 10 0 14 0 WWSDIR + 10 3 7 0 XCOMPSS + 10 4 25 0 XCOMPWV + 10 2 24 0 XICE 4 6 1 0 XLONG - 0 3 26 0 XPRES 4 8 0 0 XRAYRAD 4 6 2 0 XSHRT + 10 3 16 0 XSURFWVEL + 10 3 8 0 YCOMPSS + 10 4 26 0 YCOMPWV + 10 2 25 0 YICE + 10 3 17 0 YSURFVWEL 10 2 10 0 ZVCICEP diff --git a/tests/parm/post_itag_hafs_ar b/tests/parm/post_itag_hafs_ar new file mode 100644 index 0000000000..6504929887 --- /dev/null +++ b/tests/parm/post_itag_hafs_ar @@ -0,0 +1,6 @@ +&MODEL_INPUTS + MODELNAME='FV3R' +/ +&NAMPGB + KPO=57,PO=1000.,975.,950.,925.,900.,875.,850.,825.,800.,775.,750.,725.,700.,675.,650.,625.,600.,575.,550.,525.,500.,475.,450.,425.,400.,375.,350.,325.,300.,275.,250.,225.,200.,175.,150.,125.,100.,70.,50.,40.,30.,20.,15.,10.,7.,5.,3.,2.,1.,0.7,0.4,0.2,0.1,0.07,0.04,0.02,0.01, +/ diff --git a/tests/parm/postxconfig-NT-fv3lam.txt b/tests/parm/postxconfig-NT-fv3lam.txt index 83972b3ed3..4490a42059 100644 --- a/tests/parm/postxconfig-NT-fv3lam.txt +++ b/tests/parm/postxconfig-NT-fv3lam.txt @@ -1,6 +1,6 @@ 2 -225 -263 +210 +278 PRSLEV 32769 ncep_nco @@ -37,6 +37,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -46,6 +47,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -74,6 +79,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -83,6 +89,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -111,6 +121,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -120,6 +131,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -148,6 +163,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -157,6 +173,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -185,6 +205,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -194,6 +215,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -222,6 +247,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -231,6 +257,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -259,6 +289,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -268,6 +299,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -296,6 +331,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -305,6 +341,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -333,6 +373,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -342,6 +383,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -370,6 +415,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -379,6 +425,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -407,6 +457,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -416,6 +467,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 0 @@ -444,6 +499,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -453,6 +509,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -481,6 +541,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -490,8 +551,12 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +3.0 0 0 0 @@ -518,48 +583,16 @@ hybrid_lvl ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -6.0 -0 -0 -0 -? -? -? -187 -RIME_ON_HYBRID_LVL -? -1 -tmpl4_0 -RIME -NCEP -? -hybrid_lvl -0 -? -2 -1. 2. -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -592,6 +625,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -601,6 +635,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -615,7 +653,7 @@ REFD_ON_HYBRID_LVL 1 tmpl4_0 REFD -NCEP +? ? hybrid_lvl 0 @@ -629,54 +667,22 @@ hybrid_lvl ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -4.0 -0 -0 -0 -? -? -? -146 -BMIXL_ON_HYBRID_LVL -? -1 -tmpl4_0 -BMIXL -NCEP -? -hybrid_lvl -0 -? -1 -1. -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -3.0 +4.0 0 0 0 @@ -694,8 +700,8 @@ HGT isobaric_sfc 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -703,6 +709,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -712,6 +719,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -731,8 +742,8 @@ TMP isobaric_sfc 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -740,6 +751,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -749,6 +761,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -768,8 +784,8 @@ DPT isobaric_sfc 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -777,6 +793,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -786,6 +803,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -805,8 +826,8 @@ SPFH isobaric_sfc 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -814,6 +835,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -823,6 +845,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -842,8 +868,8 @@ RH isobaric_sfc 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -851,6 +877,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -860,6 +887,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -868,19 +899,19 @@ isobaric_sfc ? ? ? -85 -MCONV_ON_ISOBARIC_SFC +18 +UGRD_ON_ISOBARIC_SFC ? 1 tmpl4_0 -MCONV +UGRD ? ? isobaric_sfc 0 ? -2 -85000. 95000. +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -888,6 +919,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -897,27 +929,31 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -18 -UGRD_ON_ISOBARIC_SFC +19 +VGRD_ON_ISOBARIC_SFC ? 1 tmpl4_0 -UGRD +VGRD ? ? isobaric_sfc 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -925,6 +961,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -934,6 +971,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -942,19 +983,19 @@ isobaric_sfc ? ? ? -19 -VGRD_ON_ISOBARIC_SFC +284 +DZDT_ON_ISOBARIC_SFC ? 1 tmpl4_0 -VGRD +DZDT ? ? isobaric_sfc 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -962,6 +1003,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -971,20 +1013,24 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +-5.0 0 0 0 ? ? ? -20 -VVEL_ON_ISOBARIC_SFC +21 +ABSV_ON_ISOBARIC_SFC ? 1 tmpl4_0 -VVEL +ABSV ? ? isobaric_sfc @@ -999,6 +1045,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1008,27 +1055,31 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +4.0 0 0 0 ? ? ? -284 -DZDT_ON_ISOBARIC_SFC +86 +STRM_ON_ISOBARIC_SFC ? 1 tmpl4_0 -DZDT +STRM ? ? isobaric_sfc 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +2 +25000. 50000. ? 0 ? @@ -1036,6 +1087,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1045,27 +1097,31 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --5.0 +3.0 0 0 0 ? ? ? -21 -ABSV_ON_ISOBARIC_SFC +166 +ICMR_ON_ISOBARIC_SFC ? 1 tmpl4_0 -ABSV +ICMR ? ? isobaric_sfc 0 ? -10 -20000. 25000. 30000. 40000. 50000. 70000. 75000. 85000. 92500. 100000. +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -1073,6 +1129,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1082,27 +1139,31 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +6.0 0 0 0 ? ? ? -86 -STRM_ON_ISOBARIC_SFC +153 +CLMR_ON_ISOBARIC_SFC ? 1 tmpl4_0 -STRM +CLMR ? ? isobaric_sfc 0 ? -2 -25000. 50000. +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -1110,6 +1171,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1119,27 +1181,31 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -22 -TKE_ON_ISOBARIC_SFC +183 +RWMR_ON_ISOBARIC_SFC ? 1 tmpl4_0 -TKE +RWMR ? ? isobaric_sfc 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -1147,6 +1213,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1156,6 +1223,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1164,19 +1235,19 @@ isobaric_sfc ? ? ? -166 -ICMR_ON_ISOBARIC_SFC -? +416 +GRLE_ON_ISOBARIC_SFC +Graupel mixing ration on isobaric surface 1 tmpl4_0 -ICMR +GRLE ? ? isobaric_sfc 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -1184,6 +1255,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1193,27 +1265,31 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +3.0 0 0 0 ? ? ? -153 -CLMR_ON_ISOBARIC_SFC +184 +SNMR_ON_ISOBARIC_SFC ? 1 tmpl4_0 -CLMR +SNMR ? ? isobaric_sfc 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -1221,6 +1297,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1230,27 +1307,31 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -183 -RWMR_ON_ISOBARIC_SFC +85 +MCONV_ON_ISOBARIC_SFC ? 1 tmpl4_0 -RWMR +MCONV ? ? isobaric_sfc 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +2 +85000. 95000. ? 0 ? @@ -1258,6 +1339,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1267,31 +1349,36 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +3.0 0 0 0 ? ? ? -416 -GRLE_ON_ISOBARIC_SFC -Graupel mixing ration on isobaric surface +88 +MCONV_ON_SPEC_PRES_ABOVE_GRND +? 1 tmpl4_0 -GRLE +MCONV ? ? -isobaric_sfc +spec_pres_above_grnd 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. -? +1 +3000. +spec_pres_above_grnd 0 ? -0 +1 +0. ? ? ? @@ -1304,6 +1391,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1312,19 +1403,19 @@ isobaric_sfc ? ? ? -184 -SNMR_ON_ISOBARIC_SFC +295 +MCONV_ON_ENTIRE_ATMOS ? 1 tmpl4_0 -SNMR +MCONV ? ? -isobaric_sfc +entire_atmos_single_lyr +0 +? 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -1332,6 +1423,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1341,27 +1433,31 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +5.0 0 0 0 ? ? ? -263 -RIME_ON_ISOBARIC_SFC -? +749 +GSD_RH_WRT_PRECIP_WATER_ON_ENTIRE_ATMOS +RELATIVE HUMIDITY WITH RESPECT TO PRECIPITABLE WATER 1 tmpl4_0 -RIME +RHPW NCEP ? -isobaric_sfc +entire_atmos +0 +? 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -1369,6 +1465,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1378,8 +1475,12 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +-0.1 0 0 0 @@ -1406,48 +1507,16 @@ mean_sea_lvl ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -6.0 -0 -0 -0 -? -? -? -105 -PRES_ON_MEAN_SEA_LVL -? -1 -tmpl4_0 -PRMSL -? -? -mean_sea_lvl -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -1480,6 +1549,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1489,6 +1559,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1517,6 +1591,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1526,6 +1601,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1554,6 +1633,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1563,6 +1643,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1591,6 +1675,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1600,6 +1685,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1628,6 +1717,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1637,6 +1727,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1665,6 +1759,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1674,6 +1769,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1702,6 +1801,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1711,6 +1811,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1739,6 +1843,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1748,6 +1853,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1756,19 +1865,19 @@ spec_pres_above_grnd ? ? ? -158 -POT_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +24 +PRES_ON_SURFACE ? 1 tmpl4_0 -POT +PRES ? ? -spec_hgt_lvl_above_grnd +surface +0 +? 0 ? -1 -10. ? 0 ? @@ -1776,6 +1885,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1785,27 +1895,31 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +6.0 0 0 0 ? ? ? -159 -SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +25 +HGT_ON_SURFACE ? 1 tmpl4_0 -SPFH +HGT ? ? -spec_hgt_lvl_above_grnd +surface +0 +? 0 ? -1 -10. ? 0 ? @@ -1813,6 +1927,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1822,20 +1937,24 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +6.0 0 0 0 ? ? ? -24 -PRES_ON_SURFACE +27 +POT_ON_SURFACE ? 1 tmpl4_0 -PRES +POT ? ? surface @@ -1850,6 +1969,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1859,20 +1979,24 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +5.0 0 0 0 ? ? ? -25 -HGT_ON_SURFACE +28 +SPFH_ON_SURFACE ? 1 tmpl4_0 -HGT +SPFH ? ? surface @@ -1887,6 +2011,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1896,57 +2021,24 @@ surface 0.0 0 0.0 -1 -6.0 -0 0 -0 -? -? -? -27 -POT_ON_SURFACE -? -1 -tmpl4_0 -POT -? -? -surface -0 -? -0 -? -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 +0.0 0 0.0 1 -5.0 +3.0 0 0 0 ? ? ? -28 -SPFH_ON_SURFACE +26 +TMP_ON_SURFACE ? 1 tmpl4_0 -SPFH +TMP ? ? surface @@ -1961,48 +2053,16 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -3.0 -0 -0 -0 -? -? -? -26 -TMP_ON_SURFACE -? -1 -tmpl4_0 -TMP -? -? -surface -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -2015,19 +2075,19 @@ surface ? ? ? -115 -TSOIL_ON_DEPTH_BEL_LAND_SFC_3m +713 +CISOILM_ON_DEPTH_BEL_LAND_SFC ? 1 tmpl4_0 -TSOIL +CISOILM ? ? depth_bel_land_sfc 0 ? -1 -3. +0 +? ? 0 ? @@ -2035,6 +2095,7 @@ depth_bel_land_sfc ? ? ? +? 0 0.0 0 @@ -2044,6 +2105,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2061,15 +2126,16 @@ TSOIL ? ? depth_bel_land_sfc -4 -2 2 2 2 -4 -0. 10. 40. 100. +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. depth_bel_land_sfc -4 -2 2 2 2 -4 -10. 40. 100. 200. +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +? ? ? 0 @@ -2081,6 +2147,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2098,59 +2168,27 @@ SOILW NCEP ? depth_bel_land_sfc -4 -2 2 2 2 -4 -0. 10. 40. 100. +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. depth_bel_land_sfc -4 -2 2 2 2 -4 -10. 40. 100. 200. +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -3.0 -0 -0 -0 -? -? -? -225 -SOILL_ON_DEPTH_BEL_LAND_SFC -? -1 -tmpl4_0 -SOILL -NCEP -? -depth_bel_land_sfc -4 -2 2 2 2 -4 -0. 10. 40. 100. -depth_bel_land_sfc -4 -2 2 2 2 -4 -10. 40. 100. 200. -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -2163,24 +2201,25 @@ depth_bel_land_sfc ? ? ? -36 -SOILM_ON_DEPTH_BEL_LAND_SFC +225 +SOILL_ON_DEPTH_BEL_LAND_SFC ? 1 tmpl4_0 -SOILM +SOILL ? ? depth_bel_land_sfc 1 2 -1 -0. +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. depth_bel_land_sfc 1 2 -1 -200. +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +? ? ? 0 @@ -2192,6 +2231,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2206,7 +2249,7 @@ CNWAT_ON_SURFACE 1 tmpl4_0 CNWAT -NCEP +? ? surface 0 @@ -2220,6 +2263,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2229,6 +2273,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2257,54 +2305,22 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -4.0 -0 -0 -0 -? -? -? -120 -SNOWC_ON_SURFACE -? -1 -tmpl4_0 -SNOWC -NCEP -? -surface -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -3.0 +4.0 0 0 0 @@ -2317,7 +2333,7 @@ SFEXC_ON_SURFACE 1 tmpl4_0 SFEXC -NCEP +? ? surface 0 @@ -2331,6 +2347,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2340,6 +2357,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2368,6 +2389,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2377,6 +2399,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2405,6 +2431,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2414,6 +2441,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2442,6 +2473,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2451,6 +2483,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2459,12 +2495,12 @@ surface ? ? ? -226 -SNFALB_ON_SURFACE +227 +MXSALB_ON_SURFACE ? 1 tmpl4_0 -SNFALB +MXSALB NCEP ? surface @@ -2479,6 +2515,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2488,6 +2525,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2496,12 +2537,12 @@ surface ? ? ? -227 -MXSALB_ON_SURFACE +220 +CCOND_ON_SURFACE ? 1 tmpl4_0 -MXSALB +CCOND NCEP ? surface @@ -2516,6 +2557,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2525,6 +2567,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2533,12 +2579,12 @@ surface ? ? ? -220 -CCOND_ON_SURFACE +237 +SMREF_ON_SURFACE ? 1 tmpl4_0 -CCOND +SMREF NCEP ? surface @@ -2553,6 +2599,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2562,6 +2609,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2570,12 +2621,12 @@ surface ? ? ? -238 -RCS_ON_SURFACE +233 +POROS_ON_SURFACE ? 1 tmpl4_0 -RCS +POROS NCEP ? surface @@ -2590,6 +2641,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2599,6 +2651,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2607,12 +2663,12 @@ surface ? ? ? -239 -RCT_ON_SURFACE +235 +RLYRS_ON_SURFACE ? 1 tmpl4_0 -RCT +RLYRS NCEP ? surface @@ -2627,6 +2683,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2636,20 +2693,24 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +3.0 0 0 0 ? ? ? -240 -RCQ_ON_SURFACE +234 +RSMIN_ON_SURFACE ? 1 tmpl4_0 -RCQ +RSMIN NCEP ? surface @@ -2664,48 +2725,16 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -3.0 -0 -0 -0 -? -? -? -241 -RCSOL_ON_SURFACE -? -1 -tmpl4_0 -RCSOL -NCEP -? -surface -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -2718,13 +2747,13 @@ surface ? ? ? -237 -SMREF_ON_SURFACE +224 +SNOD_ON_SURFACE ? 1 tmpl4_0 -SMREF -NCEP +SNOD +? ? surface 0 @@ -2738,68 +2767,36 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -3.0 -0 -0 -0 -? -? -? -233 -POROS_ON_SURFACE -? -1 -tmpl4_0 -POROS -NCEP -? -surface -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -3.0 +6.0 0 0 0 ? ? ? -235 -RLYRS_ON_SURFACE +725 +GSD_ACM_SNOD_ON_SURFACE ? 1 -tmpl4_0 -RLYRS -NCEP +tmpl4_8 +ASNOW ? +ACM surface 0 ? @@ -2812,6 +2809,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2821,20 +2819,24 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +9.0 0 0 0 ? ? ? -234 -RSMIN_ON_SURFACE +232 +SMDRY_ON_SURFACE ? 1 tmpl4_0 -RSMIN +SMDRY NCEP ? surface @@ -2849,66 +2851,34 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -3.0 -0 -0 -0 -? -? -? -224 -SNOD_ON_SURFACE -? -1 -tmpl4_0 -SNOD -? -? -surface -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -6.0 +3.0 0 0 0 ? ? ? -232 -SMDRY_ON_SURFACE +236 +WILT_ON_SURFACE ? 1 tmpl4_0 -SMDRY +WILT NCEP ? surface @@ -2923,6 +2893,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2932,6 +2903,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2940,15 +2915,15 @@ surface ? ? ? -236 -WILT_ON_SURFACE +171 +RUC_MSTAV_ON_DEPTH_BEL_LAND_SFC ? 1 tmpl4_0 -WILT -NCEP +MSTAV ? -surface +? +depth_bel_land_sfc 0 ? 0 @@ -2960,48 +2935,16 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -3.0 -0 -0 -0 -? -? -? -171 -MSTAV_ON_DEPTH_BEL_LAND_SFC -? -1 -tmpl4_0 -MSTAV -NCEP -? -depth_bel_land_sfc -1 -2 -1 -0. -depth_bel_land_sfc -1 -2 -1 -100. -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -3034,6 +2977,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3043,6 +2987,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3057,7 +3005,7 @@ LFTX_ON_ISOBARIC_SFC_500-1000hpa 1 tmpl4_0 LFTX -NCEP +? ? isobaric_sfc 0 @@ -3071,6 +3019,7 @@ isobaric_sfc 100000. ? ? +? 0 0.0 0 @@ -3080,6 +3029,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3094,7 +3047,7 @@ isobaric_sfc 1 tmpl4_0 4LFTX -NCEP +? ? spec_pres_above_grnd 0 @@ -3108,6 +3061,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3117,6 +3071,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3145,6 +3103,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3154,6 +3113,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3182,6 +3145,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3191,6 +3155,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3219,6 +3187,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3228,6 +3197,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3256,6 +3229,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3265,6 +3239,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3293,6 +3271,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3302,6 +3281,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3310,23 +3293,24 @@ spec_pres_above_grnd ? ? ? -107 -CIN_ON_SURFACE +950 +CAPE_ON_0_3KM_ABOVE_GRND ? 1 tmpl4_0 -CIN -? +CAPE ? -surface -0 ? +spec_hgt_lvl_above_grnd 0 ? -? +1 +0. +spec_hgt_lvl_above_grnd 0 ? -0 +1 +3000. ? ? ? @@ -3339,6 +3323,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3347,24 +3335,25 @@ surface ? ? ? -567 -BEST_CIN_ON_SPEC_PRES_ABOVE_GRND +107 +CIN_ON_SURFACE ? 1 tmpl4_0 CIN ? ? -spec_pres_above_grnd +surface +0 +? +0 +? +? 0 ? -1 -18000. -spec_pres_above_grnd 0 ? -1 -0. +? ? ? 0 @@ -3376,7 +3365,53 @@ spec_pres_above_grnd 0.0 0 0.0 -1 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +567 +BEST_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 4.0 0 0 @@ -3404,6 +3439,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3413,6 +3449,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3441,6 +3481,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3450,6 +3491,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3478,6 +3523,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -3487,6 +3533,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3515,6 +3565,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3524,6 +3575,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3532,13 +3587,97 @@ spec_hgt_lvl_above_grnd ? ? ? +953 +EFF_HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +EFHL +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +957 +CRITICAL_ANGLE +? +1 +tmpl4_0 +CANGLE +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +500. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? 163 USTM_ON_SPEC_HGT_LVL_ABOVE_GRND ? 1 tmpl4_0 USTM -NCEP +? ? spec_hgt_lvl_above_grnd 0 @@ -3552,6 +3691,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3561,6 +3701,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3575,7 +3719,7 @@ VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND 1 tmpl4_0 VSTM -NCEP +? ? spec_hgt_lvl_above_grnd 0 @@ -3589,6 +3733,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3598,6 +3743,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3626,6 +3775,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3635,6 +3785,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -3663,6 +3817,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3672,6 +3827,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3700,6 +3859,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3709,6 +3869,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3737,6 +3901,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3746,6 +3911,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3774,6 +3943,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3783,6 +3953,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3811,6 +3985,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3820,6 +3995,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3848,6 +4027,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3857,6 +4037,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3865,12 +4049,12 @@ surface ? ? ? -34 -ACM_NCPCP_ON_SURFACE +417 +CACM_APCP_ON_SURFACE ? 1 tmpl4_8 -NCPCP +APCP ? ACM surface @@ -3885,6 +4069,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3894,6 +4079,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -3902,12 +4091,12 @@ surface ? ? ? -417 -CACM_APCP_ON_SURFACE +121 +ACM_SNOM_ON_SURFACE ? 1 tmpl4_8 -APCP +SNOM ? ACM surface @@ -3922,6 +4111,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3931,20 +4121,24 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --4.0 +4.0 0 0 0 ? ? ? -419 -CACM_NCPCP_ON_SURFACE +122 +ACM_SSRUN_ON_SURFACE ? 1 tmpl4_8 -NCPCP +SSRUN ? ACM surface @@ -3959,6 +4153,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3968,22 +4163,26 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --4.0 +6.0 0 0 0 ? ? ? -121 -ACM_SNOM_ON_SURFACE -? +407 +GSD_INST_CRAIN_ON_SURFACE +GSD_instant precipitation type on surface 1 -tmpl4_8 -SNOM +tmpl4_0 +CRAIN +? ? -ACM surface 0 ? @@ -3996,6 +4195,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4005,22 +4205,26 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +1.0 0 0 0 ? ? ? -122 -ACM_SSRUN_ON_SURFACE -? +559 +GSD_CSNOW_ON_SURFACE +GSD_Categorical snow on surface 1 -tmpl4_8 -SSRUN -NCEP -ACM +tmpl4_0 +CSNOW +? +? surface 0 ? @@ -4033,6 +4237,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4042,95 +4247,25 @@ surface 0.0 0 0.0 -1 -6.0 -0 0 -0 -? -? -? -123 -ACM_BGRUN_ON_SURFACE -? -1 -tmpl4_8 -BGRUN -NCEP -ACM -surface -0 -? -0 -? -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 -0 -0.0 -1 -6.0 -0 -0 -0 -? -? -? -343 -ACM_WATR_ON_SURFACE -? -1 -tmpl4_8 -WATR -? -ACM -surface -0 -? -0 -? -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 +0.0 0 0.0 1 -6.0 +1.0 0 0 0 ? ? ? -160 -INST_CRAIN_ON_SURFACE -? +560 +GSD_CICEP_ON_SURFACE +GSD_Categorical ice pellets on surface 1 tmpl4_0 -CRAIN -NCEP +CICEP +? ? surface 0 @@ -4144,48 +4279,16 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -1.0 -0 -0 -0 -? -? -? -551 -CSNOW_ON_SURFACE -Categorical snow on surface -1 -tmpl4_0 -CSNOW -NCEP -? -surface -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -4198,13 +4301,13 @@ surface ? ? ? -552 -CICEP_ON_SURFACE -Categorical ice pellets on surface +561 +GSD_CFRZR_ON_SURFACE +GSD_Categorical freezing rain on surface 1 tmpl4_0 -CICEP -NCEP +CFRZR +? ? surface 0 @@ -4218,48 +4321,16 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -1.0 -0 -0 -0 -? -? -? -553 -CFRZR_ON_SURFACE -Categorical freezing rain on surface -1 -tmpl4_0 -CFRZR -NCEP -? -surface -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -4292,6 +4363,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4301,6 +4373,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4315,7 +4391,7 @@ CPOFP_ON_SURFACE 1 tmpl4_0 CPOFP -NCEP +? ? surface 0 @@ -4329,6 +4405,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4338,6 +4415,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4366,6 +4447,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4375,6 +4457,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4403,6 +4489,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4412,8 +4499,12 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +3.0 0 0 0 @@ -4440,6 +4531,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4449,6 +4541,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4477,6 +4573,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4486,6 +4583,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4514,6 +4615,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -4523,6 +4625,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4551,6 +4657,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -4560,6 +4667,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4588,6 +4699,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -4597,6 +4709,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4605,15 +4721,15 @@ high_cloud_lyr ? ? ? -161 -INST_TCDC_ON_ENTIRE_ATMOS +799 +TCDC_ON_BOUND_LYR ? 1 tmpl4_0 TCDC ? ? -entire_atmos_single_lyr +bound_lyr_cloud_lyr 0 ? 0 @@ -4625,6 +4741,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -4634,6 +4751,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4642,14 +4763,14 @@ entire_atmos_single_lyr ? ? ? -144 -AVE_TCDC_ON_ENTIRE_ATMOS +161 +INST_TCDC_ON_ENTIRE_ATMOS ? 1 -tmpl4_8 +tmpl4_0 TCDC ? -AVE +? entire_atmos_single_lyr 0 ? @@ -4662,6 +4783,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -4671,6 +4793,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4679,13 +4805,13 @@ entire_atmos_single_lyr ? ? ? -139 -AVE_CDLYR_ON_ENTIRE_ATMOS +144 +AVE_TCDC_ON_ENTIRE_ATMOS ? 1 tmpl4_8 -CDLYR -NCEP +TCDC +? AVE entire_atmos_single_lyr 0 @@ -4699,6 +4825,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -4708,6 +4835,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4736,6 +4867,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4745,6 +4877,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4773,6 +4909,7 @@ lvl_of_adiab_cond_from_sfc ? ? ? +? 0 0.0 0 @@ -4782,6 +4919,10 @@ lvl_of_adiab_cond_from_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -4810,6 +4951,7 @@ lvl_of_adiab_cond_from_sfc ? ? ? +? 0 0.0 0 @@ -4819,6 +4961,10 @@ lvl_of_adiab_cond_from_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4833,7 +4979,7 @@ INST_USWRF_ON_SURFACE 1 tmpl4_0 USWRF -NCEP +? ? surface 0 @@ -4847,6 +4993,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4856,6 +5003,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4870,7 +5021,7 @@ INST_ULWRF_ON_SURFACE 1 tmpl4_0 ULWRF -NCEP +? ? surface 0 @@ -4884,6 +5035,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4893,6 +5045,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4907,7 +5063,7 @@ AVE_DSWRF_ON_SURFACE 1 tmpl4_8 DSWRF -NCEP +? AVE surface 0 @@ -4921,6 +5077,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4930,6 +5087,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4944,7 +5105,7 @@ AVE_DLWRF_ON_SURFACE 1 tmpl4_8 DLWRF -NCEP +? AVE surface 0 @@ -4958,6 +5119,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4967,6 +5129,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4981,7 +5147,7 @@ AVE_USWRF_ON_SURFACE 1 tmpl4_8 USWRF -NCEP +? AVE surface 0 @@ -4995,6 +5161,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5004,6 +5171,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5018,7 +5189,7 @@ AVE_ULWRF_ON_SURFACE 1 tmpl4_8 ULWRF -NCEP +? AVE surface 0 @@ -5032,6 +5203,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5041,6 +5213,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5055,7 +5231,7 @@ AVE_USWRF_ON_TOP_OF_ATMOS 1 tmpl4_8 USWRF -NCEP +? AVE top_of_atmos 0 @@ -5069,6 +5245,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -5078,6 +5255,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5092,7 +5273,7 @@ AVE_ULWRF_ON_TOP_OF_ATMOS 1 tmpl4_8 ULWRF -NCEP +? AVE top_of_atmos 0 @@ -5106,6 +5287,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -5115,6 +5297,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5129,7 +5315,7 @@ INST_ULWRF_ON_TOP_OF_ATMOS 1 tmpl4_0 ULWRF -NCEP +? ? top_of_atmos 0 @@ -5143,6 +5329,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -5152,6 +5339,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5180,6 +5371,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -5189,6 +5381,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5203,7 +5399,7 @@ INST_DSWRF_ON_SURFACE 1 tmpl4_0 DSWRF -NCEP +? ? surface 0 @@ -5217,6 +5413,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5226,6 +5423,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5240,7 +5441,7 @@ INST_DLWRF_ON_SURFACE 1 tmpl4_0 DLWRF -NCEP +? ? surface 0 @@ -5254,6 +5455,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5263,6 +5465,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5271,12 +5477,12 @@ surface ? ? ? -262 -INST_CSDSF_ON_SURFACE +772 +INST_SWDDNI_ON_SURFACE ? 1 tmpl4_0 -CSDSF +VBDSF NCEP ? surface @@ -5291,6 +5497,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5300,6 +5507,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5308,13 +5519,13 @@ surface ? ? ? -44 -SFCR_ON_SURFACE +773 +INST_SWDDIF_ON_SURFACE ? 1 tmpl4_0 -SFCR -? +VDDSF +NCEP ? surface 0 @@ -5328,6 +5539,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5337,20 +5549,24 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -2.7 +4.0 0 0 0 ? ? ? -45 -FRICV_ON_SURFACE +262 +INST_CSDSF_ON_SURFACE ? 1 tmpl4_0 -FRICV +CSDSF NCEP ? surface @@ -5365,6 +5581,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5374,6 +5591,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5382,13 +5603,13 @@ surface ? ? ? -132 -CD_ON_SURFACE +44 +SFCR_ON_SURFACE ? 1 tmpl4_0 -CD -NCEP +SFCR +? ? surface 0 @@ -5402,6 +5623,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5411,20 +5633,24 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +2.7 0 0 0 ? ? ? -133 -UFLX_ON_SURFACE +45 +FRICV_ON_SURFACE ? 1 tmpl4_0 -UFLX +FRICV ? ? surface @@ -5439,6 +5665,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5448,20 +5675,24 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -134 -VFLX_ON_SURFACE +132 +CD_ON_SURFACE ? 1 tmpl4_0 -VFLX +CD ? ? surface @@ -5476,6 +5707,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5485,6 +5717,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5513,6 +5749,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5522,6 +5759,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5550,6 +5791,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5559,6 +5801,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5573,7 +5819,7 @@ AVE_SNOHF_ON_SURFACE 1 tmpl4_8 SNOHF -NCEP +? AVE surface 0 @@ -5587,6 +5833,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5596,6 +5843,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5624,48 +5875,16 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -4.0 -0 -0 -0 -? -? -? -47 -ACM_EVP_ON_SURFACE -? -1 -tmpl4_8 -EVP -? -ACM -surface -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -5684,7 +5903,7 @@ ACM_PEVAP_ON_SURFACE 1 tmpl4_8 PEVAP -NCEP +? ACM surface 0 @@ -5698,6 +5917,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5707,6 +5927,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5735,6 +5959,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5744,6 +5969,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5772,6 +6001,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5781,6 +6011,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5809,6 +6043,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5818,6 +6053,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5846,6 +6085,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5855,6 +6095,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5883,6 +6127,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5892,6 +6137,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -5920,6 +6169,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5929,6 +6179,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5957,6 +6211,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5966,6 +6221,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5994,6 +6253,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6003,6 +6263,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -6031,6 +6295,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -6040,6 +6305,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6068,6 +6337,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -6077,6 +6347,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6105,6 +6379,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -6114,6 +6389,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6142,6 +6421,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -6151,6 +6431,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -6179,6 +6463,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -6188,6 +6473,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6216,6 +6505,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -6225,6 +6515,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6239,7 +6533,7 @@ VWSH_ON_TROPOPAUSE 1 tmpl4_0 VWSH -NCEP +? ? tropopause 0 @@ -6253,6 +6547,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -6262,6 +6557,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6290,6 +6589,7 @@ spec_hgt_lvl_above_grnd 1000. ? ? +? 0 0.0 0 @@ -6299,6 +6599,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6327,6 +6631,7 @@ spec_hgt_lvl_above_grnd 1000. ? ? +? 0 0.0 0 @@ -6336,6 +6641,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6364,6 +6673,7 @@ spec_hgt_lvl_above_grnd 6000. ? ? +? 0 0.0 0 @@ -6373,6 +6683,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6401,6 +6715,7 @@ spec_hgt_lvl_above_grnd 6000. ? ? +? 0 0.0 0 @@ -6410,6 +6725,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6438,6 +6757,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -6447,6 +6767,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6466,8 +6790,8 @@ TMP spec_hgt_lvl_above_grnd 0 ? -4 -30. 50. 80. 100. +6 +30. 50. 80. 100. 160. 320. ? 0 ? @@ -6475,6 +6799,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6484,6 +6809,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6492,19 +6821,19 @@ spec_hgt_lvl_above_grnd ? ? ? -60 -UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +578 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT ? 1 tmpl4_0 -UGRD +SPFH ? ? -spec_alt_above_mean_sea_lvl +spec_hgt_lvl_above_grnd 0 ? -10 -305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. +1 +80. ? 0 ? @@ -6512,6 +6841,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -6521,27 +6851,31 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +5.0 0 0 0 ? ? ? -576 -UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +579 +PRES_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT ? 1 tmpl4_0 -UGRD +PRES ? ? spec_hgt_lvl_above_grnd 0 ? -4 -30. 50. 80. 100. +1 +80. ? 0 ? @@ -6549,6 +6883,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6558,20 +6893,24 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -61 -VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +60 +UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL ? 1 tmpl4_0 -VGRD +UGRD ? ? spec_alt_above_mean_sea_lvl @@ -6586,6 +6925,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -6595,6 +6935,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6603,19 +6947,19 @@ spec_alt_above_mean_sea_lvl ? ? ? -577 -VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +576 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT ? 1 tmpl4_0 -VGRD +UGRD ? ? spec_hgt_lvl_above_grnd 0 ? -4 -30. 50. 80. 100. +6 +30. 50. 80. 100. 160. 320. ? 0 ? @@ -6623,6 +6967,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6632,6 +6977,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6640,19 +6989,19 @@ spec_hgt_lvl_above_grnd ? ? ? -451 -SPFH_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +61 +VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL ? 1 tmpl4_0 -SPFH +VGRD ? ? spec_alt_above_mean_sea_lvl 0 ? -1 -305. +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. ? 0 ? @@ -6660,6 +7009,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -6669,27 +7019,31 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +4.0 0 0 0 ? ? ? -578 -SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +577 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT ? 1 tmpl4_0 -SPFH +VGRD ? ? spec_hgt_lvl_above_grnd 0 ? -4 -30. 50. 80. 100. +6 +30. 50. 80. 100. 160. 320. ? 0 ? @@ -6697,6 +7051,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6706,27 +7061,31 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +4.0 0 0 0 ? ? ? -579 -PRES_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +451 +SPFH_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL ? 1 tmpl4_0 -PRES +SPFH ? ? -spec_hgt_lvl_above_grnd +spec_alt_above_mean_sea_lvl 0 ? -4 -30. 50. 80. 100. +1 +305. ? 0 ? @@ -6734,6 +7093,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6743,8 +7103,12 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +5.0 0 0 0 @@ -6771,6 +7135,7 @@ HGT ? ? ? +? 0 0.0 0 @@ -6780,6 +7145,10 @@ HGT 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6808,6 +7177,7 @@ RH ? ? ? +? 0 0.0 0 @@ -6817,6 +7187,10 @@ RH 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -6845,6 +7219,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -6854,6 +7229,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6862,15 +7241,15 @@ hghst_trop_frz_lvl ? ? ? -247 -HGT_ON_LWST_LVL_OF_WET_BULB_ZERO +350 +RH_ON_HGHST_TROP_FRZ_LVL ? 1 tmpl4_0 -HGT +RH ? ? -lwst_lvl_of_wet_bulb_zero +hghst_trop_frz_lvl 0 ? 0 @@ -6882,6 +7261,7 @@ lwst_lvl_of_wet_bulb_zero ? ? ? +? 0 0.0 0 @@ -6891,32 +7271,37 @@ lwst_lvl_of_wet_bulb_zero 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --5.0 +-0.1 0 0 0 ? ? ? -67 -PRES_ON_SPEC_PRES_ABOVE_GRND -? +779 +HGT_ON_HGHST_TROP_-20C_LVL +height on highest tropospheric -20C level 1 tmpl4_0 -PRES +HGT ? ? -spec_pres_above_grnd +isothermal +0 +? +1 +253. +? 0 ? -6 -3000. 6000. 9000. 12000. 15000. 18000. -spec_pres_above_grnd 0 ? -6 -0. 3000. 6000. 9000. 12000. 15000. +? ? ? 0 @@ -6928,32 +7313,37 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +3.0 0 0 0 ? ? ? -68 -TMP_ON_SPEC_PRES_ABOVE_GRND -? +443 +HGT_ON_EQUIL_LVL +geopotential height on Equilibrium level 1 tmpl4_0 -TMP +HGT ? ? -spec_pres_above_grnd +equil_lvl 0 ? -6 -3000. 6000. 9000. 12000. 15000. 18000. -spec_pres_above_grnd 0 ? -6 -0. 3000. 6000. 9000. 12000. 15000. +? +0 +? +0 +? +? ? ? 0 @@ -6965,6 +7355,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6973,24 +7367,25 @@ spec_pres_above_grnd ? ? ? -69 -POT_ON_SPEC_PRES_ABOVE_GRND +247 +HGT_ON_LWST_LVL_OF_WET_BULB_ZERO ? 1 tmpl4_0 -POT +HGT +? +? +lwst_lvl_of_wet_bulb_zero +0 +? +0 ? ? -spec_pres_above_grnd 0 ? -1 -3000. -spec_pres_above_grnd 0 ? -1 -0. +? ? ? 0 @@ -7002,32 +7397,37 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +-5.0 0 0 0 ? ? ? -70 -DPT_ON_SPEC_PRES_ABOVE_GRND +67 +PRES_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -DPT +PRES ? ? spec_pres_above_grnd 0 ? -1 -3000. +6 +3000. 6000. 9000. 12000. 15000. 18000. spec_pres_above_grnd 0 ? -1 -0. +6 +0. 3000. 6000. 9000. 12000. 15000. +? ? ? 0 @@ -7039,20 +7439,24 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +6.0 0 0 0 ? ? ? -71 -SPFH_ON_SPEC_PRES_ABOVE_GRND +68 +TMP_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -SPFH +TMP ? ? spec_pres_above_grnd @@ -7067,6 +7471,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -7076,32 +7481,37 @@ spec_pres_above_grnd 0.0 0 0.0 -1 -5.0 +0 +0.0 +0 +0.0 +1 +3.0 0 0 0 ? ? ? -72 -RH_ON_SPEC_PRES_ABOVE_GRND +69 +POT_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -RH +POT ? ? spec_pres_above_grnd 0 ? -6 -3000. 6000. 9000. 12000. 15000. 18000. +1 +3000. spec_pres_above_grnd 0 ? -6 -0. 3000. 6000. 9000. 12000. 15000. +1 +0. +? ? ? 0 @@ -7113,20 +7523,24 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -2.0 +4.0 0 0 0 ? ? ? -88 -MCONV_ON_SPEC_PRES_ABOVE_GRND +70 +DPT_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -MCONV +DPT ? ? spec_pres_above_grnd @@ -7141,6 +7555,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -7150,6 +7565,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -7158,24 +7577,25 @@ spec_pres_above_grnd ? ? ? -89 -PWAT_ON_SPEC_PRES_ABOVE_GRND +71 +SPFH_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -PWAT +SPFH ? ? spec_pres_above_grnd 0 ? -1 -3000. +6 +3000. 6000. 9000. 12000. 15000. 18000. spec_pres_above_grnd 0 ? -1 -0. +6 +0. 3000. 6000. 9000. 12000. 15000. +? ? ? 0 @@ -7187,20 +7607,24 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +5.0 0 0 0 ? ? ? -73 -UGRD_ON_SPEC_PRES_ABOVE_GRND +72 +RH_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -UGRD +RH ? ? spec_pres_above_grnd @@ -7215,6 +7639,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -7224,20 +7649,66 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +2.0 0 0 0 ? ? ? -74 -VGRD_ON_SPEC_PRES_ABOVE_GRND +89 +PWAT_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -VGRD +PWAT +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +73 +UGRD_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +UGRD ? ? spec_pres_above_grnd @@ -7252,6 +7723,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -7261,6 +7733,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7269,24 +7745,25 @@ spec_pres_above_grnd ? ? ? -90 -VVEL_ON_SPEC_PRES_ABOVE_GRND +74 +VGRD_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -VVEL +VGRD ? ? spec_pres_above_grnd 0 ? -3 -3000. 9000. 18000. +6 +3000. 6000. 9000. 12000. 15000. 18000. spec_pres_above_grnd 0 ? -3 -0. 6000. 15000. +6 +0. 3000. 6000. 9000. 12000. 15000. +? ? ? 0 @@ -7298,8 +7775,12 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +4.0 0 0 0 @@ -7326,6 +7807,7 @@ cloud_base ? ? ? +? 0 0.0 0 @@ -7335,6 +7817,10 @@ cloud_base 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7363,6 +7849,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -7372,6 +7859,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7400,6 +7891,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -7409,6 +7901,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -7437,6 +7933,7 @@ cloud_base ? ? ? +? 0 0.0 0 @@ -7446,6 +7943,10 @@ cloud_base 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7474,6 +7975,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -7483,6 +7985,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7511,6 +8017,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -7520,6 +8027,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -7548,6 +8059,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -7557,6 +8069,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7585,6 +8101,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -7594,6 +8111,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7622,6 +8143,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -7631,6 +8153,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7659,6 +8185,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -7668,6 +8195,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7682,7 +8213,7 @@ REFC_ON_ENTIRE_ATMOS 1 tmpl4_0 REFC -NCEP +? ? entire_atmos_single_lyr 0 @@ -7696,6 +8227,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -7705,6 +8237,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7713,19 +8249,19 @@ entire_atmos_single_lyr ? ? ? -276 -REFZR_ON_ENTIRE_ATMOS +253 +REFD_ON_SPEC_HGT_LVL_ABOVE_GRND ? 1 tmpl4_0 -REFZR -NCEP +REFD ? -entire_atmos_single_lyr -0 ? +spec_hgt_lvl_above_grnd 0 ? +2 +4000. 1000. ? 0 ? @@ -7733,6 +8269,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -7742,23 +8279,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --4.0 +4.0 0 0 0 ? ? ? -277 -REFZI_ON_ENTIRE_ATMOS +221 +HPBL_ON_SURFACE ? 1 tmpl4_0 -REFZI -NCEP +HPBL ? -entire_atmos_single_lyr +? +surface 0 ? 0 @@ -7770,6 +8311,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -7779,27 +8321,31 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --4.0 +6.0 0 0 0 ? ? ? -253 -REFD_ON_SPEC_HGT_LVL_ABOVE_GRND +194 +PRES_ON_GRID_SCALE_CLOUD_BOT_LVL ? 1 tmpl4_0 -REFD -NCEP +PRES +? +? +grid_scale_cloud_bot_lvl +0 ? -spec_hgt_lvl_above_grnd 0 ? -2 -4000. 1000. ? 0 ? @@ -7807,6 +8353,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -7816,27 +8363,31 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +6.0 0 0 0 ? ? ? -279 -REFZR_ON_SPEC_HGT_LVL_ABOVE_GRND +195 +PRES_ON_GRID_SCALE_CLOUD_TOP_LVL ? 1 tmpl4_0 -REFZR -NCEP +PRES +? +? +grid_scale_cloud_top_lvl +0 ? -spec_hgt_lvl_above_grnd 0 ? -2 -4000. 1000. ? 0 ? @@ -7844,6 +8395,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -7853,27 +8405,31 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --4.0 +6.0 0 0 0 ? ? ? -280 -REFZI_ON_SPEC_HGT_LVL_ABOVE_GRND +979 +EFSH_ON_EFBL ? 1 tmpl4_0 -REFZI +EFSH NCEP ? -spec_hgt_lvl_above_grnd +level_free_convection +0 +? 0 ? -2 -4000. 1000. ? 0 ? @@ -7881,6 +8437,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -7890,23 +8447,27 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --4.0 +-1.0 0 0 0 ? ? ? -221 -HPBL_ON_SURFACE +980 +EFSH_ON_EFTL ? 1 tmpl4_0 -HPBL +EFSH NCEP ? -surface +equil_lvl 0 ? 0 @@ -7918,6 +8479,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7927,23 +8489,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +-1.0 0 0 0 ? ? ? -194 -PRES_ON_GRID_SCALE_CLOUD_BOT_LVL +982 +ELMELT_ON_EFTL ? 1 tmpl4_0 -PRES -? +ELMELT +NCEP ? -grid_scale_cloud_bot_lvl +equil_lvl 0 ? 0 @@ -7955,6 +8521,7 @@ grid_scale_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -7964,23 +8531,27 @@ grid_scale_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +-1.0 0 0 0 ? ? ? -195 -PRES_ON_GRID_SCALE_CLOUD_TOP_LVL +983 +UESH_ON_EFL ? 1 tmpl4_0 -PRES -? +UESH +NCEP ? -grid_scale_cloud_top_lvl +level_free_convection 0 ? 0 @@ -7992,6 +8563,7 @@ grid_scale_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -8001,23 +8573,27 @@ grid_scale_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +-1.0 0 0 0 ? ? ? -200 -TCOLW_ON_ENTIRE_ATMOS +984 +VESH_ON_EFL ? 1 tmpl4_0 -TCOLW +VESH NCEP ? -entire_atmos_single_lyr +level_free_convection 0 ? 0 @@ -8029,6 +8605,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8038,23 +8615,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-1.0 0 0 0 ? ? ? -201 -TCOLI_ON_ENTIRE_ATMOS +985 +ESHR_ON_EFL ? 1 tmpl4_0 -TCOLI +ESHR NCEP ? -entire_atmos_single_lyr +level_free_convection 0 ? 0 @@ -8066,6 +8647,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8075,23 +8657,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-1.0 0 0 0 ? ? ? -202 -TCOLR_ON_ENTIRE_ATMOS +986 +UEID_ON_EFL ? 1 tmpl4_0 -TCOLR +UEID NCEP ? -entire_atmos_single_lyr +level_free_convection 0 ? 0 @@ -8103,6 +8689,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8112,23 +8699,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-1.0 0 0 0 ? ? ? -203 -TCOLS_ON_ENTIRE_ATMOS +987 +VEID_ON_EFL ? 1 tmpl4_0 -TCOLS +VEID NCEP ? -entire_atmos_single_lyr +level_free_convection 0 ? 0 @@ -8140,6 +8731,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8149,23 +8741,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-1.0 0 0 0 ? ? ? -204 -TCOLC_ON_ENTIRE_ATMOS +988 +E3KH_ON_EFL ? 1 tmpl4_0 -TCOLC +E3KH NCEP ? -entire_atmos_single_lyr +level_free_convection 0 ? 0 @@ -8177,6 +8773,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8186,23 +8783,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-1.0 0 0 0 ? ? ? -428 -TCOLG_ON_ENTIRE_ATMOS +989 +STPC_ON_EFL ? 1 tmpl4_0 -TCOLG -? +STPC +NCEP ? -entire_atmos_single_lyr +level_free_convection 0 ? 0 @@ -8214,6 +8815,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8223,23 +8825,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-1.0 0 0 0 ? ? ? -285 -TCLSW_ON_ENTIRE_ATMOS +990 +SIGT_ON_EFL ? 1 tmpl4_0 -TCLSW +SIGT NCEP ? -entire_atmos_single_lyr +level_free_convection 0 ? 0 @@ -8251,6 +8857,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8260,23 +8867,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-1.0 0 0 0 ? ? ? -286 -TCOLM_ON_ENTIRE_ATMOS +991 +SCCP_ON_EFL ? 1 tmpl4_0 -TCOLM +SCCP NCEP ? -entire_atmos_single_lyr +level_free_convection 0 ? 0 @@ -8288,6 +8899,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8297,23 +8909,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-1.0 0 0 0 ? ? ? -287 -HGT_ON_LWST_BOT_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR +993 +SIGH_ON_EFL ? 1 tmpl4_0 -HGT -? +SIGH +NCEP ? -lwst_bot_lvl_of_supercooled_liq_water_lyr +level_free_convection 0 ? 0 @@ -8325,6 +8941,7 @@ lwst_bot_lvl_of_supercooled_liq_water_lyr ? ? ? +? 0 0.0 0 @@ -8334,23 +8951,27 @@ lwst_bot_lvl_of_supercooled_liq_water_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +-1.0 0 0 0 ? ? ? -288 -HGT_ON_HGHST_TOP_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR +992 +MLFC_ON_EFL ? 1 tmpl4_0 -HGT -? +MLFC +NCEP ? -hghst_top_lvl_of_supercooled_liq_water_lyr +level_free_convection 0 ? 0 @@ -8362,6 +8983,7 @@ hghst_top_lvl_of_supercooled_liq_water_lyr ? ? ? +? 0 0.0 0 @@ -8371,23 +8993,27 @@ hghst_top_lvl_of_supercooled_liq_water_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-1.0 0 0 0 ? ? ? -260 -HGT_ON_CLOUD_CEILING +287 +HGT_ON_LWST_BOT_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR ? 1 tmpl4_0 HGT ? ? -cloud_ceilng +lwst_bot_lvl_of_supercooled_liq_water_lyr 0 ? 0 @@ -8399,6 +9025,7 @@ cloud_ceilng ? ? ? +? 0 0.0 0 @@ -8408,6 +9035,10 @@ cloud_ceilng 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8416,15 +9047,15 @@ cloud_ceilng ? ? ? -256 -ACM_LSPA_ON_SURFACE +288 +HGT_ON_HGHST_TOP_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR ? 1 -tmpl4_8 -LSPA -NCEP -ACM -surface +tmpl4_0 +HGT +? +? +hghst_top_lvl_of_supercooled_liq_water_lyr 0 ? 0 @@ -8436,6 +9067,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8445,23 +9077,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +5.0 0 0 0 ? ? ? -282 -PRES_ON_TOP_OF_ATMOS -? +408 +GSD_HGT_ON_CLOUD_CEILING +GSD_geopotential height on cloud ceiling 1 tmpl4_0 -PRES +HGT ? ? -top_of_atmos +cloud_ceilng 0 ? 0 @@ -8473,6 +9109,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -8482,23 +9119,27 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +-3.0 0 0 0 ? ? ? -290 -SWHR_ON_ENTIRE_ATMOS +487 +GSD_EXP_CEILING ? 1 tmpl4_0 -SWHR -NCEP +CEIL ? -entire_atmos_single_lyr +? +cloud_ceilng 0 ? 0 @@ -8510,6 +9151,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8519,23 +9161,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-3.0 0 0 0 ? ? ? -291 -LWHR_ON_ENTIRE_ATMOS +711 +GSD_EXP_CEILING_2 ? 1 tmpl4_0 -LWHR -NCEP +CEIL ? -entire_atmos_single_lyr +? +cloud_base 0 ? 0 @@ -8547,6 +9193,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8556,23 +9203,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-3.0 0 0 0 ? ? ? -292 -AVE_LRGHR_ON_ENTIRE_ATMOS +282 +PRES_ON_TOP_OF_ATMOS ? 1 -tmpl4_8 -LRGHR -NCEP -AVE -entire_atmos_single_lyr +tmpl4_0 +PRES +? +? +top_of_atmos 0 ? 0 @@ -8584,6 +9235,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8593,23 +9245,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +3.0 0 0 0 ? ? ? -295 -MCONV_ON_ENTIRE_ATMOS +389 +UGRD_ON_PLANETARY_BOUND_LYR ? 1 tmpl4_0 -MCONV +UGRD ? ? -entire_atmos_single_lyr +planetary_bound_lyr 0 ? 0 @@ -8621,6 +9277,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8630,23 +9287,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-4.0 0 0 0 ? ? ? -344 -PBLREG_ON_SURFACE +390 +VGRD_ON_PLANETARY_BOUND_LYR ? 1 tmpl4_0 -PBLREG +VGRD ? ? -surface +planetary_bound_lyr 0 ? 0 @@ -8658,6 +9319,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8667,20 +9329,24 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -2.0 +-4.0 0 0 0 ? ? ? -389 -UGRD_ON_PLANETARY_BOUND_LYR +289 +HGT_ON_PLANETARY_BOUND_LYR ? 1 tmpl4_0 -UGRD +HGT ? ? planetary_bound_lyr @@ -8695,6 +9361,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -8704,41 +9371,8 @@ planetary_bound_lyr 0.0 0 0.0 -1 --4.0 0 -0 -0 -? -? -? -390 -VGRD_ON_PLANETARY_BOUND_LYR -? -1 -tmpl4_0 -VGRD -? -? -planetary_bound_lyr -0 -? -0 -? -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 +0.0 0 0.0 1 @@ -8749,15 +9383,15 @@ planetary_bound_lyr ? ? ? -289 -HGT_ON_PLANETARY_BOUND_LYR +381 +MIXHT_ON_SURFACE ? 1 tmpl4_0 -HGT +MIXHT ? ? -planetary_bound_lyr +surface 0 ? 0 @@ -8769,48 +9403,16 @@ planetary_bound_lyr ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 --4.0 -0 -0 -0 -? -? -? -381 -MIXHT_ON_SURFACE -? -1 -tmpl4_0 -MIXHT -? -? -surface -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -8829,7 +9431,7 @@ RETOP_ON_ENTIRE_ATMOS_SINGLE_LYR 1 tmpl4_0 RETOP -NCEP +? ? entire_atmos_single_lyr 0 @@ -8843,6 +9445,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8852,6 +9455,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8880,6 +9487,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -8889,6 +9497,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -8917,6 +9529,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8926,6 +9539,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -8954,6 +9571,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -8963,6 +9581,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8991,6 +9613,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -9000,6 +9623,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9028,6 +9655,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -9037,6 +9665,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -2.0 0 @@ -9065,6 +9697,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -9074,6 +9707,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -2.0 0 @@ -9102,6 +9739,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -9111,6 +9749,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -9139,6 +9781,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -9148,6 +9791,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -9176,6 +9823,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -9185,6 +9833,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -9213,6 +9865,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -9222,6 +9875,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9250,6 +9907,7 @@ isobaric_sfc 100000. ? ? +? 0 0.0 0 @@ -9259,6 +9917,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9287,6 +9949,7 @@ isobaric_sfc 100000. ? ? +? 0 0.0 0 @@ -9296,6 +9959,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9324,6 +9991,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9333,6 +10001,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9361,6 +10033,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -9370,8 +10043,54 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +7.0 +0 +0 +0 +? +? +? +769 +GSD_VIL_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +VIL +? +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +7.0 0 0 0 @@ -9384,7 +10103,7 @@ Updraft Helicity on Specified Height Level Above Ground 1 tmpl4_0 UPHL -NCEP +? ? spec_hgt_lvl_above_grnd 0 @@ -9398,6 +10117,7 @@ spec_hgt_lvl_above_grnd 2000. ? ? +? 0 0.0 0 @@ -9407,6 +10127,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9435,6 +10159,7 @@ spec_hgt_lvl_above_grnd 2000. ? ? +? 0 0.0 0 @@ -9444,6 +10169,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9472,6 +10201,7 @@ spec_hgt_lvl_above_grnd 2000. ? ? +? 0 0.0 0 @@ -9481,6 +10211,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9509,6 +10243,7 @@ spec_hgt_lvl_above_grnd 0000. ? ? +? 0 0.0 0 @@ -9518,6 +10253,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9546,6 +10285,7 @@ spec_hgt_lvl_above_grnd 0000. ? ? +? 0 0.0 0 @@ -9555,6 +10295,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9583,6 +10327,7 @@ spec_hgt_lvl_above_grnd 0000. ? ? +? 0 0.0 0 @@ -9592,6 +10337,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -9620,6 +10369,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -9629,6 +10379,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -9657,6 +10411,7 @@ spec_hgt_lvl_above_grnd 0000. ? ? +? 0 0.0 0 @@ -9666,6 +10421,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -9674,19 +10433,19 @@ spec_hgt_lvl_above_grnd ? ? ? -785 -MAX_REF_ON_ISOTHERMAL_-10C -maximum reflectivity on -10C suface +728 +GSD_HAILCAST_HAIL_DIAMETER +? 1 tmpl4_8 -MAXREF -NCEP +HAIL +? MAX -isothermal +surface +0 +? 0 ? -1 -263. ? 0 ? @@ -9694,6 +10453,7 @@ isothermal ? ? ? +? 0 0.0 0 @@ -9703,22 +10463,26 @@ isothermal 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --3.0 +3.0 0 0 0 ? ? ? -912 -REFD_ON_ISOTHERMAL -? +785 +MAX_REF_ON_ISOTHERMAL_-10C +maximum reflectivity on -10C suface 1 -tmpl4_0 -REFD +tmpl4_8 +MAXREF NCEP -? +MAX isothermal 0 ? @@ -9731,6 +10495,7 @@ isothermal ? ? ? +? 0 0.0 0 @@ -9740,43 +10505,31 @@ isothermal 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --4.0 +-3.0 0 0 0 ? ? ? -NATLEV -32769 -ncep_nco -v2003 -local_tab_yes1 -fcst -oper -fcst -fcst -hour -nws_ncep -rrfs -complex_packing_spatial_diff -2nd_ord_sptdiff -fltng_pnt -lossless -12 -HGT_ON_ISOBARIC_SFC +912 +REFD_ON_ISOTHERMAL ? 1 tmpl4_0 -HGT +REFD ? ? -isobaric_sfc +isothermal 0 ? -4 -25000. 50000. 70000. 85000. +1 +263. ? 0 ? @@ -9784,6 +10537,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -9793,33 +10547,38 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +-4.0 0 0 0 ? ? ? -13 -TMP_ON_ISOBARIC_SFC +913 +1H_FFG_EXCEEDANCE ? 1 -tmpl4_0 -TMP -? +tmpl4_9 +QPFFFG +NCEP +ACM +surface +0 ? -isobaric_sfc 0 ? -5 -25000. 50000. 70000. 85000. 95000. ? 0 ? 0 ? ? +prob_above_lower_limit ? 0 0.0 @@ -9830,33 +10589,38 @@ isobaric_sfc 0.0 0 0.0 +0 +1.0 +0 +0.0 1 -3.0 +5.0 0 0 0 ? ? ? -17 -RH_ON_ISOBARIC_SFC +914 +ACM_FFG_EXCEEDANCE ? 1 -tmpl4_0 -RH -? +tmpl4_9 +QPFFFG +NCEP +ACM +surface +0 ? -isobaric_sfc 0 ? -4 -25000. 50000. 70000. 85000. ? 0 ? 0 ? ? +prob_above_lower_limit ? 0 0.0 @@ -9867,33 +10631,38 @@ isobaric_sfc 0.0 0 0.0 +0 +1.0 +0 +0.0 1 -2.0 +5.0 0 0 0 ? ? ? -18 -UGRD_ON_ISOBARIC_SFC +915 +1H_2YARI_EXCEEDANCE ? 1 -tmpl4_0 -UGRD -? +tmpl4_9 +QPFARI +NCEP +ACM +surface +0 ? -isobaric_sfc 0 ? -4 -25000. 50000. 70000. 85000. ? 0 ? 0 ? ? +prob_above_lower_limit ? 0 0.0 @@ -9904,33 +10673,38 @@ isobaric_sfc 0.0 0 0.0 +0 +2.0 +0 +0.0 1 -4.0 +5.0 0 0 0 ? ? ? -19 -VGRD_ON_ISOBARIC_SFC +916 +ACM_2YARI_EXCEEDANCE ? 1 -tmpl4_0 -VGRD -? +tmpl4_9 +QPFARI +NCEP +ACM +surface +0 ? -isobaric_sfc 0 ? -4 -25000. 50000. 70000. 85000. ? 0 ? 0 ? ? +prob_above_lower_limit ? 0 0.0 @@ -9941,33 +10715,38 @@ isobaric_sfc 0.0 0 0.0 +0 +2.0 +0 +0.0 1 -4.0 +5.0 0 0 0 ? ? ? -20 -VVEL_ON_ISOBARIC_SFC +917 +1H_5YARI_EXCEEDANCE ? 1 -tmpl4_0 -VVEL -? +tmpl4_9 +QPFARI +NCEP +ACM +surface +0 ? -isobaric_sfc 0 ? -4 -25000. 50000. 70000. 85000. ? 0 ? 0 ? ? +prob_above_lower_limit ? 0 0.0 @@ -9978,6 +10757,10 @@ isobaric_sfc 0.0 0 0.0 +0 +5.0 +0 +0.0 1 5.0 0 @@ -9986,25 +10769,26 @@ isobaric_sfc ? ? ? -16 -SPFH_ON_ISOBARIC_SFC +918 +ACM_5YARI_EXCEEDANCE ? 1 -tmpl4_0 -SPFH -? +tmpl4_9 +QPFARI +NCEP +ACM +surface +0 ? -isobaric_sfc 0 ? -4 -25000. 50000. 70000. 85000. ? 0 ? 0 ? ? +prob_above_lower_limit ? 0 0.0 @@ -10015,33 +10799,38 @@ isobaric_sfc 0.0 0 0.0 +0 +5.0 +0 +0.0 1 -4.0 +5.0 0 0 0 ? ? ? -21 -ABSV_ON_ISOBARIC_SFC +919 +1H_10YARI_EXCEEDANCE ? 1 -tmpl4_0 -ABSV -? +tmpl4_9 +QPFARI +NCEP +ACM +surface +0 ? -isobaric_sfc 0 ? -4 -25000. 50000. 70000. 85000. ? 0 ? 0 ? ? +prob_above_lower_limit ? 0 0.0 @@ -10052,33 +10841,38 @@ isobaric_sfc 0.0 0 0.0 +0 +10.0 +0 +0.0 1 -4.0 +5.0 0 0 0 ? ? ? -1 -PRES_ON_HYBRID_LVL +920 +ACM_10YARI_EXCEEDANCE ? 1 -tmpl4_0 -PRES -? +tmpl4_9 +QPFARI +NCEP +ACM +surface +0 ? -hybrid_lvl 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? 0 ? ? +prob_above_lower_limit ? 0 0.0 @@ -10089,33 +10883,38 @@ hybrid_lvl 0.0 0 0.0 +0 +10.0 +0 +0.0 1 -6.0 +5.0 0 0 0 ? ? ? -77 -HGT_ON_HYBRID_LVL +921 +1H_100YARI_EXCEEDANCE ? 1 -tmpl4_0 -HGT -? +tmpl4_9 +QPFARI +NCEP +ACM +surface +0 ? -hybrid_lvl 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? 0 ? ? +prob_above_lower_limit ? 0 0.0 @@ -10126,33 +10925,38 @@ hybrid_lvl 0.0 0 0.0 +0 +100.0 +0 +0.0 1 -4.0 +5.0 0 0 0 ? ? ? -2 -TMP_ON_HYBRID_LVL +922 +ACM_100YARI_EXCEEDANCE ? 1 -tmpl4_0 -TMP -? +tmpl4_9 +QPFARI +NCEP +ACM +surface +0 ? -hybrid_lvl 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? 0 ? ? +prob_above_lower_limit ? 0 0.0 @@ -10163,282 +10967,321 @@ hybrid_lvl 0.0 0 0.0 +0 +100.0 +0 +0.0 1 -4.0 +5.0 0 0 0 ? ? ? -5 -SPFH_ON_HYBRID_LVL +745 +BIOMASS_BURNING_EMISSIONS ? 1 -tmpl4_0 -SPFH +tmpl4_48 +AEMFLX ? ? -hybrid_lvl +entire_atmos_single_lyr +0 +? 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? 0 ? +particulate_org_matter_dry ? +smaller_than_first_limit +7 +25 +0 +0.0 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -7.0 +5.0 0 0 0 ? ? ? -7 -UGRD_ON_HYBRID_LVL +739 +SMOKE_ON_SPEC_HGT_LVL_ABOVE_GRND_8m ? 1 -tmpl4_0 -UGRD +tmpl4_48 +MASSDEN ? ? -hybrid_lvl +spec_hgt_lvl_above_grnd 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +1 +8. ? 0 ? 0 ? +particulate_org_matter_dry ? +smaller_than_first_limit +7 +25 +0 +0.0 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -4.0 +6.0 0 0 0 ? ? ? -8 -VGRD_ON_HYBRID_LVL +736 +SMOKE_ON_ENTIRE_ATMOS_SINGLE_LYR ? 1 -tmpl4_0 -VGRD +tmpl4_48 +COLMD ? ? -hybrid_lvl +entire_atmos_single_lyr +0 +? 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? 0 ? +particulate_org_matter_dry ? +smaller_than_first_limit +7 +25 +0 +0.0 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -4.0 +5.0 0 0 0 ? ? ? -9 -VVEL_ON_HYBRID_LVL +744 +DUST_ON_SPEC_HGT_LVL_ABOVE_GRND_8m ? 1 -tmpl4_0 -VVEL +tmpl4_48 +MASSDEN ? ? -hybrid_lvl +spec_hgt_lvl_above_grnd 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +1 +8. ? 0 ? 0 ? +dust_dry ? +smaller_than_first_limit +7 +25 +0 +0.0 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -5.0 +6.0 0 0 0 ? ? ? -264 -DZDT_ON_HYBRID_LVL +741 +DUST_ON_ENTIRE_ATMOS_SINGLE_LYR ? 1 -tmpl4_0 -DZDT +tmpl4_48 +COLMD ? ? -hybrid_lvl +entire_atmos_single_lyr +0 +? 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? 0 ? +dust_dry ? +smaller_than_first_limit +7 +25 +0 +0.0 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 --5.0 +5.0 0 0 0 ? ? ? -11 -TKE_ON_HYBRID_LVL +1014 +COARSEPM_ON_SPEC_HGT_LVL_ABOVE_GRND_8m ? 1 -tmpl4_0 -TKE +tmpl4_48 +MASSDEN ? ? -hybrid_lvl +spec_hgt_lvl_above_grnd 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +1 +8. ? 0 ? 0 ? +dust_dry ? +between_first_second_limit_noincl2ndlmt +7 +25 +7 +100 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -3.0 +6.0 0 0 0 ? ? ? -78 -AVE_LRGHR_ON_HYBRID_LVL +1011 +COARSEPM_ON_ENTIRE_ATMOS_SINGLE_LYR ? 1 -tmpl4_8 -LRGHR -NCEP -AVE -hybrid_lvl +tmpl4_48 +COLMD +? +? +entire_atmos_single_lyr +0 +? 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? 0 ? +dust_dry ? +between_first_second_limit_noincl2ndlmt +7 +25 +7 +100 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -3.0 +5.0 0 0 0 ? ? ? -23 -MSLET_ON_MEAN_SEA_LVL +735 +AOD_ON_ENTIRE_ATMOS_SINGLE_LYR ? 1 tmpl4_0 -MSLET -NCEP +AOTK ? -mean_sea_lvl +? +entire_atmos_single_lyr 0 ? 0 @@ -10450,6 +11293,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -10459,23 +11303,27 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +5.0 0 0 0 ? ? ? -105 -PRES_ON_MEAN_SEA_LVL -? +755 +HWP_ON_SURFACE +Hourly Wildfire Potential on surface 1 -tmpl4_0 -PRMSL -? +tmpl4_8 +WFIREPOT ? -mean_sea_lvl +AVE +surface 0 ? 0 @@ -10487,6 +11335,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -10496,105 +11345,120 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +5.0 0 0 0 ? ? ? -106 -TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +759 +AVE_SMOKE_ON_SPEC_HGT_LVL_ABOVE_GRND_8m ? 1 -tmpl4_0 -TMP -? +tmpl4_46 +MASSDEN ? +AVE spec_hgt_lvl_above_grnd 0 ? 1 -2. +8. ? 0 ? 0 ? +particulate_org_matter_dry ? +smaller_than_first_limit +7 +25 +0 +0.0 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -4.0 +6.0 0 0 0 ? ? ? -112 -SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +771 +AVE_DUST_ON_SPEC_HGT_LVL_ABOVE_GRND_8m ? 1 -tmpl4_0 -SPFH -? +tmpl4_46 +MASSDEN ? +AVE spec_hgt_lvl_above_grnd 0 ? 1 -2. +8. ? 0 ? 0 ? +dust_dry ? +smaller_than_first_limit +7 +100 +0 +0.0 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -4.0 +6.0 0 0 0 ? ? ? -113 -DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +955 +DENDRITIC_LAYER_DEPTH ? 1 tmpl4_0 -DPT -? +LAYTH +NCEP ? -spec_hgt_lvl_above_grnd +isothermal 0 ? 1 -2. -? +261. +isothermal 0 ? -0 +1 +256. ? ? ? @@ -10607,6 +11471,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10615,12 +11483,12 @@ spec_hgt_lvl_above_grnd ? ? ? -114 -RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +547 +GSD_DEPR_ON_SPEC_HGT_LVL_ABOVE_GRND_2m ? 1 tmpl4_0 -RH +DEPR ? ? spec_hgt_lvl_above_grnd @@ -10635,6 +11503,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -10644,27 +11513,31 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +-4.0 0 0 0 ? ? ? -64 -UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +546 +GSD_POT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m ? 1 tmpl4_0 -UGRD +POT ? ? spec_hgt_lvl_above_grnd 0 ? 1 -10. +2. ? 0 ? @@ -10672,6 +11545,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -10681,27 +11555,31 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +-4.0 0 0 0 ? ? ? -65 -VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m -? +753 +GSD_PRES_ON_0C_ISOTHERM +GSD_pressure on Level of 0 deg (C) isotherm 1 tmpl4_0 -VGRD +PRES ? ? -spec_hgt_lvl_above_grnd +0C_isotherm +0 +? 0 ? -1 -10. ? 0 ? @@ -10709,6 +11587,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -10718,27 +11597,31 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -158 -POT_ON_SPEC_HGT_LVL_ABOVE_GRND_10m -? +756 +GSD_PRES_ON_HGHST_TROP_FRZ_LVL +GSD_pressure on Highest tropospheric freezing level 1 tmpl4_0 -POT +PRES ? ? -spec_hgt_lvl_above_grnd +hghst_trop_frz_lvl +0 +? 0 ? -1 -10. ? 0 ? @@ -10746,6 +11629,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -10755,27 +11639,31 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +3.0 0 0 0 ? ? ? -159 -SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +704 +GSD_MAX_LTG_THREAT3_ON_ENTIRE_ATMOS ? 1 -tmpl4_0 -SPFH -? +tmpl4_8 +LTNG +NCEP +MAX +entire_atmos +0 ? -spec_hgt_lvl_above_grnd 0 ? -1 -10. ? 0 ? @@ -10783,6 +11671,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -10792,27 +11681,47 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -24 -PRES_ON_SURFACE +NATLEV +32769 +ncep_nco +v2003 +local_tab_yes1 +fcst +oper +fcst +fcst +hour +nws_ncep +rrfs +complex_packing_spatial_diff +2nd_ord_sptdiff +fltng_pnt +lossless +12 +HGT_ON_ISOBARIC_SFC ? 1 tmpl4_0 -PRES -? +HGT ? -surface -0 ? +isobaric_sfc 0 ? +4 +25000. 50000. 70000. 85000. ? 0 ? @@ -10820,6 +11729,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10829,6 +11739,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10837,19 +11751,733 @@ surface ? ? ? -25 -HGT_ON_SURFACE +13 +TMP_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +TMP +? +? +isobaric_sfc +0 +? +5 +25000. 50000. 70000. 85000. 95000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +17 +RH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RH +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +18 +UGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +UGRD +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +19 +VGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VGRD +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +16 +SPFH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SPFH +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +21 +ABSV_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +ABSV +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +1 +PRES_ON_HYBRID_LVL +? +1 +tmpl4_0 +PRES +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +77 +HGT_ON_HYBRID_LVL +? +1 +tmpl4_0 +HGT +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +2 +TMP_ON_HYBRID_LVL +? +1 +tmpl4_0 +TMP +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +5 +SPFH_ON_HYBRID_LVL +? +1 +tmpl4_0 +SPFH +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +7.0 +0 +0 +0 +? +? +? +7 +UGRD_ON_HYBRID_LVL +? +1 +tmpl4_0 +UGRD +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +8 +VGRD_ON_HYBRID_LVL +? +1 +tmpl4_0 +VGRD +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +264 +DZDT_ON_HYBRID_LVL +? +1 +tmpl4_0 +DZDT +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +11 +TKE_ON_HYBRID_LVL +? +1 +tmpl4_0 +TKE +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +749 +GSD_RH_WRT_PRECIP_WATER_ON_ENTIRE_ATMOS +RELATIVE HUMIDITY WITH RESPECT TO PRECIPITABLE WATER +1 +tmpl4_0 +RHPW +NCEP +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-0.1 +0 +0 +0 +? +? +? +23 +MSLET_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +MSLET +NCEP +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +106 +TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +TMP +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 ? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 1 -tmpl4_0 -HGT +4.0 +0 +0 +0 ? ? -surface -0 ? +112 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd 0 ? +1 +2. ? 0 ? @@ -10857,6 +12485,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10866,27 +12495,31 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +4.0 0 0 0 ? ? ? -27 -POT_ON_SURFACE +113 +DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m ? 1 tmpl4_0 -POT -? +DPT ? -surface -0 ? +spec_hgt_lvl_above_grnd 0 ? +1 +2. ? 0 ? @@ -10894,6 +12527,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10903,27 +12537,31 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +4.0 0 0 0 ? ? ? -28 -SPFH_ON_SURFACE +114 +RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m ? 1 tmpl4_0 -SPFH -? +RH ? -surface -0 ? +spec_hgt_lvl_above_grnd 0 ? +1 +2. ? 0 ? @@ -10931,6 +12569,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10940,6 +12579,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -10948,19 +12591,19 @@ surface ? ? ? -26 -TMP_ON_SURFACE +64 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m ? 1 tmpl4_0 -TMP -? +UGRD ? -surface -0 ? +spec_hgt_lvl_above_grnd 0 ? +1 +10. ? 0 ? @@ -10968,6 +12611,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10977,6 +12621,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10985,24 +12633,25 @@ surface ? ? ? -423 -MAX_MAXUVV_ON_ISOBARIC_SFC_100-1000hpa -hourly maximum Upward Vertical Velocity between 100-1000hpa +65 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? 1 -tmpl4_8 -MAXUVV -NCEP -MAX -isobaric_sfc +tmpl4_0 +VGRD +? +? +spec_hgt_lvl_above_grnd 0 ? 1 -10000. -isobaric_sfc +10. +? +0 +? 0 ? -1 -100000. +? ? ? 0 @@ -11014,32 +12663,37 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --3.0 +4.0 0 0 0 ? ? ? -424 -MAX_MAXDVV_ON_ISOBARIC_SFC_100-1000hpa -hourly maximum Downward Vertical Velocity between 100-1000hpa +24 +PRES_ON_SURFACE +? 1 -tmpl4_8 -MAXDVV -NCEP -MAX -isobaric_sfc +tmpl4_0 +PRES +? +? +surface 0 ? -1 -10000. -isobaric_sfc 0 ? -1 -100000. +? +0 +? +0 +? +? ? ? 0 @@ -11051,32 +12705,37 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --3.0 +6.0 0 0 0 ? ? ? -790 -GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +25 +HGT_ON_SURFACE ? 1 -tmpl4_8 -MXUPHL -NCEP -MAX -spec_hgt_lvl_above_grnd +tmpl4_0 +HGT +? +? +surface +0 +? +0 +? +? 0 ? -1 -3000. -spec_hgt_lvl_above_grnd 0 ? -1 -0000. +? ? ? 0 @@ -11088,32 +12747,37 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --3.0 +6.0 0 0 0 ? ? ? -420 -MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km -maximum Updraft Helicity on Specified Height Level Above Ground +27 +POT_ON_SURFACE +? 1 -tmpl4_8 -MXUPHL -NCEP -MAX -spec_hgt_lvl_above_grnd +tmpl4_0 +POT +? +? +surface 0 ? -1 -5000. -spec_hgt_lvl_above_grnd 0 ? -1 -2000. +? +0 +? +0 +? +? ? ? 0 @@ -11125,32 +12789,37 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --3.0 +5.0 0 0 0 ? ? ? -786 -GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +28 +SPFH_ON_SURFACE ? 1 -tmpl4_8 -MNUPHL -NCEP -MIN -spec_hgt_lvl_above_grnd +tmpl4_0 +SPFH +? +? +surface +0 +? +0 +? +? 0 ? -1 -5000. -spec_hgt_lvl_above_grnd 0 ? -1 -2000. +? ? ? 0 @@ -11162,32 +12831,37 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --3.0 +3.0 0 0 0 ? ? ? -791 -GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +26 +TMP_ON_SURFACE +? +1 +tmpl4_0 +TMP +? +? +surface +0 +? +0 +? ? -1 -tmpl4_8 -MNUPHL -NCEP -MIN -spec_hgt_lvl_above_grnd 0 ? -1 -3000. -spec_hgt_lvl_above_grnd 0 ? -1 -0000. +? ? ? 0 @@ -11199,32 +12873,37 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --3.0 +4.0 0 0 0 ? ? ? -793 -GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km -? +581 +VIL_ON_ENTIRE_ATMOS +entire atmosphere Vertically Integrated Liquid (kg/m-2) 1 -tmpl4_8 -RELV +tmpl4_0 +VIL +? +? +entire_atmos_single_lyr +0 +? +0 +? ? -MAX -spec_hgt_lvl_above_grnd 0 ? -1 -1000. -spec_hgt_lvl_above_grnd 0 ? -1 -0000. +? ? ? 0 @@ -11236,27 +12915,31 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +7.0 0 0 0 ? ? ? -890 -GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_HYBRID1 -Hourly max relative vorticity on hybrid level 1 +769 +GSD_VIL_ON_ENTIRE_ATMOS +? 1 -tmpl4_8 -RELV +tmpl4_0 +VIL +? +? +entire_atmos +0 ? -MAX -hybrid_lvl 0 ? -1 -1. ? 0 ? @@ -11264,6 +12947,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -11273,32 +12957,37 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +7.0 0 0 0 ? ? ? -792 -GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km +400 +RETOP_ON_ENTIRE_ATMOS_SINGLE_LYR ? 1 -tmpl4_8 -RELV +tmpl4_0 +RETOP +? +? +entire_atmos_single_lyr +0 +? +0 +? ? -MAX -spec_hgt_lvl_above_grnd 0 ? -1 -2000. -spec_hgt_lvl_above_grnd 0 ? -1 -0000. +? ? ? 0 @@ -11310,31 +12999,36 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +6.0 0 0 0 ? ? ? -506 -MAX_MAXUW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m -U Component of Hourly Maximum 10m Wind Speed (m/s) +423 +MAX_MAXUVV_ON_ISOBARIC_SFC_100-1000hpa +hourly maximum Upward Vertical Velocity between 100-1000hpa 1 tmpl4_8 -MAXUW +MAXUVV NCEP MAX -spec_hgt_lvl_above_grnd +isobaric_sfc 0 ? 1 -10. -? +10000. +isobaric_sfc 0 ? -0 +1 +100000. ? ? ? @@ -11347,31 +13041,36 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --4.0 +-3.0 0 0 0 ? ? ? -507 -MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m -V Component of Hourly Maximum 10m Wind Speed (m/s) +424 +MAX_MAXDVV_ON_ISOBARIC_SFC_100-1000hpa +hourly maximum Downward Vertical Velocity between 100-1000hpa 1 tmpl4_8 -MAXVW +MAXDVV NCEP MAX -spec_hgt_lvl_above_grnd +isobaric_sfc 0 ? 1 -10. -? +10000. +isobaric_sfc 0 ? -0 +1 +100000. ? ? ? @@ -11384,31 +13083,36 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --4.0 +-3.0 0 0 0 ? ? ? -421 -MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km -maximum Updraft Helicity on Specified Height Level Above Ground +790 +GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +? 1 tmpl4_8 -MAXREF +MXUPHL NCEP MAX spec_hgt_lvl_above_grnd 0 ? 1 -1000. -? +3000. +spec_hgt_lvl_above_grnd 0 ? -0 +1 +0000. ? ? ? @@ -11421,6 +13125,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -11429,23 +13137,24 @@ spec_hgt_lvl_above_grnd ? ? ? -785 -MAX_REF_ON_ISOTHERMAL_-10C -maximum reflectivity on -10C suface +420 +MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +maximum Updraft Helicity on Specified Height Level Above Ground 1 tmpl4_8 -MAXREF +MXUPHL NCEP MAX -isothermal +spec_hgt_lvl_above_grnd 0 ? 1 -263. -? +5000. +spec_hgt_lvl_above_grnd 0 ? -0 +1 +2000. ? ? ? @@ -11458,6 +13167,10 @@ isothermal 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -11466,23 +13179,24 @@ isothermal ? ? ? -912 -REFD_ON_ISOTHERMAL +786 +GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km ? 1 -tmpl4_0 -REFD +tmpl4_8 +MNUPHL NCEP -? -isothermal +MIN +spec_hgt_lvl_above_grnd 0 ? 1 -263. -? +5000. +spec_hgt_lvl_above_grnd 0 ? -0 +1 +2000. ? ? ? @@ -11495,31 +13209,36 @@ isothermal 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --4.0 +-3.0 0 0 0 ? ? ? -345 -MAX_TMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +791 +GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km ? 1 tmpl4_8 -TMAX -? -MAX +MNUPHL +NCEP +MIN spec_hgt_lvl_above_grnd 0 ? 1 -2. -? +3000. +spec_hgt_lvl_above_grnd 0 ? -0 +1 +0000. ? ? ? @@ -11532,31 +13251,36 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +-3.0 0 0 0 ? ? ? -346 -MIN_TMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +793 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km ? 1 tmpl4_8 -TMIN +RELV ? -MIN +MAX spec_hgt_lvl_above_grnd 0 ? 1 -2. -? +1000. +spec_hgt_lvl_above_grnd 0 ? -0 +1 +0000. ? ? ? @@ -11569,27 +13293,31 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +5.0 0 0 0 ? ? ? -347 -MAX_MAXRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m -? +890 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_HYBRID1 +Hourly max relative vorticity on hybrid level 1 1 tmpl4_8 -MAXRH +RELV ? MAX -spec_hgt_lvl_above_grnd +hybrid_lvl 0 ? 1 -2. +1. ? 0 ? @@ -11597,6 +13325,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -11606,31 +13335,36 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --2.0 +5.0 0 0 0 ? ? ? -348 -MIN_MINRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +792 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km ? 1 tmpl4_8 -MINRH -NCEP -MIN +RELV +? +MAX spec_hgt_lvl_above_grnd 0 ? 1 -2. -? +2000. +spec_hgt_lvl_above_grnd 0 ? -0 +1 +0000. ? ? ? @@ -11643,69 +13377,37 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --2.0 +5.0 0 0 0 ? ? ? -116 -TSOIL_ON_DEPTH_BEL_LAND_SFC +728 +GSD_HAILCAST_HAIL_DIAMETER ? 1 -tmpl4_0 -TSOIL -? -? -depth_bel_land_sfc -4 -2 2 2 2 -4 -0. 10. 40. 100. -depth_bel_land_sfc -4 -2 2 2 2 -4 -10. 40. 100. 200. -? +tmpl4_8 +HAIL ? +MAX +surface 0 -0.0 -0 -0.0 ? 0 -0.0 -0 -0.0 -1 -4.0 -0 -0 -0 ? ? +0 ? -117 -SOILW_ON_DEPTH_BEL_LAND_SFC +0 ? -1 -tmpl4_0 -SOILW -NCEP ? -depth_bel_land_sfc -4 -2 2 2 2 -4 -0. 10. 40. 100. -depth_bel_land_sfc -4 -2 2 2 2 -4 -10. 40. 100. 200. ? ? 0 @@ -11717,6 +13419,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11725,24 +13431,25 @@ depth_bel_land_sfc ? ? ? -36 -SOILM_ON_DEPTH_BEL_LAND_SFC +506 +MAX_MAXUW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +U Component of Hourly Maximum 10m Wind Speed (m/s) +1 +tmpl4_8 +MAXUW +NCEP +MAX +spec_hgt_lvl_above_grnd +0 ? 1 -tmpl4_0 -SOILM +10. +? +0 +? +0 ? ? -depth_bel_land_sfc -1 -2 -1 -0. -depth_bel_land_sfc -1 -2 -1 -200. ? ? 0 @@ -11754,27 +13461,31 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +-4.0 0 0 0 ? ? ? -169 -SFEXC_ON_SURFACE -? +507 +MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +V Component of Hourly Maximum 10m Wind Speed (m/s) 1 -tmpl4_0 -SFEXC +tmpl4_8 +MAXVW NCEP -? -surface -0 -? +MAX +spec_hgt_lvl_above_grnd 0 ? +1 +10. ? 0 ? @@ -11782,6 +13493,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11791,27 +13503,31 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +-4.0 0 0 0 ? ? ? -170 -VEG_ON_SURFACE -? +421 +MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km +maximum Updraft Helicity on Specified Height Level Above Ground 1 -tmpl4_0 -VEG -? -? -surface -0 -? +tmpl4_8 +MAXREF +NCEP +MAX +spec_hgt_lvl_above_grnd 0 ? +1 +1000. ? 0 ? @@ -11819,6 +13535,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11828,32 +13545,37 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +-3.0 0 0 0 ? ? ? -171 -MSTAV_ON_DEPTH_BEL_LAND_SFC -? +785 +MAX_REF_ON_ISOTHERMAL_-10C +maximum reflectivity on -10C suface 1 -tmpl4_0 -MSTAV +tmpl4_8 +MAXREF NCEP +MAX +isothermal +0 ? -depth_bel_land_sfc -1 -2 -1 -0. -depth_bel_land_sfc -1 -2 1 -100. +263. +? +0 +? +0 +? +? ? ? 0 @@ -11865,27 +13587,31 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +-3.0 0 0 0 ? ? ? -115 -TSOIL_ON_DEPTH_BEL_LAND_SFC_3m +912 +REFD_ON_ISOTHERMAL ? 1 tmpl4_0 -TSOIL +REFD ? ? -depth_bel_land_sfc +isothermal 0 ? 1 -3. +263. ? 0 ? @@ -11893,6 +13619,7 @@ depth_bel_land_sfc ? ? ? +? 0 0.0 0 @@ -11902,27 +13629,31 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +-4.0 0 0 0 ? ? ? -152 -INST_GFLUX_ON_SURFACE +345 +MAX_TMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m ? 1 -tmpl4_0 -GFLUX -NCEP -? -surface -0 +tmpl4_8 +TMAX ? +MAX +spec_hgt_lvl_above_grnd 0 ? +1 +2. ? 0 ? @@ -11930,6 +13661,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11939,27 +13671,31 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -118 -CNWAT_ON_SURFACE +346 +MIN_TMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m ? 1 -tmpl4_0 -CNWAT -NCEP -? -surface -0 +tmpl4_8 +TMIN ? +MIN +spec_hgt_lvl_above_grnd 0 ? +1 +2. ? 0 ? @@ -11967,6 +13703,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11976,27 +13713,31 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 +4.0 0 0 0 ? ? ? -119 -WEASD_ON_SURFACE +347 +MAX_MAXRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m ? 1 -tmpl4_0 -WEASD -? -? -surface -0 +tmpl4_8 +MAXRH ? +MAX +spec_hgt_lvl_above_grnd 0 ? +1 +2. ? 0 ? @@ -12004,6 +13745,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12013,32 +13755,37 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +-2.0 0 0 0 ? ? ? -31 -4LFTX_ON_SPEC_PRES_ABOVE_GRND +348 +MIN_MINRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m ? 1 -tmpl4_0 -4LFTX +tmpl4_8 +MINRH NCEP -? -spec_pres_above_grnd +MIN +spec_hgt_lvl_above_grnd 0 ? 1 -18000. -spec_pres_above_grnd +2. +? +0 +? 0 ? -1 -0. +? ? ? 0 @@ -12050,23 +13797,27 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +-2.0 0 0 0 ? ? ? -80 -PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR +713 +CISOILM_ON_DEPTH_BEL_LAND_SFC ? 1 tmpl4_0 -PWAT +CISOILM ? ? -entire_atmos_single_lyr +depth_bel_land_sfc 0 ? 0 @@ -12078,6 +13829,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -12087,6 +13839,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -12095,125 +13851,140 @@ entire_atmos_single_lyr ? ? ? -87 -ACM_APCP_ON_SURFACE +116 +TSOIL_ON_DEPTH_BEL_LAND_SFC ? 1 -tmpl4_8 -APCP +tmpl4_0 +TSOIL ? -ACM -surface -0 ? -0 +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. ? ? -0 ? 0 -? -? +0.0 +0 +0.0 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 --4.0 +4.0 0 0 0 ? ? ? -34 -ACM_NCPCP_ON_SURFACE +117 +SOILW_ON_DEPTH_BEL_LAND_SFC ? 1 -tmpl4_8 -NCPCP +tmpl4_0 +SOILW +NCEP ? -ACM -surface -0 +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. ? -0 ? ? 0 -? +0.0 0 -? -? +0.0 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 --4.0 +3.0 0 0 0 ? ? ? -417 -CACM_APCP_ON_SURFACE +225 +SOILL_ON_DEPTH_BEL_LAND_SFC ? 1 -tmpl4_8 -APCP +tmpl4_0 +SOILL ? -ACM -surface -0 ? -0 +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. ? ? -0 ? 0 -? -? +0.0 +0 +0.0 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 --4.0 +3.0 0 0 0 ? ? ? -419 -CACM_NCPCP_ON_SURFACE +169 +SFEXC_ON_SURFACE ? 1 -tmpl4_8 -NCPCP +tmpl4_0 +SFEXC +? ? -ACM surface 0 ? @@ -12226,6 +13997,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12235,22 +14007,26 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --4.0 +3.0 0 0 0 ? ? ? -121 -ACM_SNOM_ON_SURFACE +170 +VEG_ON_SURFACE ? 1 -tmpl4_8 -SNOM +tmpl4_0 +VEG +? ? -ACM surface 0 ? @@ -12263,6 +14039,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12272,23 +14049,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -122 -ACM_SSRUN_ON_SURFACE +171 +RUC_MSTAV_ON_DEPTH_BEL_LAND_SFC ? 1 -tmpl4_8 -SSRUN -NCEP -ACM -surface +tmpl4_0 +MSTAV +? +? +depth_bel_land_sfc 0 ? 0 @@ -12300,6 +14081,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12309,22 +14091,26 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -123 -ACM_BGRUN_ON_SURFACE +152 +INST_GFLUX_ON_SURFACE ? 1 -tmpl4_8 -BGRUN +tmpl4_0 +GFLUX NCEP -ACM +? surface 0 ? @@ -12337,6 +14123,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12346,21 +14133,25 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -160 -INST_CRAIN_ON_SURFACE +118 +CNWAT_ON_SURFACE ? 1 tmpl4_0 -CRAIN -NCEP +CNWAT +? ? surface 0 @@ -12374,6 +14165,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12383,6 +14175,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -12391,13 +14187,13 @@ surface ? ? ? -551 -CSNOW_ON_SURFACE -Categorical snow on surface +119 +WEASD_ON_SURFACE +? 1 tmpl4_0 -CSNOW -NCEP +WEASD +? ? surface 0 @@ -12411,6 +14207,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12420,32 +14217,37 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 +4.0 0 0 0 ? ? ? -552 -CICEP_ON_SURFACE -Categorical ice pellets on surface -1 -tmpl4_0 -CICEP -NCEP -? -surface -0 +31 +4LFTX_ON_SPEC_PRES_ABOVE_GRND ? -0 +1 +tmpl4_0 +4LFTX ? ? +spec_pres_above_grnd 0 ? +1 +18000. +spec_pres_above_grnd 0 ? +1 +0. +? ? ? 0 @@ -12457,23 +14259,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 +3.0 0 0 0 ? ? ? -553 -CFRZR_ON_SURFACE -Categorical freezing rain on surface +80 +PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR +? 1 tmpl4_0 -CFRZR -NCEP +PWAT ? -surface +? +entire_atmos_single_lyr 0 ? 0 @@ -12485,6 +14291,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12494,22 +14301,26 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 +3.0 0 0 0 ? ? ? -167 -INST_PRATE_ON_SURFACE +87 +ACM_APCP_ON_SURFACE ? 1 -tmpl4_0 -PRATE -? +tmpl4_8 +APCP ? +ACM surface 0 ? @@ -12522,6 +14333,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12531,22 +14343,26 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +-4.0 0 0 0 ? ? ? -172 -CPOFP_ON_SURFACE +417 +CACM_APCP_ON_SURFACE ? 1 -tmpl4_0 -CPOFP -NCEP +tmpl4_8 +APCP ? +ACM surface 0 ? @@ -12559,6 +14375,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12568,27 +14385,31 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +-4.0 0 0 0 ? ? ? -124 -CLMR_ON_HYBRID_LVL +1004 +ACM_SNOWFALL_ON_SURFACE ? 1 -tmpl4_0 -CLMR +tmpl4_8 +TSNOWP ? +ACM +surface +0 ? -hybrid_lvl 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? @@ -12596,6 +14417,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -12605,27 +14427,31 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -125 -ICMR_ON_HYBRID_LVL +121 +ACM_SNOM_ON_SURFACE ? 1 -tmpl4_0 -ICMR +tmpl4_8 +SNOM ? +ACM +surface +0 ? -hybrid_lvl 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? @@ -12633,6 +14459,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -12642,27 +14469,31 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -415 -GRLE_ON_HYBRID_LVL -Graupel mixing ration on hybrid level +122 +ACM_SSRUN_ON_SURFACE +? 1 -tmpl4_0 -GRLE +tmpl4_8 +SSRUN ? +ACM +surface +0 ? -hybrid_lvl 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? @@ -12670,6 +14501,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -12679,27 +14511,31 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +6.0 0 0 0 ? ? ? -145 -TCDC_ON_HYBRID_LVL +121 +ACM_SNOM_ON_SURFACE ? 1 -tmpl4_0 -TCDC +tmpl4_8 +SNOM ? +ACM +surface +0 ? -hybrid_lvl 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? @@ -12707,6 +14543,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -12716,27 +14553,31 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -181 -RWMR_ON_HYBRID_LVL -? +407 +GSD_INST_CRAIN_ON_SURFACE +GSD_instant precipitation type on surface 1 tmpl4_0 -RWMR +CRAIN ? ? -hybrid_lvl +surface +0 +? 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? @@ -12744,6 +14585,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -12753,27 +14595,31 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +1.0 0 0 0 ? ? ? -182 -SNMR_ON_HYBRID_LVL -? +559 +GSD_CSNOW_ON_SURFACE +GSD_Categorical snow on surface 1 tmpl4_0 -SNMR +CSNOW ? ? -hybrid_lvl +surface +0 +? 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? @@ -12781,6 +14627,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -12790,27 +14637,31 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +1.0 0 0 0 ? ? ? -187 -RIME_ON_HYBRID_LVL -? +560 +GSD_CICEP_ON_SURFACE +GSD_Categorical ice pellets on surface 1 tmpl4_0 -RIME -NCEP +CICEP +? +? +surface +0 ? -hybrid_lvl 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? @@ -12818,6 +14669,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -12827,27 +14679,31 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +1.0 0 0 0 ? ? ? -199 -TCOND_ON_HYBRID_LVL -? +561 +GSD_CFRZR_ON_SURFACE +GSD_Categorical freezing rain on surface 1 tmpl4_0 -TCOND -NCEP +CFRZR +? +? +surface +0 ? -hybrid_lvl 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? @@ -12855,6 +14711,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -12864,27 +14721,31 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +1.0 0 0 0 ? ? ? -185 -FRAIN_ON_HYBRID_LVL +167 +INST_PRATE_ON_SURFACE ? 1 tmpl4_0 -FRAIN -NCEP +PRATE +? +? +surface +0 ? -hybrid_lvl 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? @@ -12892,6 +14753,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -12901,6 +14763,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -12909,19 +14775,19 @@ hybrid_lvl ? ? ? -186 -FICE_ON_HYBRID_LVL +172 +CPOFP_ON_SURFACE ? 1 tmpl4_0 -FICE -NCEP +CPOFP +? +? +surface +0 ? -hybrid_lvl 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? @@ -12929,6 +14795,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -12938,27 +14805,31 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +4.0 0 0 0 ? ? ? -37 -LCDC_ON_LOW_CLOUD_LYR +124 +CLMR_ON_HYBRID_LVL ? 1 tmpl4_0 -LCDC -? +CLMR ? -low_cloud_lyr -0 ? +hybrid_lvl 0 ? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. ? 0 ? @@ -12966,6 +14837,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -12975,6 +14847,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -12983,19 +14859,19 @@ low_cloud_lyr ? ? ? -38 -MCDC_ON_MID_CLOUD_LYR -? +747 +GSD_NCCD_ON_HYBRID_LVL +Number concentration for cloud water drops on hybrid level 1 tmpl4_0 -MCDC +NCONCD ? ? -mid_cloud_lyr -0 -? +hybrid_lvl 0 ? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. ? 0 ? @@ -13003,6 +14879,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -13012,6 +14889,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13020,19 +14901,19 @@ mid_cloud_lyr ? ? ? -39 -HCDC_ON_HIGH_CLOUD_LYR +125 +ICMR_ON_HYBRID_LVL ? 1 tmpl4_0 -HCDC -? +ICMR ? -high_cloud_lyr -0 ? +hybrid_lvl 0 ? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. ? 0 ? @@ -13040,6 +14921,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -13049,6 +14931,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13057,19 +14943,19 @@ high_cloud_lyr ? ? ? -161 -INST_TCDC_ON_ENTIRE_ATMOS -? +752 +GSD_NCIP_ON_HYBRID_LVL +Number concentration for ice particles on hybrid level 1 tmpl4_0 -TCDC +NCCICE ? ? -entire_atmos_single_lyr -0 -? +hybrid_lvl 0 ? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. ? 0 ? @@ -13077,6 +14963,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -13086,6 +14973,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13094,19 +14985,19 @@ entire_atmos_single_lyr ? ? ? -144 -AVE_TCDC_ON_ENTIRE_ATMOS -? +415 +GRLE_ON_HYBRID_LVL +Graupel mixing ration on hybrid level 1 -tmpl4_8 -TCDC +tmpl4_0 +GRLE ? -AVE -entire_atmos_single_lyr -0 ? +hybrid_lvl 0 ? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. ? 0 ? @@ -13114,6 +15005,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -13123,6 +15015,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13131,19 +15027,19 @@ entire_atmos_single_lyr ? ? ? -139 -AVE_CDLYR_ON_ENTIRE_ATMOS +145 +TCDC_ON_HYBRID_LVL ? 1 -tmpl4_8 -CDLYR -NCEP -AVE -entire_atmos_single_lyr -0 +tmpl4_0 +TCDC +? ? +hybrid_lvl 0 ? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. ? 0 ? @@ -13151,6 +15047,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -13160,6 +15057,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13168,19 +15069,19 @@ entire_atmos_single_lyr ? ? ? -141 -INST_USWRF_ON_SURFACE +181 +RWMR_ON_HYBRID_LVL ? 1 tmpl4_0 -USWRF -NCEP +RWMR ? -surface -0 ? +hybrid_lvl 0 ? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. ? 0 ? @@ -13188,6 +15089,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13197,27 +15099,31 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -142 -INST_ULWRF_ON_SURFACE +182 +SNMR_ON_HYBRID_LVL ? 1 tmpl4_0 -ULWRF -NCEP +SNMR ? -surface -0 ? +hybrid_lvl 0 ? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. ? 0 ? @@ -13225,6 +15131,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13234,27 +15141,31 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -126 -AVE_DSWRF_ON_SURFACE +754 +GSD_NCRAIN_ON_HYBRID_LVL ? 1 -tmpl4_8 -DSWRF -NCEP -AVE -surface -0 +tmpl4_0 +SPNCR ? +? +hybrid_lvl 0 ? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. ? 0 ? @@ -13262,6 +15173,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13271,6 +15183,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13279,126 +15195,141 @@ surface ? ? ? -127 -AVE_DLWRF_ON_SURFACE +737 +SMOKE_ON_HYBRID_LVL ? 1 -tmpl4_8 -DLWRF -NCEP -AVE -surface -0 +tmpl4_48 +MASSDEN ? +? +hybrid_lvl 0 ? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. ? 0 ? 0 ? +particulate_org_matter_dry ? +smaller_than_first_limit +7 +25 +0 +0.0 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -3.0 +6.0 0 0 0 ? ? ? -128 -AVE_USWRF_ON_SURFACE +742 +DUST_ON_HYBRID_LVL ? 1 -tmpl4_8 -USWRF -NCEP -AVE -surface -0 +tmpl4_48 +MASSDEN ? +? +hybrid_lvl 0 ? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. ? 0 ? 0 ? +dust_dry ? +smaller_than_first_limit +7 +25 +0 +0.0 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -3.0 +6.0 0 0 0 ? ? ? -129 -AVE_ULWRF_ON_SURFACE +1012 +COARSEPM_ON_HYBRID_LVL ? 1 -tmpl4_8 -ULWRF -NCEP -AVE -surface -0 +tmpl4_48 +MASSDEN ? +? +hybrid_lvl 0 ? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. ? 0 ? 0 ? +dust_dry ? +between_first_second_limit_noincl2ndlmt +7 +25 +7 +100 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -3.0 +6.0 0 0 0 ? ? ? -130 -AVE_USWRF_ON_TOP_OF_ATMOS +37 +LCDC_ON_LOW_CLOUD_LYR ? 1 -tmpl4_8 -USWRF -NCEP -AVE -top_of_atmos +tmpl4_0 +LCDC +? +? +low_cloud_lyr 0 ? 0 @@ -13410,6 +15341,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -13419,6 +15351,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13427,15 +15363,15 @@ top_of_atmos ? ? ? -131 -AVE_ULWRF_ON_TOP_OF_ATMOS +38 +MCDC_ON_MID_CLOUD_LYR ? 1 -tmpl4_8 -ULWRF -NCEP -AVE -top_of_atmos +tmpl4_0 +MCDC +? +? +mid_cloud_lyr 0 ? 0 @@ -13447,6 +15383,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -13456,6 +15393,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13464,15 +15405,15 @@ top_of_atmos ? ? ? -156 -INST_DSWRF_ON_SURFACE +39 +HCDC_ON_HIGH_CLOUD_LYR ? 1 tmpl4_0 -DSWRF -NCEP +HCDC ? -surface +? +high_cloud_lyr 0 ? 0 @@ -13484,6 +15425,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13493,23 +15435,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -157 -INST_DLWRF_ON_SURFACE +799 +TCDC_ON_BOUND_LYR ? 1 tmpl4_0 -DLWRF -NCEP +TCDC ? -surface +? +bound_lyr_cloud_lyr 0 ? 0 @@ -13521,6 +15467,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13530,23 +15477,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -262 -INST_CSDSF_ON_SURFACE +161 +INST_TCDC_ON_ENTIRE_ATMOS ? 1 tmpl4_0 -CSDSF -NCEP +TCDC ? -surface +? +entire_atmos_single_lyr 0 ? 0 @@ -13558,6 +15509,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13567,23 +15519,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -44 -SFCR_ON_SURFACE +144 +AVE_TCDC_ON_ENTIRE_ATMOS ? 1 -tmpl4_0 -SFCR -? +tmpl4_8 +TCDC ? -surface +AVE +entire_atmos_single_lyr 0 ? 0 @@ -13595,6 +15551,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13604,21 +15561,25 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -2.7 +3.0 0 0 0 ? ? ? -45 -FRICV_ON_SURFACE +141 +INST_USWRF_ON_SURFACE ? 1 tmpl4_0 -FRICV -NCEP +USWRF +? ? surface 0 @@ -13632,6 +15593,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13641,6 +15603,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -13649,13 +15615,13 @@ surface ? ? ? -132 -CD_ON_SURFACE +142 +INST_ULWRF_ON_SURFACE ? 1 tmpl4_0 -CD -NCEP +ULWRF +? ? surface 0 @@ -13669,6 +15635,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13678,22 +15645,26 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -133 -UFLX_ON_SURFACE +126 +AVE_DSWRF_ON_SURFACE ? 1 -tmpl4_0 -UFLX -? +tmpl4_8 +DSWRF ? +AVE surface 0 ? @@ -13706,6 +15677,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13715,6 +15687,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13723,14 +15699,14 @@ surface ? ? ? -134 -VFLX_ON_SURFACE +127 +AVE_DLWRF_ON_SURFACE ? 1 -tmpl4_0 -VFLX -? +tmpl4_8 +DLWRF ? +AVE surface 0 ? @@ -13743,6 +15719,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13752,6 +15729,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13760,12 +15741,12 @@ surface ? ? ? -43 -AVE_SHTFL_ON_SURFACE +128 +AVE_USWRF_ON_SURFACE ? 1 tmpl4_8 -SHTFL +USWRF ? AVE surface @@ -13780,6 +15761,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13789,21 +15771,25 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -135 -AVE_GFLUX_ON_SURFACE +129 +AVE_ULWRF_ON_SURFACE ? 1 tmpl4_8 -GFLUX -NCEP +ULWRF +? AVE surface 0 @@ -13817,6 +15803,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13826,23 +15813,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -136 -AVE_SNOHF_ON_SURFACE +130 +AVE_USWRF_ON_TOP_OF_ATMOS ? 1 tmpl4_8 -SNOHF -NCEP +USWRF +? AVE -surface +top_of_atmos 0 ? 0 @@ -13854,6 +15845,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13863,23 +15855,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -42 -AVE_LHTFL_ON_SURFACE +131 +AVE_ULWRF_ON_TOP_OF_ATMOS ? 1 tmpl4_8 -LHTFL +ULWRF ? AVE -surface +top_of_atmos 0 ? 0 @@ -13891,6 +15887,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13900,22 +15897,26 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -47 -ACM_EVP_ON_SURFACE +156 +INST_DSWRF_ON_SURFACE ? 1 -tmpl4_8 -EVP +tmpl4_0 +DSWRF +? ? -ACM surface 0 ? @@ -13928,6 +15929,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13937,6 +15939,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -13945,14 +15951,14 @@ surface ? ? ? -137 -ACM_PEVAP_ON_SURFACE +157 +INST_DLWRF_ON_SURFACE ? 1 -tmpl4_8 -PEVAP -NCEP -ACM +tmpl4_0 +DLWRF +? +? surface 0 ? @@ -13965,6 +15971,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13974,6 +15981,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -13982,13 +15993,13 @@ surface ? ? ? -154 -INST_SHTFL_ON_SURFACE +772 +INST_SWDDNI_ON_SURFACE ? 1 tmpl4_0 -SHTFL -? +VBDSF +NCEP ? surface 0 @@ -14002,6 +16013,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14011,6 +16023,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14019,13 +16035,13 @@ surface ? ? ? -155 -INST_LHTFL_ON_SURFACE +773 +INST_SWDDIF_ON_SURFACE ? 1 tmpl4_0 -LHTFL -? +VDDSF +NCEP ? surface 0 @@ -14039,6 +16055,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14048,6 +16065,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14056,12 +16077,12 @@ surface ? ? ? -48 -NLAT_ON_SURFACE +262 +INST_CSDSF_ON_SURFACE ? 1 tmpl4_0 -NLAT +CSDSF NCEP ? surface @@ -14076,6 +16097,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14085,6 +16107,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14093,13 +16119,13 @@ surface ? ? ? -49 -ELON_ON_SURFACE +44 +SFCR_ON_SURFACE ? 1 tmpl4_0 -ELON -NCEP +SFCR +? ? surface 0 @@ -14113,6 +16139,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14122,20 +16149,24 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +2.7 0 0 0 ? ? ? -50 -LAND_ON_SURFACE +45 +FRICV_ON_SURFACE ? 1 tmpl4_0 -LAND +FRICV ? ? surface @@ -14150,6 +16181,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14159,20 +16191,24 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 +4.0 0 0 0 ? ? ? -51 -ICEC_ON_SURFACE +132 +CD_ON_SURFACE ? 1 tmpl4_0 -ICEC +CD ? ? surface @@ -14187,11 +16223,16 @@ surface ? ? ? +? +0 +0.0 +0 +0.0 +? 0 0.0 0 0.0 -? 0 0.0 0 @@ -14204,14 +16245,14 @@ surface ? ? ? -52 -LMH_ON_SURFACE +43 +AVE_SHTFL_ON_SURFACE ? 1 -tmpl4_0 -LMH -NCEP +tmpl4_8 +SHTFL ? +AVE surface 0 ? @@ -14224,6 +16265,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14233,22 +16275,26 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -2.0 +4.0 0 0 0 ? ? ? -53 -LMV_ON_SURFACE +135 +AVE_GFLUX_ON_SURFACE ? 1 -tmpl4_0 -LMV +tmpl4_8 +GFLUX NCEP -? +AVE surface 0 ? @@ -14261,6 +16307,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14270,22 +16317,26 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -2.0 +4.0 0 0 0 ? ? ? -150 -ALBDO_ON_SURFACE +136 +AVE_SNOHF_ON_SURFACE ? 1 -tmpl4_0 -ALBDO -? +tmpl4_8 +SNOHF ? +AVE surface 0 ? @@ -14298,6 +16349,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14307,22 +16359,26 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -151 -WTMP_ON_SURFACE +42 +AVE_LHTFL_ON_SURFACE ? 1 -tmpl4_0 -WTMP -? +tmpl4_8 +LHTFL ? +AVE surface 0 ? @@ -14335,6 +16391,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14344,32 +16401,37 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +4.0 0 0 0 ? ? ? -67 -PRES_ON_SPEC_PRES_ABOVE_GRND +137 +ACM_PEVAP_ON_SURFACE ? 1 -tmpl4_0 -PRES +tmpl4_8 +PEVAP +? +ACM +surface +0 +? +0 ? ? -spec_pres_above_grnd 0 ? -6 -3000. 6000. 9000. 12000. 15000. 18000. -spec_pres_above_grnd 0 ? -6 -0. 3000. 6000. 9000. 12000. 15000. +? ? ? 0 @@ -14381,32 +16443,37 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +4.0 0 0 0 ? ? ? -68 -TMP_ON_SPEC_PRES_ABOVE_GRND +154 +INST_SHTFL_ON_SURFACE ? 1 tmpl4_0 -TMP +SHTFL +? +? +surface +0 +? +0 ? ? -spec_pres_above_grnd 0 ? -6 -3000. 6000. 9000. 12000. 15000. 18000. -spec_pres_above_grnd 0 ? -6 -0. 3000. 6000. 9000. 12000. 15000. +? ? ? 0 @@ -14418,32 +16485,37 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -69 -POT_ON_SPEC_PRES_ABOVE_GRND +155 +INST_LHTFL_ON_SURFACE ? 1 tmpl4_0 -POT +LHTFL ? ? -spec_pres_above_grnd +surface 0 ? -1 -3000. -spec_pres_above_grnd 0 ? -1 -0. +? +0 +? +0 +? +? ? ? 0 @@ -14455,6 +16527,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14463,24 +16539,25 @@ spec_pres_above_grnd ? ? ? -70 -DPT_ON_SPEC_PRES_ABOVE_GRND +48 +NLAT_ON_SURFACE ? 1 tmpl4_0 -DPT +NLAT +NCEP +? +surface +0 +? +0 ? ? -spec_pres_above_grnd 0 ? -1 -3000. -spec_pres_above_grnd 0 ? -1 -0. +? ? ? 0 @@ -14492,32 +16569,37 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -71 -SPFH_ON_SPEC_PRES_ABOVE_GRND +49 +ELON_ON_SURFACE ? 1 tmpl4_0 -SPFH +ELON +NCEP ? +surface +0 ? -spec_pres_above_grnd 0 ? -6 -3000. 6000. 9000. 12000. 15000. 18000. -spec_pres_above_grnd +? 0 ? -6 -0. 3000. 6000. 9000. 12000. 15000. +0 +? +? ? ? 0 @@ -14529,32 +16611,37 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +4.0 0 0 0 ? ? ? -72 -RH_ON_SPEC_PRES_ABOVE_GRND +50 +LAND_ON_SURFACE ? 1 tmpl4_0 -RH +LAND +? +? +surface +0 +? +0 ? ? -spec_pres_above_grnd 0 ? -6 -3000. 6000. 9000. 12000. 15000. 18000. -spec_pres_above_grnd 0 ? -6 -0. 3000. 6000. 9000. 12000. 15000. +? ? ? 0 @@ -14566,32 +16653,37 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -2.0 +1.0 0 0 0 ? ? ? -88 -MCONV_ON_SPEC_PRES_ABOVE_GRND +51 +ICEC_ON_SURFACE ? 1 tmpl4_0 -MCONV +ICEC ? ? -spec_pres_above_grnd +surface 0 ? -1 -3000. -spec_pres_above_grnd 0 ? -1 -0. +? +0 +? +0 +? +? ? ? 0 @@ -14603,6 +16695,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -14611,24 +16707,25 @@ spec_pres_above_grnd ? ? ? -89 -PWAT_ON_SPEC_PRES_ABOVE_GRND +52 +LMH_ON_SURFACE ? 1 tmpl4_0 -PWAT +LMH +NCEP +? +surface +0 +? +0 ? ? -spec_pres_above_grnd 0 ? -1 -3000. -spec_pres_above_grnd 0 ? -1 -0. +? ? ? 0 @@ -14640,32 +16737,37 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +2.0 0 0 0 ? ? ? -73 -UGRD_ON_SPEC_PRES_ABOVE_GRND +53 +LMV_ON_SURFACE ? 1 tmpl4_0 -UGRD +LMV +NCEP ? +surface +0 ? -spec_pres_above_grnd 0 ? -6 -3000. 6000. 9000. 12000. 15000. 18000. -spec_pres_above_grnd +? 0 ? -6 -0. 3000. 6000. 9000. 12000. 15000. +0 +? +? ? ? 0 @@ -14677,32 +16779,37 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +2.0 0 0 0 ? ? ? -74 -VGRD_ON_SPEC_PRES_ABOVE_GRND +150 +ALBDO_ON_SURFACE ? 1 tmpl4_0 -VGRD +ALBDO +? +? +surface +0 +? +0 ? ? -spec_pres_above_grnd 0 ? -6 -3000. 6000. 9000. 12000. 15000. 18000. -spec_pres_above_grnd 0 ? -6 -0. 3000. 6000. 9000. 12000. 15000. +? ? ? 0 @@ -14714,22 +16821,26 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -256 -ACM_LSPA_ON_SURFACE +151 +WTMP_ON_SURFACE ? 1 -tmpl4_8 -LSPA -NCEP -ACM +tmpl4_0 +WTMP +? +? surface 0 ? @@ -14742,6 +16853,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14751,31 +16863,36 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +5.0 0 0 0 ? ? ? -282 -PRES_ON_TOP_OF_ATMOS +67 +PRES_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 PRES ? ? -top_of_atmos -0 -? +spec_pres_above_grnd 0 ? -? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd 0 ? -0 +6 +0. 3000. 6000. 9000. 12000. 15000. ? ? ? @@ -14788,32 +16905,37 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +6.0 0 0 0 ? ? ? -283 -PRES_ON_HYBRID_LVL_1L +68 +TMP_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -PRES +TMP ? ? -hybrid_lvl +spec_pres_above_grnd 0 ? -1 -1. -hybrid_lvl +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd 0 ? -1 -21. +6 +0. 3000. 6000. 9000. 12000. 15000. +? ? ? 0 @@ -14825,6 +16947,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -14833,24 +16959,25 @@ hybrid_lvl ? ? ? -273 -PRES_ON_HYBRID_LVL_LLM +69 +POT_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -PRES +POT ? ? -hybrid_lvl +spec_pres_above_grnd 0 ? 1 -1. -hybrid_lvl +3000. +spec_pres_above_grnd 0 ? 1 -61. +0. +? ? ? 0 @@ -14862,31 +16989,36 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -118 -CNWAT_ON_SURFACE +70 +DPT_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -CNWAT -NCEP +DPT ? -surface -0 ? +spec_pres_above_grnd 0 ? -? +1 +3000. +spec_pres_above_grnd 0 ? -0 +1 +0. ? ? ? @@ -14899,31 +17031,36 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 +3.0 0 0 0 ? ? ? -152 -INST_GFLUX_ON_SURFACE +71 +SPFH_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -GFLUX -NCEP +SPFH ? -surface -0 ? +spec_pres_above_grnd 0 ? -? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd 0 ? -0 +6 +0. 3000. 6000. 9000. 12000. 15000. ? ? ? @@ -14936,32 +17073,37 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +5.0 0 0 0 ? ? ? -30 -LFTX_ON_ISOBARIC_SFC_500-1000hpa +72 +RH_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -LFTX -NCEP +RH ? -isobaric_sfc +? +spec_pres_above_grnd 0 ? -1 -50000. -isobaric_sfc +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd 0 ? -1 -100000. +6 +0. 3000. 6000. 9000. 12000. 15000. +? ? ? 0 @@ -14973,31 +17115,36 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +2.0 0 0 0 ? ? ? -32 -CAPE_ON_SURFACE +89 +PWAT_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -CAPE -? +PWAT ? -surface -0 ? +spec_pres_above_grnd 0 ? -? +1 +3000. +spec_pres_above_grnd 0 ? -0 +1 +0. ? ? ? @@ -15010,32 +17157,37 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -566 -BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND +73 +UGRD_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -CAPE +UGRD ? ? spec_pres_above_grnd 0 ? -1 -18000. +6 +3000. 6000. 9000. 12000. 15000. 18000. spec_pres_above_grnd 0 ? -1 -0. +6 +0. 3000. 6000. 9000. 12000. 15000. +? ? ? 0 @@ -15047,6 +17199,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15055,24 +17211,25 @@ spec_pres_above_grnd ? ? ? -582 -MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND +74 +VGRD_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -CAPE +VGRD ? ? spec_pres_above_grnd 0 ? -1 -9000. +6 +3000. 6000. 9000. 12000. 15000. 18000. spec_pres_above_grnd 0 ? -1 -0. +6 +0. 3000. 6000. 9000. 12000. 15000. +? ? ? 0 @@ -15084,6 +17241,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15092,24 +17253,25 @@ spec_pres_above_grnd ? ? ? -584 -UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND +282 +PRES_ON_TOP_OF_ATMOS ? 1 tmpl4_0 -CAPE +PRES +? +? +top_of_atmos +0 +? +0 ? ? -spec_pres_above_grnd 0 ? -1 -25500. -spec_pres_above_grnd 0 ? -1 -0. +? ? ? 0 @@ -15121,21 +17283,25 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -107 -CIN_ON_SURFACE +152 +INST_GFLUX_ON_SURFACE ? 1 tmpl4_0 -CIN -? +GFLUX +NCEP ? surface 0 @@ -15149,6 +17315,7 @@ surface ? ? ? +? 0 0.0 0 @@ -15158,32 +17325,37 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -567 -BEST_CIN_ON_SPEC_PRES_ABOVE_GRND +30 +LFTX_ON_ISOBARIC_SFC_500-1000hpa ? 1 tmpl4_0 -CIN +LFTX ? ? -spec_pres_above_grnd +isobaric_sfc 0 ? 1 -18000. -spec_pres_above_grnd +50000. +isobaric_sfc 0 ? 1 -0. +100000. +? ? ? 0 @@ -15195,32 +17367,37 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -583 -MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND +32 +CAPE_ON_SURFACE ? 1 tmpl4_0 -CIN +CAPE ? ? -spec_pres_above_grnd +surface 0 ? -1 -9000. -spec_pres_above_grnd 0 ? -1 -0. +? +0 +? +0 +? +? ? ? 0 @@ -15232,6 +17409,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15240,19 +17421,19 @@ spec_pres_above_grnd ? ? ? -585 -UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND +566 +BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -CIN +CAPE ? ? spec_pres_above_grnd 0 ? 1 -25500. +18000. spec_pres_above_grnd 0 ? @@ -15260,6 +17441,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -15269,6 +17451,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15277,19 +17463,19 @@ spec_pres_above_grnd ? ? ? -246 -PLPL_ON_SPEC_PRES_ABOVE_GRND +582 +MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -PLPL -NCEP +CAPE +? ? spec_pres_above_grnd 0 ? 1 -25500. +9000. spec_pres_above_grnd 0 ? @@ -15297,6 +17483,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -15306,31 +17493,36 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +4.0 0 0 0 ? ? ? -162 -HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND +584 +UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -HLCY +CAPE ? ? -spec_hgt_lvl_above_grnd +spec_pres_above_grnd 0 ? -2 -3000. 1000. -spec_hgt_lvl_above_grnd +1 +25500. +spec_pres_above_grnd 0 ? -0 +1 +0. ? ? ? @@ -15343,6 +17535,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15351,23 +17547,24 @@ spec_hgt_lvl_above_grnd ? ? ? -163 -USTM_ON_SPEC_HGT_LVL_ABOVE_GRND +950 +CAPE_ON_0_3KM_ABOVE_GRND ? 1 tmpl4_0 -USTM -NCEP +CAPE +? ? spec_hgt_lvl_above_grnd 0 ? 1 -6000. +0. spec_hgt_lvl_above_grnd 0 ? -0 +1 +3000. ? ? ? @@ -15380,6 +17577,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15388,26 +17589,27 @@ spec_hgt_lvl_above_grnd ? ? ? -164 -VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND +107 +CIN_ON_SURFACE ? 1 tmpl4_0 -VSTM -NCEP +CIN ? -spec_hgt_lvl_above_grnd +? +surface 0 ? -1 -6000. -spec_hgt_lvl_above_grnd +0 +? +? 0 ? 0 ? ? ? +? 0 0.0 0 @@ -15417,6 +17619,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15425,23 +17631,24 @@ spec_hgt_lvl_above_grnd ? ? ? -37 -LCDC_ON_LOW_CLOUD_LYR +567 +BEST_CIN_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -LCDC -? +CIN ? -low_cloud_lyr -0 ? +spec_pres_above_grnd 0 ? -? +1 +18000. +spec_pres_above_grnd 0 ? -0 +1 +0. ? ? ? @@ -15454,31 +17661,36 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -38 -MCDC_ON_MID_CLOUD_LYR +583 +MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -MCDC -? +CIN ? -mid_cloud_lyr -0 ? +spec_pres_above_grnd 0 ? -? +1 +9000. +spec_pres_above_grnd 0 ? -0 +1 +0. ? ? ? @@ -15491,31 +17703,36 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -39 -HCDC_ON_HIGH_CLOUD_LYR +585 +UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -HCDC -? +CIN ? -high_cloud_lyr -0 ? +spec_pres_above_grnd 0 ? -? +1 +25500. +spec_pres_above_grnd 0 ? -0 +1 +0. ? ? ? @@ -15528,31 +17745,36 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -144 -AVE_TCDC_ON_ENTIRE_ATMOS +246 +PLPL_ON_SPEC_PRES_ABOVE_GRND ? 1 -tmpl4_8 -TCDC -? -AVE -entire_atmos_single_lyr -0 +tmpl4_0 +PLPL +NCEP ? +spec_pres_above_grnd 0 ? -? +1 +25500. +spec_pres_above_grnd 0 ? -0 +1 +0. ? ? ? @@ -15565,34 +17787,39 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +6.0 0 0 0 ? ? ? -139 -AVE_CDLYR_ON_ENTIRE_ATMOS +162 +HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND ? 1 -tmpl4_8 -CDLYR -NCEP -AVE -entire_atmos_single_lyr -0 +tmpl4_0 +HLCY ? -0 ? +spec_hgt_lvl_above_grnd +0 ? +2 +3000. 1000. +spec_hgt_lvl_above_grnd 0 ? 0 ? ? ? +? 0 0.0 0 @@ -15602,23 +17829,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -148 -PRES_ON_CLOUD_BASE +953 +EFF_HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND ? 1 tmpl4_0 -PRES -? +EFHL +NCEP ? -cloud_base +surface 0 ? 0 @@ -15630,6 +17861,7 @@ cloud_base ? ? ? +? 0 0.0 0 @@ -15639,31 +17871,36 @@ cloud_base 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +3.0 0 0 0 ? ? ? -149 -PRES_ON_CLOUD_TOP +957 +CRITICAL_ANGLE ? 1 tmpl4_0 -PRES -? -? -cloud_top -0 +CANGLE +NCEP ? +spec_hgt_lvl_above_grnd 0 ? -? +1 +0. +spec_hgt_lvl_above_grnd 0 ? -0 +1 +500. ? ? ? @@ -15676,31 +17913,36 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +3.0 0 0 0 ? ? ? -168 -TMP_ON_CLOUD_TOP +163 +USTM_ON_SPEC_HGT_LVL_ABOVE_GRND ? 1 tmpl4_0 -TMP +USTM ? ? -cloud_top +spec_hgt_lvl_above_grnd 0 ? +1 +6000. +spec_hgt_lvl_above_grnd 0 ? -? 0 ? -0 ? ? ? @@ -15713,34 +17955,39 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +4.0 0 0 0 ? ? ? -135 -AVE_GFLUX_ON_SURFACE +164 +VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND ? 1 -tmpl4_8 -GFLUX -NCEP -AVE -surface -0 +tmpl4_0 +VSTM ? -0 ? +spec_hgt_lvl_above_grnd +0 ? +1 +6000. +spec_hgt_lvl_above_grnd 0 ? 0 ? ? ? +? 0 0.0 0 @@ -15750,6 +17997,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15758,15 +18009,15 @@ surface ? ? ? -136 -AVE_SNOHF_ON_SURFACE +37 +LCDC_ON_LOW_CLOUD_LYR ? 1 -tmpl4_8 -SNOHF -NCEP -AVE -surface +tmpl4_0 +LCDC +? +? +low_cloud_lyr 0 ? 0 @@ -15778,6 +18029,7 @@ surface ? ? ? +? 0 0.0 0 @@ -15787,23 +18039,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -47 -ACM_EVP_ON_SURFACE +38 +MCDC_ON_MID_CLOUD_LYR ? 1 -tmpl4_8 -EVP +tmpl4_0 +MCDC ? -ACM -surface +? +mid_cloud_lyr 0 ? 0 @@ -15815,6 +18071,7 @@ surface ? ? ? +? 0 0.0 0 @@ -15824,23 +18081,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -154 -INST_SHTFL_ON_SURFACE +39 +HCDC_ON_HIGH_CLOUD_LYR ? 1 tmpl4_0 -SHTFL +HCDC ? ? -surface +high_cloud_lyr 0 ? 0 @@ -15852,6 +18113,7 @@ surface ? ? ? +? 0 0.0 0 @@ -15861,23 +18123,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -155 -INST_LHTFL_ON_SURFACE +144 +AVE_TCDC_ON_ENTIRE_ATMOS ? 1 -tmpl4_0 -LHTFL -? +tmpl4_8 +TCDC ? -surface +AVE +entire_atmos_single_lyr 0 ? 0 @@ -15889,6 +18155,7 @@ surface ? ? ? +? 0 0.0 0 @@ -15898,23 +18165,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -54 -PRES_ON_TROPOPAUSE +148 +PRES_ON_CLOUD_BASE ? 1 tmpl4_0 PRES ? ? -tropopause +cloud_base 0 ? 0 @@ -15926,6 +18197,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -15935,6 +18207,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -15943,15 +18219,15 @@ tropopause ? ? ? -177 -HGT_ON_TROPOPAUSE +149 +PRES_ON_CLOUD_TOP ? 1 tmpl4_0 -HGT +PRES ? ? -tropopause +cloud_top 0 ? 0 @@ -15963,6 +18239,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -15972,6 +18249,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -15980,15 +18261,15 @@ tropopause ? ? ? -55 -TMP_ON_TROPOPAUSE +168 +TMP_ON_CLOUD_TOP ? 1 tmpl4_0 TMP ? ? -tropopause +cloud_top 0 ? 0 @@ -16000,6 +18281,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -16009,23 +18291,27 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +5.0 0 0 0 ? ? ? -56 -UGRD_ON_TROPOPAUSE +135 +AVE_GFLUX_ON_SURFACE ? 1 -tmpl4_0 -UGRD -? -? -tropopause +tmpl4_8 +GFLUX +NCEP +AVE +surface 0 ? 0 @@ -16037,6 +18323,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -16046,6 +18333,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -16054,15 +18345,15 @@ tropopause ? ? ? -57 -VGRD_ON_TROPOPAUSE -? -1 -tmpl4_0 -VGRD +136 +AVE_SNOHF_ON_SURFACE ? +1 +tmpl4_8 +SNOHF ? -tropopause +AVE +surface 0 ? 0 @@ -16074,6 +18365,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -16083,6 +18375,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -16091,15 +18387,15 @@ tropopause ? ? ? -58 -VWSH_ON_TROPOPAUSE +154 +INST_SHTFL_ON_SURFACE ? 1 tmpl4_0 -VWSH -NCEP +SHTFL ? -tropopause +? +surface 0 ? 0 @@ -16111,6 +18407,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -16120,27 +18417,31 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -59 -TMP_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +155 +INST_LHTFL_ON_SURFACE ? 1 tmpl4_0 -TMP +LHTFL ? ? -spec_alt_above_mean_sea_lvl +surface +0 +? 0 ? -10 -305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. ? 0 ? @@ -16148,6 +18449,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -16157,27 +18459,31 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -60 -UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +54 +PRES_ON_TROPOPAUSE ? 1 tmpl4_0 -UGRD +PRES ? ? -spec_alt_above_mean_sea_lvl +tropopause +0 +? 0 ? -10 -305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. ? 0 ? @@ -16185,6 +18491,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -16194,27 +18501,31 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +6.0 0 0 0 ? ? ? -61 -VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +177 +HGT_ON_TROPOPAUSE ? 1 tmpl4_0 -VGRD +HGT ? ? -spec_alt_above_mean_sea_lvl +tropopause +0 +? 0 ? -10 -305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. ? 0 ? @@ -16222,6 +18533,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -16231,23 +18543,27 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +6.0 0 0 0 ? ? ? -62 -HGT_ON_0C_ISOTHERM +55 +TMP_ON_TROPOPAUSE ? 1 tmpl4_0 -HGT +TMP ? ? -0C_isotherm +tropopause 0 ? 0 @@ -16259,6 +18575,7 @@ HGT ? ? ? +? 0 0.0 0 @@ -16268,23 +18585,27 @@ HGT 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +3.0 0 0 0 ? ? ? -63 -RH_ON_0C_ISOTHERM +56 +UGRD_ON_TROPOPAUSE ? 1 tmpl4_0 -RH +UGRD ? ? -0C_isotherm +tropopause 0 ? 0 @@ -16296,6 +18617,7 @@ RH ? ? ? +? 0 0.0 0 @@ -16305,23 +18627,27 @@ RH 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -2.0 +4.0 0 0 0 ? ? ? -165 -HGT_ON_HGHST_TROP_FRZ_LVL +57 +VGRD_ON_TROPOPAUSE ? 1 tmpl4_0 -HGT +VGRD ? ? -hghst_trop_frz_lvl +tropopause 0 ? 0 @@ -16333,6 +18659,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -16342,23 +18669,27 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +4.0 0 0 0 ? ? ? -173 -PRES_ON_MAX_WIND +58 +VWSH_ON_TROPOPAUSE ? 1 tmpl4_0 -PRES +VWSH ? ? -max_wind +tropopause 0 ? 0 @@ -16370,6 +18701,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -16379,27 +18711,31 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +3.0 0 0 0 ? ? ? -174 -HGT_ON_MAX_WIND +59 +TMP_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL ? 1 tmpl4_0 -HGT -? +TMP ? -max_wind -0 ? +spec_alt_above_mean_sea_lvl 0 ? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. ? 0 ? @@ -16407,6 +18743,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -16416,27 +18753,31 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +3.0 0 0 0 ? ? ? -175 -UGRD_ON_MAX_WIND +60 +UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL ? 1 tmpl4_0 UGRD ? ? -max_wind -0 -? +spec_alt_above_mean_sea_lvl 0 ? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. ? 0 ? @@ -16444,6 +18785,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -16453,6 +18795,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -16461,19 +18807,19 @@ max_wind ? ? ? -176 -VGRD_ON_MAX_WIND +61 +VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL ? 1 tmpl4_0 VGRD ? ? -max_wind -0 -? +spec_alt_above_mean_sea_lvl 0 ? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. ? 0 ? @@ -16481,6 +18827,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -16490,6 +18837,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -16498,19 +18849,19 @@ max_wind ? ? ? -422 -MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m -maximum wind speed on 10 meter Above Ground +62 +HGT_ON_0C_ISOTHERM +? 1 -tmpl4_8 -WIND +tmpl4_0 +HGT +? +? +0C_isotherm +0 ? -MAX -spec_hgt_lvl_above_grnd 0 ? -1 -10. ? 0 ? @@ -16518,6 +18869,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -16527,23 +18879,27 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --4.0 +6.0 0 0 0 ? ? ? -178 -HGT_ON_CLOUD_BASE +63 +RH_ON_0C_ISOTHERM ? 1 tmpl4_0 -HGT +RH ? ? -cloud_base +0C_isotherm 0 ? 0 @@ -16555,6 +18911,7 @@ cloud_base ? ? ? +? 0 0.0 0 @@ -16564,23 +18921,27 @@ cloud_base 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +2.0 0 0 0 ? ? ? -179 -HGT_ON_CLOUD_TOP +165 +HGT_ON_HGHST_TROP_FRZ_LVL ? 1 tmpl4_0 HGT ? ? -cloud_top +hghst_trop_frz_lvl 0 ? 0 @@ -16592,6 +18953,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -16601,6 +18963,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -16609,15 +18975,15 @@ cloud_top ? ? ? -410 -GSD_VIS_ON_SURFACE -GSD_visibility on surface +350 +RH_ON_HGHST_TROP_FRZ_LVL +? 1 tmpl4_0 -VIS +RH ? ? -surface +hghst_trop_frz_lvl 0 ? 0 @@ -16629,6 +18995,7 @@ surface ? ? ? +? 0 0.0 0 @@ -16638,27 +19005,31 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +-0.1 0 0 0 ? ? ? -252 -REFC_ON_ENTIRE_ATMOS -? +779 +HGT_ON_HGHST_TROP_-20C_LVL +height on highest tropospheric -20C level 1 tmpl4_0 -REFC -NCEP +HGT ? -entire_atmos_single_lyr -0 ? +isothermal 0 ? +1 +253. ? 0 ? @@ -16666,6 +19037,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -16675,23 +19047,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -194 -PRES_ON_GRID_SCALE_CLOUD_BOT_LVL -? +443 +HGT_ON_EQUIL_LVL +geopotential height on Equilibrium level 1 tmpl4_0 -PRES +HGT ? ? -grid_scale_cloud_bot_lvl +equil_lvl 0 ? 0 @@ -16703,6 +19079,7 @@ grid_scale_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -16712,23 +19089,27 @@ grid_scale_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +3.0 0 0 0 ? ? ? -195 -PRES_ON_GRID_SCALE_CLOUD_TOP_LVL +173 +PRES_ON_MAX_WIND ? 1 tmpl4_0 PRES ? ? -grid_scale_cloud_top_lvl +max_wind 0 ? 0 @@ -16740,6 +19121,7 @@ grid_scale_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -16749,6 +19131,10 @@ grid_scale_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -16757,15 +19143,15 @@ grid_scale_cloud_top_lvl ? ? ? -200 -TCOLW_ON_ENTIRE_ATMOS +174 +HGT_ON_MAX_WIND ? 1 tmpl4_0 -TCOLW -NCEP +HGT ? -entire_atmos_single_lyr +? +max_wind 0 ? 0 @@ -16777,6 +19163,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -16786,23 +19173,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +6.0 0 0 0 ? ? ? -201 -TCOLI_ON_ENTIRE_ATMOS +175 +UGRD_ON_MAX_WIND ? 1 tmpl4_0 -TCOLI -NCEP +UGRD ? -entire_atmos_single_lyr +? +max_wind 0 ? 0 @@ -16814,6 +19205,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -16823,23 +19215,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +4.0 0 0 0 ? ? ? -202 -TCOLR_ON_ENTIRE_ATMOS +176 +VGRD_ON_MAX_WIND ? 1 tmpl4_0 -TCOLR -NCEP +VGRD ? -entire_atmos_single_lyr +? +max_wind 0 ? 0 @@ -16851,6 +19247,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -16860,27 +19257,31 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +4.0 0 0 0 ? ? ? -203 -TCOLS_ON_ENTIRE_ATMOS -? +422 +MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +maximum wind speed on 10 meter Above Ground 1 -tmpl4_0 -TCOLS -NCEP -? -entire_atmos_single_lyr -0 +tmpl4_8 +WIND ? +MAX +spec_hgt_lvl_above_grnd 0 ? +1 +10. ? 0 ? @@ -16888,6 +19289,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -16897,23 +19299,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-4.0 0 0 0 ? ? ? -204 -TCOLC_ON_ENTIRE_ATMOS +178 +HGT_ON_CLOUD_BASE ? 1 tmpl4_0 -TCOLC -NCEP +HGT ? -entire_atmos_single_lyr +? +cloud_base 0 ? 0 @@ -16925,6 +19331,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -16934,23 +19341,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +6.0 0 0 0 ? ? ? -428 -TCOLG_ON_ENTIRE_ATMOS +179 +HGT_ON_CLOUD_TOP ? 1 tmpl4_0 -TCOLG +HGT ? ? -entire_atmos_single_lyr +cloud_top 0 ? 0 @@ -16962,6 +19373,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -16971,21 +19383,25 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +6.0 0 0 0 ? ? ? -218 -VGTYP_ON_SURFACE -? +410 +GSD_VIS_ON_SURFACE +GSD_visibility on surface 1 tmpl4_0 -VGTYP -NCEP +VIS +? ? surface 0 @@ -16999,6 +19415,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17008,23 +19425,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +6.0 0 0 0 ? ? ? -219 -SOTYP_ON_SURFACE +252 +REFC_ON_ENTIRE_ATMOS ? 1 tmpl4_0 -SOTYP +REFC ? ? -surface +entire_atmos_single_lyr 0 ? 0 @@ -17036,6 +19457,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17045,23 +19467,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -220 -CCOND_ON_SURFACE +194 +PRES_ON_GRID_SCALE_CLOUD_BOT_LVL ? 1 tmpl4_0 -CCOND -NCEP +PRES ? -surface +? +grid_scale_cloud_bot_lvl 0 ? 0 @@ -17073,6 +19499,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17082,23 +19509,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +6.0 0 0 0 ? ? ? -221 -HPBL_ON_SURFACE +195 +PRES_ON_GRID_SCALE_CLOUD_TOP_LVL ? 1 tmpl4_0 -HPBL -NCEP +PRES ? -surface +? +grid_scale_cloud_top_lvl 0 ? 0 @@ -17110,6 +19541,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17119,6 +19551,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -17127,13 +19563,13 @@ surface ? ? ? -224 -SNOD_ON_SURFACE +218 +VGTYP_ON_SURFACE ? 1 tmpl4_0 -SNOD -? +VGTYP +NCEP ? surface 0 @@ -17147,6 +19583,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17156,21 +19593,25 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +3.0 0 0 0 ? ? ? -231 -SBSNO_ON_SURFACE +219 +SOTYP_ON_SURFACE ? 1 tmpl4_0 -SBSNO -NCEP +SOTYP +? ? surface 0 @@ -17184,6 +19625,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17193,6 +19635,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17201,12 +19647,12 @@ surface ? ? ? -232 -SMDRY_ON_SURFACE +220 +CCOND_ON_SURFACE ? 1 tmpl4_0 -SMDRY +CCOND NCEP ? surface @@ -17221,6 +19667,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17230,6 +19677,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17238,13 +19689,13 @@ surface ? ? ? -233 -POROS_ON_SURFACE +221 +HPBL_ON_SURFACE ? 1 tmpl4_0 -POROS -NCEP +HPBL +? ? surface 0 @@ -17258,6 +19709,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17267,21 +19719,25 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +6.0 0 0 0 ? ? ? -234 -RSMIN_ON_SURFACE +224 +SNOD_ON_SURFACE ? 1 tmpl4_0 -RSMIN -NCEP +SNOD +? ? surface 0 @@ -17295,6 +19751,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17304,20 +19761,24 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +6.0 0 0 0 ? ? ? -235 -RLYRS_ON_SURFACE +231 +SBSNO_ON_SURFACE ? 1 tmpl4_0 -RLYRS +SBSNO NCEP ? surface @@ -17332,6 +19793,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17341,6 +19803,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17349,12 +19815,12 @@ surface ? ? ? -236 -WILT_ON_SURFACE +232 +SMDRY_ON_SURFACE ? 1 tmpl4_0 -WILT +SMDRY NCEP ? surface @@ -17369,6 +19835,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17378,6 +19845,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17386,12 +19857,12 @@ surface ? ? ? -237 -SMREF_ON_SURFACE +233 +POROS_ON_SURFACE ? 1 tmpl4_0 -SMREF +POROS NCEP ? surface @@ -17406,6 +19877,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17415,6 +19887,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17423,12 +19899,12 @@ surface ? ? ? -238 -RCS_ON_SURFACE +234 +RSMIN_ON_SURFACE ? 1 tmpl4_0 -RCS +RSMIN NCEP ? surface @@ -17443,6 +19919,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17452,6 +19929,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17460,12 +19941,12 @@ surface ? ? ? -239 -RCT_ON_SURFACE +235 +RLYRS_ON_SURFACE ? 1 tmpl4_0 -RCT +RLYRS NCEP ? surface @@ -17480,6 +19961,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17489,20 +19971,24 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +3.0 0 0 0 ? ? ? -240 -RCQ_ON_SURFACE +236 +WILT_ON_SURFACE ? 1 tmpl4_0 -RCQ +WILT NCEP ? surface @@ -17517,6 +20003,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17526,6 +20013,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17534,12 +20025,12 @@ surface ? ? ? -241 -RCSOL_ON_SURFACE +237 +SMREF_ON_SURFACE ? 1 tmpl4_0 -RCSOL +SMREF NCEP ? surface @@ -17554,6 +20045,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17563,6 +20055,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17591,6 +20087,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17600,6 +20097,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -17628,6 +20129,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17637,6 +20139,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17665,6 +20171,7 @@ lwst_lvl_of_wet_bulb_zero ? ? ? +? 0 0.0 0 @@ -17674,6 +20181,10 @@ lwst_lvl_of_wet_bulb_zero 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 0 @@ -17702,6 +20213,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17711,6 +20223,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -17739,6 +20255,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17748,6 +20265,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -17776,6 +20297,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -17785,6 +20307,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -17813,6 +20339,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17822,6 +20349,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -17830,19 +20361,19 @@ surface ? ? ? -500 -AVE_SNOWC_ON_SURFACE +702 +GSD_MAX_LTG_THREAT1_ON_SPEC_HGT_LVL_ABOVE_GRND ? 1 tmpl4_8 -SNOWC -NCEP -AVE -surface -0 +LTNGSD ? +MAX +spec_hgt_lvl_above_grnd 0 ? +1 +1. ? 0 ? @@ -17850,48 +20381,16 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -3.0 -0 -0 -0 -? -? -? -704 -GSD_MAX_LTG_THREAT3_ON_ENTIRE_ATMOS -? -1 -tmpl4_8 -LTNG -NCEP -MAX -entire_atmos -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -17904,19 +20403,19 @@ entire_atmos ? ? ? -1006 -SDEN_ON_SURFACE +703 +GSD_MAX_LTG_THREAT2_ON_SPEC_HGT_LVL_ABOVE_GRND ? 1 -tmpl4_0 -SDEN -? -? -surface -0 +tmpl4_8 +LTNGSD ? +MAX +spec_hgt_lvl_above_grnd 0 ? +1 +2. ? 0 ? @@ -17924,48 +20423,16 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -6.0 -0 -0 -0 -? -? -? -1007 -ICE_PROB_IFI_FLIGHT_LEVEL -? -1 -tmpl4_0 -ICPRB -NCEP -? -spec_alt_above_mean_sea_lvl -1 -1 -60 -5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -17978,19 +20445,19 @@ spec_alt_above_mean_sea_lvl ? ? ? -1008 -SLD_IFI_FLIGHT_LEVEL +704 +GSD_MAX_LTG_THREAT3_ON_ENTIRE_ATMOS ? 1 -tmpl4_0 -SIPD +tmpl4_8 +LTNG NCEP +MAX +entire_atmos +0 +? +0 ? -spec_alt_above_mean_sea_lvl -1 -1 -60 -5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. ? 0 ? @@ -17998,6 +20465,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -18007,6 +20475,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -18015,74 +20487,42 @@ spec_alt_above_mean_sea_lvl ? ? ? -1009 -ICE_SEV_CAT_IFI_FLIGHT_LEVEL +1006 +SDEN_ON_SURFACE ? 1 tmpl4_0 -ICSEV -NCEP +SDEN ? -spec_alt_above_mean_sea_lvl -1 -1 -60 -5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. ? +surface 0 ? 0 ? ? -? 0 -0.0 -0 -0.0 ? 0 -0.0 -0 -0.0 -1 -4.0 -0 -0 -0 -? ? ? -1010 -WMO_ICE_SEV_CAT_IFI_FLIGHT_LEVEL ? -1 -tmpl4_0 -ICESEV -? -? -spec_alt_above_mean_sea_lvl -1 -1 -60 -5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. ? 0 -? +0.0 0 -? -? +0.0 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -4.0 +6.0 0 0 0 diff --git a/tests/parm/postxconfig-NT-gfs.txt b/tests/parm/postxconfig-NT-gfs.txt index ba22c218fc..fb2556c370 100644 --- a/tests/parm/postxconfig-NT-gfs.txt +++ b/tests/parm/postxconfig-NT-gfs.txt @@ -1,6 +1,6 @@ 2 112 -210 +204 GFSPRS 0 ncep_nco @@ -37,6 +37,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -46,6 +47,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -74,6 +79,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -83,6 +89,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -111,6 +121,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -120,6 +131,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -148,6 +163,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -157,6 +173,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -185,6 +205,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -194,6 +215,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -222,6 +247,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -231,6 +257,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -259,6 +289,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -268,6 +299,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -296,6 +331,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -305,6 +341,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -333,6 +373,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -342,6 +383,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -370,6 +415,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -379,6 +425,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -407,6 +457,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -416,6 +467,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -444,6 +499,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -453,6 +509,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -481,6 +541,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -490,6 +551,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -518,6 +583,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -527,6 +593,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -555,6 +625,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -564,6 +635,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -592,6 +667,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -601,6 +677,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -629,6 +709,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -638,6 +719,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -666,6 +751,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -675,6 +761,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -703,6 +793,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -712,6 +803,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -740,6 +835,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -749,6 +845,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -777,6 +877,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -786,6 +887,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -814,6 +919,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -823,6 +929,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -851,6 +961,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -860,6 +971,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -888,6 +1003,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -897,6 +1013,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -925,6 +1045,7 @@ surface ? ? ? +? 0 0.0 0 @@ -934,6 +1055,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -962,6 +1087,7 @@ surface ? ? ? +? 0 0.0 0 @@ -971,6 +1097,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -999,6 +1129,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1008,6 +1139,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1036,6 +1171,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -1045,6 +1181,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1073,6 +1213,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -1082,6 +1223,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1110,6 +1255,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -1119,6 +1265,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1147,6 +1297,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1156,6 +1307,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1184,6 +1339,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1193,6 +1349,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1221,6 +1381,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1230,6 +1391,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1258,6 +1423,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1267,6 +1433,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1295,6 +1465,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1304,6 +1475,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1332,6 +1507,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1341,6 +1517,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1369,6 +1549,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1378,6 +1559,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1406,6 +1591,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1415,6 +1601,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1443,6 +1633,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1452,6 +1643,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1480,6 +1675,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1489,6 +1685,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1517,6 +1717,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1526,6 +1727,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1554,6 +1759,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1563,6 +1769,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1591,6 +1801,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1600,6 +1811,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1628,6 +1843,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1637,6 +1853,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1665,6 +1885,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1674,6 +1895,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1702,6 +1927,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1711,6 +1937,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1739,6 +1969,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1748,6 +1979,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1776,6 +2011,7 @@ spec_hgt_lvl_above_grnd 0. 0. ? ? +? 0 0.0 0 @@ -1785,6 +2021,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1813,6 +2053,7 @@ spec_hgt_lvl_above_grnd 0. ? ? +? 0 0.0 0 @@ -1822,6 +2063,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1850,6 +2095,7 @@ spec_hgt_lvl_above_grnd 0. ? ? +? 0 0.0 0 @@ -1859,6 +2105,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1887,6 +2137,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1896,6 +2147,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1924,6 +2179,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1933,6 +2189,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1961,6 +2221,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1970,6 +2231,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1998,6 +2263,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2007,6 +2273,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2035,6 +2305,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2044,6 +2315,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2072,6 +2347,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2081,6 +2357,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2109,6 +2389,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2118,6 +2399,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2146,6 +2431,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2155,6 +2441,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2183,6 +2473,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2192,6 +2483,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2220,48 +2515,16 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -1.0 -0 -0 -0 -? -? -? -317 -AVE_CRAIN_ON_SURFACE -? -1 -tmpl4_8 -CRAIN -NCEP -AVE -surface -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -2274,87 +2537,13 @@ surface ? ? ? -555 -AVE_CSNOW_ON_SURFACE -average Categorical snow on surface -1 -tmpl4_8 -CSNOW -NCEP -AVE -surface -0 -? -0 -? -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 -0 -0.0 -1 -1.0 -0 -0 -0 -? -? +271 +AVE_PRATE_ON_SURFACE ? -556 -AVE_CICEP_ON_SURFACE -average Categorical ice pellets on surface 1 tmpl4_8 -CICEP -NCEP -AVE -surface -0 -? -0 -? -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 -0 -0.0 -1 -1.0 -0 -0 -0 -? -? +PRATE ? -557 -AVE_CFRZR_ON_SURFACE -average Categorical freezing rain on surface -1 -tmpl4_8 -CFRZR -NCEP AVE surface 0 @@ -2368,48 +2557,16 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -1.0 -0 -0 -0 -? -? -? -271 -AVE_PRATE_ON_SURFACE -? -1 -tmpl4_8 -PRATE -? -AVE -surface -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -2442,6 +2599,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2451,6 +2609,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2479,6 +2641,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -2488,6 +2651,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2516,6 +2683,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -2525,6 +2693,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2553,6 +2725,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -2562,6 +2735,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2590,6 +2767,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2599,6 +2777,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2627,6 +2809,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2636,6 +2819,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2664,6 +2851,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2673,6 +2861,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2701,6 +2893,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2710,6 +2903,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2738,6 +2935,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2747,6 +2945,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2775,6 +2977,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2784,6 +2987,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2812,6 +3019,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2821,6 +3029,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2849,6 +3061,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2858,6 +3071,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2886,6 +3103,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -2895,6 +3113,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2923,6 +3145,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -2932,6 +3155,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2960,6 +3187,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -2969,6 +3197,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2997,6 +3229,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3006,6 +3239,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3034,6 +3271,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3043,6 +3281,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3071,6 +3313,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3080,6 +3323,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3108,6 +3355,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3117,6 +3365,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3145,6 +3397,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3154,6 +3407,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3182,6 +3439,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3191,6 +3449,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3219,6 +3481,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3228,6 +3491,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3256,6 +3523,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3265,6 +3533,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -3293,6 +3565,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3302,6 +3575,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3330,6 +3607,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3339,6 +3617,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3367,6 +3649,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3376,6 +3659,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3404,6 +3691,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3413,6 +3701,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3441,6 +3733,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3450,6 +3743,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3478,6 +3775,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3487,6 +3785,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3515,6 +3817,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3524,6 +3827,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3552,6 +3859,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3561,6 +3869,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3589,6 +3901,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -3598,6 +3911,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3626,6 +3943,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -3635,6 +3953,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3663,6 +3985,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -3672,6 +3995,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3700,6 +4027,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3709,6 +4037,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3737,6 +4069,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3746,6 +4079,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3774,6 +4111,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3783,6 +4121,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3811,6 +4153,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3820,6 +4163,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3848,6 +4195,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3857,6 +4205,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -3885,6 +4237,7 @@ HGT ? ? ? +? 0 0.0 0 @@ -3894,6 +4247,10 @@ HGT 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3922,6 +4279,7 @@ RH ? ? ? +? 0 0.0 0 @@ -3931,6 +4289,10 @@ RH 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3959,6 +4321,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -3968,6 +4331,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3996,6 +4363,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -4005,6 +4373,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4033,6 +4405,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -4042,6 +4415,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4070,6 +4447,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -4079,6 +4457,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4107,6 +4489,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -4116,6 +4499,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -4144,6 +4531,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -4153,6 +4541,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4181,6 +4573,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -4190,6 +4583,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4218,6 +4615,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -4227,6 +4625,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4255,6 +4657,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -4264,6 +4667,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4292,6 +4699,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -4301,6 +4709,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4329,6 +4741,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -4338,6 +4751,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4366,6 +4783,7 @@ sigma_lvl 94. ? ? +? 0 0.0 0 @@ -4375,6 +4793,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4403,6 +4825,7 @@ sigma_lvl 72. ? ? +? 0 0.0 0 @@ -4412,6 +4835,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4440,6 +4867,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4449,6 +4877,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4477,6 +4909,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4486,6 +4919,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4514,6 +4951,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4523,6 +4961,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4551,6 +4993,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4560,6 +5003,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4588,6 +5035,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4597,6 +5045,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4625,6 +5077,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4634,6 +5087,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -4662,6 +5119,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4671,6 +5129,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4699,6 +5161,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4708,6 +5171,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4736,6 +5203,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4745,6 +5213,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4773,6 +5245,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4782,6 +5255,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4810,6 +5287,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4819,6 +5297,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4847,6 +5329,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4856,6 +5339,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4884,6 +5371,7 @@ convective_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -4893,6 +5381,10 @@ convective_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4921,6 +5413,7 @@ convective_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -4930,6 +5423,10 @@ convective_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4958,6 +5455,7 @@ low_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -4967,6 +5465,10 @@ low_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4995,6 +5497,7 @@ mid_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -5004,6 +5507,10 @@ mid_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5032,6 +5539,7 @@ high_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -5041,6 +5549,10 @@ high_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5069,6 +5581,7 @@ low_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -5078,6 +5591,10 @@ low_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5106,6 +5623,7 @@ mid_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -5115,6 +5633,10 @@ mid_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5143,6 +5665,7 @@ high_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -5152,6 +5675,10 @@ high_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5180,6 +5707,7 @@ low_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -5189,6 +5717,10 @@ low_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5217,6 +5749,7 @@ mid_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -5226,6 +5759,10 @@ mid_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5254,6 +5791,7 @@ high_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -5263,6 +5801,10 @@ high_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5291,6 +5833,7 @@ convective_cloud_lyr ? ? ? +? 0 0.0 0 @@ -5300,6 +5843,10 @@ convective_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5328,6 +5875,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -5337,6 +5885,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5365,6 +5917,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -5374,6 +5927,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5402,6 +5959,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -5411,6 +5969,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5439,6 +6001,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5448,6 +6011,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5476,6 +6043,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -5485,6 +6053,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5513,6 +6085,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -5522,6 +6095,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5550,6 +6127,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5559,6 +6137,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5587,6 +6169,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5596,6 +6179,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5624,6 +6211,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5633,6 +6221,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5661,6 +6253,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5670,6 +6263,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5698,6 +6295,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5707,6 +6305,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5735,6 +6337,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5744,6 +6347,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5772,6 +6379,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5781,6 +6389,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5809,6 +6421,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5818,6 +6431,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5846,6 +6463,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5855,6 +6473,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5883,6 +6505,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5892,6 +6515,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5920,6 +6547,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5929,6 +6557,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5957,6 +6589,7 @@ bound_lyr_cloud_lyr ? ? ? +? 0 0.0 0 @@ -5966,6 +6599,10 @@ bound_lyr_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5994,6 +6631,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -6003,6 +6641,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6031,6 +6673,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6040,6 +6683,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -6068,6 +6715,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6077,6 +6725,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -6105,6 +6757,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6114,6 +6767,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6142,6 +6799,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6151,6 +6809,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6179,6 +6841,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6188,6 +6851,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6216,6 +6883,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -6225,6 +6893,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6253,6 +6925,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -6262,6 +6935,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6290,6 +6967,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6299,6 +6977,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -6327,6 +7009,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -6336,6 +7019,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6364,6 +7051,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -6373,6 +7061,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6401,6 +7093,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -6410,6 +7103,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6438,6 +7135,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6447,6 +7145,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -6475,6 +7177,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6484,6 +7187,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6512,6 +7219,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6521,6 +7229,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6549,6 +7261,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6558,6 +7271,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6586,6 +7303,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6595,6 +7313,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6623,6 +7345,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6632,6 +7355,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6660,6 +7387,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6669,6 +7397,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6697,6 +7429,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6706,6 +7439,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6734,6 +7471,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6743,6 +7481,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6771,54 +7513,22 @@ hybrid_lvl ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -6.0 -0 -0 -0 -? -? -? -588 -ICEG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL -? -1 -tmpl4_0 -ICEG -? -? -spec_alt_above_mean_sea_lvl -0 -? -1 -10. -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -4.0 +6.0 0 0 0 @@ -6845,6 +7555,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6854,6 +7565,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6882,54 +7597,22 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -3.0 -0 -0 -0 -? -? -? -968 -ICETMP_ON_SURFACE -? -1 -tmpl4_0 -ICETMP -? -? -surface -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -5.0 +3.0 0 0 0 @@ -6956,6 +7639,7 @@ cloud_ceilng ? ? ? +? 0 0.0 0 @@ -6965,6 +7649,10 @@ cloud_ceilng 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6993,6 +7681,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -7002,6 +7691,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7030,6 +7723,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -7039,6 +7733,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7067,6 +7765,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -7076,6 +7775,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7104,6 +7807,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -7113,6 +7817,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7141,6 +7849,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -7150,6 +7859,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7178,6 +7891,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -7187,6 +7901,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7215,6 +7933,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -7224,6 +7943,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7252,6 +7975,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -7261,6 +7985,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7289,6 +8017,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7298,6 +8027,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -7326,6 +8059,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7335,6 +8069,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7363,6 +8101,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7372,6 +8111,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7400,6 +8143,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7409,6 +8153,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7437,6 +8185,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7446,6 +8195,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7474,6 +8227,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7483,6 +8237,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7511,6 +8269,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7520,6 +8279,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7547,6 +8310,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 6 20 @@ -7557,6 +8321,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7584,6 +8352,7 @@ entire_atmos 0 ? dust_dry +? smaller_than_first_limit 6 20 @@ -7594,6 +8363,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7621,6 +8394,7 @@ entire_atmos 0 ? sea_salt_dry +? smaller_than_first_limit 6 20 @@ -7631,6 +8405,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7658,6 +8436,7 @@ entire_atmos 0 ? sulphate_dry +? smaller_than_first_limit 6 20 @@ -7668,6 +8447,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7695,6 +8478,7 @@ entire_atmos 0 ? particulate_org_matter_dry +? smaller_than_first_limit 6 20 @@ -7705,6 +8489,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7732,6 +8520,7 @@ entire_atmos 0 ? black_carbon_dry +? smaller_than_first_limit 6 20 @@ -7742,6 +8531,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7770,6 +8563,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7779,6 +8573,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7823,6 +8621,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -7832,6 +8631,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7860,6 +8663,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -7869,6 +8673,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -7897,6 +8705,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -7906,6 +8715,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7934,6 +8747,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -7943,6 +8757,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7971,6 +8789,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7980,6 +8799,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8008,6 +8831,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8017,6 +8841,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8045,6 +8873,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8054,6 +8883,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8082,6 +8915,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8091,6 +8925,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8119,6 +8957,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -8128,6 +8967,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8156,6 +8999,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -8165,6 +9009,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -8193,6 +9041,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -8202,6 +9051,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -8230,6 +9083,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8239,6 +9093,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -8267,6 +9125,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8276,6 +9135,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8304,6 +9167,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8313,6 +9177,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8341,6 +9209,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8350,6 +9219,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8378,6 +9251,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8387,6 +9261,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -8415,6 +9293,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8424,6 +9303,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8452,6 +9335,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8461,6 +9345,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8489,6 +9377,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8498,6 +9387,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8526,6 +9419,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8535,6 +9429,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8563,6 +9461,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8572,6 +9471,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8600,6 +9503,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8609,6 +9513,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8637,6 +9545,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -8646,6 +9555,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8674,6 +9587,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -8683,6 +9597,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8711,6 +9629,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -8720,6 +9639,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8748,6 +9671,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8757,6 +9681,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8785,6 +9713,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8794,6 +9723,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8822,6 +9755,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8831,6 +9765,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8859,6 +9797,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -8868,6 +9807,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8896,6 +9839,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8905,6 +9849,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8933,6 +9881,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8942,6 +9891,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8970,6 +9923,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8979,6 +9933,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9007,6 +9965,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9016,6 +9975,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9044,6 +10007,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9053,6 +10017,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9081,6 +10049,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9090,6 +10059,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9118,6 +10091,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9127,6 +10101,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9155,6 +10133,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9164,6 +10143,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9192,6 +10175,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -9201,6 +10185,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9229,6 +10217,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -9238,6 +10227,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9266,6 +10259,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9275,6 +10269,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9303,6 +10301,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9312,6 +10311,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9340,6 +10343,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9349,6 +10353,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9377,6 +10385,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9386,6 +10395,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9414,6 +10427,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -9423,6 +10437,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9451,6 +10469,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -9460,6 +10479,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9488,6 +10511,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9497,6 +10521,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9525,6 +10553,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9534,6 +10563,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9562,6 +10595,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9571,6 +10605,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9599,6 +10637,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9608,6 +10647,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9636,6 +10679,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9645,6 +10689,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9673,6 +10721,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9682,6 +10731,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -9710,6 +10763,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9719,6 +10773,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -9747,6 +10805,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9756,6 +10815,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -9784,6 +10847,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9793,6 +10857,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -9821,6 +10889,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9830,6 +10899,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9858,6 +10931,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9867,6 +10941,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9895,6 +10973,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9904,6 +10983,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9932,6 +11015,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9941,6 +11025,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9969,6 +11057,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9978,6 +11067,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10006,6 +11099,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10015,6 +11109,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10043,11 +11141,16 @@ surface ? ? ? +? +0 +0.0 +0 +0.0 +? 0 0.0 0 0.0 -? 0 0.0 0 @@ -10080,6 +11183,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10089,6 +11193,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10117,6 +11225,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10126,6 +11235,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10154,6 +11267,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10163,6 +11277,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10191,6 +11309,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10200,6 +11319,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10228,6 +11351,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10237,6 +11361,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10265,6 +11393,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10274,6 +11403,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -10302,6 +11435,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10311,6 +11445,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10339,6 +11477,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10348,6 +11487,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10376,6 +11519,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10385,6 +11529,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10413,6 +11561,7 @@ convective_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -10422,6 +11571,10 @@ convective_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10450,6 +11603,7 @@ convective_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -10459,6 +11613,10 @@ convective_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10487,6 +11645,7 @@ low_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -10496,6 +11655,10 @@ low_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10524,6 +11687,7 @@ mid_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -10533,6 +11697,10 @@ mid_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10561,6 +11729,7 @@ high_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -10570,6 +11739,10 @@ high_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10598,6 +11771,7 @@ low_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -10607,6 +11781,10 @@ low_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10635,6 +11813,7 @@ mid_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -10644,6 +11823,10 @@ mid_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10672,6 +11855,7 @@ high_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -10681,6 +11865,10 @@ high_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10709,6 +11897,7 @@ low_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -10718,6 +11907,10 @@ low_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10746,6 +11939,7 @@ mid_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -10755,6 +11949,10 @@ mid_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10783,6 +11981,7 @@ high_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -10792,6 +11991,10 @@ high_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10820,6 +12023,7 @@ convective_cloud_lyr ? ? ? +? 0 0.0 0 @@ -10829,6 +12033,10 @@ convective_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10857,6 +12065,7 @@ bound_lyr_cloud_lyr ? ? ? +? 0 0.0 0 @@ -10866,6 +12075,10 @@ bound_lyr_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10894,6 +12107,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -10903,6 +12117,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10931,6 +12149,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10940,6 +12159,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -10968,6 +12191,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10977,6 +12201,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -11005,6 +12233,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11014,6 +12243,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -11042,6 +12275,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -11051,6 +12285,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11079,6 +12317,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -11088,6 +12327,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11116,6 +12359,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -11125,6 +12369,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11153,6 +12401,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -11162,6 +12411,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11190,6 +12443,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11199,6 +12453,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -11227,6 +12485,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11236,6 +12495,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11264,6 +12527,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -11273,6 +12537,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11301,6 +12569,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -11310,6 +12579,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -11338,6 +12611,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -11347,6 +12621,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11375,6 +12653,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -11384,6 +12663,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11412,6 +12695,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -11421,6 +12705,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11449,6 +12737,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11458,6 +12747,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -11486,6 +12779,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11495,6 +12789,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -11523,6 +12821,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11532,6 +12831,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -11560,6 +12863,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11569,6 +12873,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -11597,6 +12905,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11606,6 +12915,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11615,11 +12928,11 @@ surface ? ? 36 -SOILM_ON_DEPTH_BEL_LAND_SFC +GFS_CISOILM_ON_DEPTH_BEL_LAND_SFC ? 1 tmpl4_0 -SOILM +CISOILM ? ? depth_bel_land_sfc @@ -11634,6 +12947,7 @@ depth_bel_land_sfc 200. ? ? +? 0 0.0 0 @@ -11643,6 +12957,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11671,6 +12989,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11680,6 +12999,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11708,6 +13031,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11717,6 +13041,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11745,6 +13073,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11754,6 +13083,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11782,6 +13115,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11791,6 +13125,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11819,6 +13157,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11828,6 +13167,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11856,6 +13199,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11865,6 +13209,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11893,6 +13241,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11902,6 +13251,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11930,6 +13283,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11939,6 +13293,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 diff --git a/tests/parm/postxconfig-NT-gfs_FH00.txt b/tests/parm/postxconfig-NT-gfs_FH00.txt index 229c1f52e9..95c932343a 100644 --- a/tests/parm/postxconfig-NT-gfs_FH00.txt +++ b/tests/parm/postxconfig-NT-gfs_FH00.txt @@ -1,6 +1,6 @@ 2 47 -156 +154 GFSPRS 0 ncep_nco @@ -37,6 +37,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -46,6 +47,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -74,6 +79,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -83,6 +89,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -111,6 +121,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -120,6 +131,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -148,6 +163,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -157,6 +173,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -185,6 +205,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -194,6 +215,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -222,6 +247,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -231,6 +257,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -259,6 +289,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -268,6 +299,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -296,6 +331,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -305,6 +341,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -333,6 +373,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -342,6 +383,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -370,6 +415,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -379,6 +425,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -407,6 +457,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -416,6 +467,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -444,6 +499,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -453,6 +509,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -481,6 +541,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -490,6 +551,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -518,6 +583,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -527,6 +593,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -555,6 +625,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -564,6 +635,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -592,6 +667,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -601,6 +677,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -629,6 +709,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -638,6 +719,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -666,6 +751,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -675,6 +761,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -703,6 +793,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -712,6 +803,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -740,6 +835,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -749,6 +845,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -777,6 +877,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -786,6 +887,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -814,6 +919,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -823,6 +929,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -851,6 +961,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -860,6 +971,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -888,6 +1003,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -897,6 +1013,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -925,6 +1045,7 @@ surface ? ? ? +? 0 0.0 0 @@ -934,6 +1055,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -962,6 +1087,7 @@ surface ? ? ? +? 0 0.0 0 @@ -971,6 +1097,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -999,6 +1129,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1008,6 +1139,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1036,6 +1171,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -1045,6 +1181,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1073,6 +1213,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -1082,6 +1223,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1110,6 +1255,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -1119,6 +1265,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1147,6 +1297,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1156,6 +1307,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1184,6 +1339,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1193,6 +1349,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1221,6 +1381,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1230,6 +1391,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1258,6 +1423,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1267,6 +1433,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1295,6 +1465,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1304,6 +1475,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1332,6 +1507,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1341,6 +1517,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1369,6 +1549,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1378,6 +1559,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1406,6 +1591,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1415,6 +1601,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1443,6 +1633,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1452,6 +1643,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1480,6 +1675,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1489,6 +1685,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1517,6 +1717,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1526,6 +1727,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1554,6 +1759,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1563,6 +1769,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1591,6 +1801,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1600,6 +1811,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1628,6 +1843,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1637,6 +1853,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1665,6 +1885,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1674,6 +1895,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1702,6 +1927,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1711,6 +1937,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1739,6 +1969,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1748,6 +1979,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1776,6 +2011,7 @@ spec_hgt_lvl_above_grnd 0. 0. ? ? +? 0 0.0 0 @@ -1785,6 +2021,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1813,6 +2053,7 @@ spec_hgt_lvl_above_grnd 0. ? ? +? 0 0.0 0 @@ -1822,6 +2063,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1850,6 +2095,7 @@ spec_hgt_lvl_above_grnd 0. ? ? +? 0 0.0 0 @@ -1859,6 +2105,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1887,6 +2137,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1896,8 +2147,12 @@ surface 0.0 0 0.0 -1 -1.0 +0 +0.0 +0 +0.0 +1 +1.0 0 0 0 @@ -1924,6 +2179,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1933,6 +2189,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -1961,6 +2221,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1970,6 +2231,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -1998,6 +2263,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2007,6 +2273,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2035,6 +2305,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2044,6 +2315,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2072,6 +2347,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -2081,6 +2357,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2109,6 +2389,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2118,6 +2399,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2146,6 +2431,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2155,6 +2441,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2183,6 +2473,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2192,6 +2483,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2220,6 +2515,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2229,6 +2525,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2257,6 +2557,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2266,6 +2567,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2294,6 +2599,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2303,6 +2609,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2331,6 +2641,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2340,6 +2651,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2368,6 +2683,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2377,6 +2693,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2405,6 +2725,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2414,6 +2735,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2442,6 +2767,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2451,6 +2777,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2479,6 +2809,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -2488,6 +2819,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2516,6 +2851,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -2525,6 +2861,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2553,6 +2893,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -2562,6 +2903,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2590,6 +2935,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2599,6 +2945,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2627,6 +2977,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2636,6 +2987,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2664,6 +3019,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2673,6 +3029,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2701,6 +3061,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2710,6 +3071,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2738,6 +3103,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2747,6 +3113,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -2775,6 +3145,7 @@ HGT ? ? ? +? 0 0.0 0 @@ -2784,6 +3155,10 @@ HGT 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2812,6 +3187,7 @@ RH ? ? ? +? 0 0.0 0 @@ -2821,6 +3197,10 @@ RH 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2849,6 +3229,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -2858,6 +3239,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2886,6 +3271,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -2895,6 +3281,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2923,6 +3313,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -2932,6 +3323,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2960,6 +3355,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -2969,6 +3365,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2997,6 +3397,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3006,6 +3407,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -3034,6 +3439,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3043,6 +3449,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3071,6 +3481,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3080,6 +3491,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3108,6 +3523,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3117,6 +3533,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3145,6 +3565,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3154,6 +3575,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3182,6 +3607,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -3191,6 +3617,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3219,6 +3649,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -3228,6 +3659,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3256,6 +3691,7 @@ sigma_lvl 94. ? ? +? 0 0.0 0 @@ -3265,6 +3701,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3293,6 +3733,7 @@ sigma_lvl 72. ? ? +? 0 0.0 0 @@ -3302,6 +3743,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3330,6 +3775,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3339,6 +3785,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3367,6 +3817,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3376,6 +3827,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3404,6 +3859,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3413,6 +3869,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3441,6 +3901,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3450,6 +3911,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3478,6 +3943,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3487,6 +3953,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3515,6 +3985,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3524,6 +3995,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -3552,6 +4027,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3561,6 +4037,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3589,6 +4069,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3598,6 +4079,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3626,6 +4111,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3635,6 +4121,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3663,6 +4153,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3672,6 +4163,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3700,6 +4195,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3709,6 +4205,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3737,6 +4237,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3746,6 +4247,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3774,6 +4279,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -3783,6 +4289,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3811,6 +4321,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -3820,6 +4331,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3848,6 +4363,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -3857,6 +4373,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3885,6 +4405,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3894,6 +4415,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3922,6 +4447,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3931,6 +4457,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3959,6 +4489,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -3968,6 +4499,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3996,6 +4531,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -4005,6 +4541,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4033,6 +4573,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -4042,6 +4583,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4070,6 +4615,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -4079,6 +4625,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4107,6 +4657,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -4116,6 +4667,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4144,6 +4699,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -4153,6 +4709,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4181,6 +4741,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -4190,6 +4751,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4218,6 +4783,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -4227,6 +4793,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4255,6 +4825,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -4264,6 +4835,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4292,6 +4867,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -4301,6 +4877,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4329,6 +4909,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -4338,6 +4919,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4366,6 +4951,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -4375,6 +4961,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4403,6 +4993,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -4412,6 +5003,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4440,6 +5035,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -4449,6 +5045,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4477,6 +5077,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4486,6 +5087,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4514,6 +5119,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -4523,6 +5129,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4551,6 +5161,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4560,6 +5171,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -4588,6 +5203,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -4597,6 +5213,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4625,6 +5245,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -4634,6 +5255,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4662,6 +5287,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -4671,6 +5297,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4699,6 +5329,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4708,6 +5339,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -4736,6 +5371,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4745,6 +5381,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4773,6 +5413,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -4782,6 +5423,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4810,6 +5455,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4819,6 +5465,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4847,6 +5497,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4856,6 +5507,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4884,6 +5539,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4893,6 +5549,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4921,6 +5581,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4930,6 +5591,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4958,6 +5623,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4967,6 +5633,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4995,6 +5665,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -5004,6 +5675,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5032,54 +5707,22 @@ hybrid_lvl ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -6.0 -0 -0 -0 -? -? -? -588 -ICEG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL -? -1 -tmpl4_0 -ICEG -? -? -spec_alt_above_mean_sea_lvl -0 -? -1 -10. -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -4.0 +6.0 0 0 0 @@ -5106,6 +5749,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5115,6 +5759,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5143,54 +5791,22 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -3.0 -0 -0 -0 -? -? -? -968 -ICETMP_ON_SURFACE -? -1 -tmpl4_0 -ICETMP -? -? -surface -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -5.0 +3.0 0 0 0 @@ -5217,6 +5833,7 @@ cloud_ceilng ? ? ? +? 0 0.0 0 @@ -5226,6 +5843,10 @@ cloud_ceilng 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5254,6 +5875,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -5263,6 +5885,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5291,6 +5917,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -5300,6 +5927,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5328,6 +5959,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -5337,6 +5969,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5365,6 +6001,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -5374,6 +6011,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5402,6 +6043,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -5411,6 +6053,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5439,6 +6085,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -5448,6 +6095,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5476,6 +6127,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -5485,6 +6137,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5513,6 +6169,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -5522,6 +6179,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5550,6 +6211,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5559,6 +6221,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5586,6 +6252,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 6 20 @@ -5596,6 +6263,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5623,6 +6294,7 @@ entire_atmos 0 ? dust_dry +? smaller_than_first_limit 6 20 @@ -5633,6 +6305,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5660,6 +6336,7 @@ entire_atmos 0 ? sea_salt_dry +? smaller_than_first_limit 6 20 @@ -5670,6 +6347,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5697,6 +6378,7 @@ entire_atmos 0 ? sulphate_dry +? smaller_than_first_limit 6 20 @@ -5707,6 +6389,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5734,6 +6420,7 @@ entire_atmos 0 ? particulate_org_matter_dry +? smaller_than_first_limit 6 20 @@ -5744,6 +6431,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5771,6 +6462,7 @@ entire_atmos 0 ? black_carbon_dry +? smaller_than_first_limit 6 20 @@ -5781,6 +6473,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5825,6 +6521,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -5834,6 +6531,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5862,6 +6563,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -5871,6 +6573,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -5899,6 +6605,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -5908,6 +6615,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5936,6 +6647,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -5945,6 +6657,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5973,6 +6689,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5982,6 +6699,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6010,6 +6731,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6019,6 +6741,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6047,6 +6773,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6056,6 +6783,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6084,6 +6815,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6093,6 +6825,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6121,6 +6857,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -6130,6 +6867,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6158,6 +6899,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -6167,6 +6909,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6195,6 +6941,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -6204,6 +6951,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6232,6 +6983,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6241,6 +6993,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6269,6 +7025,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6278,6 +7035,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6306,6 +7067,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6315,6 +7077,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6343,6 +7109,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6352,6 +7119,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6380,6 +7151,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6389,6 +7161,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6417,6 +7193,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6426,6 +7203,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6454,6 +7235,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6463,6 +7245,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6491,6 +7277,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -6500,6 +7287,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6528,6 +7319,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6537,6 +7329,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6565,6 +7361,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6574,6 +7371,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6602,6 +7403,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6611,6 +7413,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6639,6 +7445,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6648,6 +7455,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6676,6 +7487,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6685,6 +7497,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6713,6 +7529,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6722,6 +7539,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6750,6 +7571,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6759,6 +7581,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6787,6 +7613,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6796,6 +7623,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6824,6 +7655,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6833,6 +7665,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6861,6 +7697,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6870,6 +7707,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6898,6 +7739,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6907,6 +7749,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6935,6 +7781,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6944,6 +7791,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6972,6 +7823,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6981,6 +7833,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7009,6 +7865,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7018,6 +7875,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7046,6 +7907,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7055,6 +7917,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7083,6 +7949,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7092,6 +7959,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -7120,6 +7991,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7129,6 +8001,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7157,6 +8033,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7166,6 +8043,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7194,6 +8075,7 @@ convective_cloud_lyr ? ? ? +? 0 0.0 0 @@ -7203,6 +8085,10 @@ convective_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7231,6 +8117,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7240,6 +8127,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -7268,6 +8159,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7277,6 +8169,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7305,6 +8201,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -7314,6 +8211,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7342,6 +8243,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -7351,6 +8253,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -7379,6 +8285,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -7388,6 +8295,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7416,6 +8327,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -7425,6 +8337,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7453,6 +8369,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -7462,6 +8379,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7471,11 +8392,11 @@ hybrid_lvl ? ? 36 -SOILM_ON_DEPTH_BEL_LAND_SFC +GFS_CISOILM_ON_DEPTH_BEL_LAND_SFC ? 1 tmpl4_0 -SOILM +CISOILM ? ? depth_bel_land_sfc @@ -7490,6 +8411,7 @@ depth_bel_land_sfc 200. ? ? +? 0 0.0 0 @@ -7499,6 +8421,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7527,6 +8453,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7536,6 +8463,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 diff --git a/tests/parm/postxconfig-NT-hafs.txt b/tests/parm/postxconfig-NT-hafs.txt index fc6ea22296..a129771cf3 100644 --- a/tests/parm/postxconfig-NT-hafs.txt +++ b/tests/parm/postxconfig-NT-hafs.txt @@ -1,5 +1,5 @@ 1 -78 +84 HURPRS 32769 ncep_nco @@ -36,6 +36,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -45,6 +46,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -73,6 +78,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -82,6 +88,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -90,6 +100,48 @@ isobaric_sfc ? ? ? +15 +DPT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +DPT +? +? +isobaric_sfc +0 +? +6 +10000. 20000. 30000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? 16 SPFH_ON_ISOBARIC_SFC ? @@ -110,6 +162,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -119,6 +172,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -147,6 +204,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -156,6 +214,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -184,6 +246,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -193,6 +256,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -221,6 +288,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -230,6 +298,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -258,6 +330,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -267,6 +340,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -295,6 +372,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -304,6 +382,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -332,6 +414,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -341,6 +424,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -349,6 +436,48 @@ isobaric_sfc ? ? ? +153 +CLMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +CLMR +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? 166 ICMR_ON_ISOBARIC_SFC ? @@ -369,6 +498,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -378,6 +508,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -406,6 +540,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -415,6 +550,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -443,6 +582,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -452,6 +592,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -480,6 +624,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -489,6 +634,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -517,6 +666,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -526,6 +676,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -554,6 +708,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -563,6 +718,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -591,6 +750,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -600,6 +760,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -628,6 +792,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -637,6 +802,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -665,6 +834,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -674,6 +844,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -702,6 +876,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -711,6 +886,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -739,6 +918,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -748,6 +928,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -776,6 +960,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -785,6 +970,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -813,6 +1002,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -822,6 +1012,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -850,6 +1044,7 @@ surface ? ? ? +? 0 0.0 0 @@ -859,6 +1054,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -887,6 +1086,7 @@ surface ? ? ? +? 0 0.0 0 @@ -896,6 +1096,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -924,6 +1128,7 @@ surface ? ? ? +? 0 0.0 0 @@ -933,6 +1138,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -961,6 +1170,7 @@ surface ? ? ? +? 0 0.0 0 @@ -970,6 +1180,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -998,6 +1212,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1007,6 +1222,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1035,6 +1254,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1044,6 +1264,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1072,6 +1296,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1081,6 +1306,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1109,6 +1338,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1118,6 +1348,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1146,6 +1380,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1155,6 +1390,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1183,6 +1422,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1192,6 +1432,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1220,6 +1464,133 @@ surface ? ? ? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +417 +CACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +418 +CACM_ACPCP_ON_SURFACE +? +1 +tmpl4_8 +ACPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +419 +CACM_NCPCP_ON_SURFACE +? +1 +tmpl4_8 +NCPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? 0 0.0 0 @@ -1229,6 +1600,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1257,6 +1632,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1266,6 +1642,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1294,11 +1674,16 @@ surface ? ? ? +? +0 +0.0 +0 +0.0 +? 0 0.0 0 0.0 -? 0 0.0 0 @@ -1331,6 +1716,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1340,6 +1726,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1368,6 +1758,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1377,6 +1768,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1405,6 +1800,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1414,6 +1810,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1442,6 +1842,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1451,6 +1852,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1479,6 +1884,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1488,6 +1894,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1516,6 +1926,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1525,6 +1936,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1553,6 +1968,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1562,6 +1978,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1590,6 +2010,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1599,6 +2020,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1627,6 +2052,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -1636,6 +2062,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1664,6 +2094,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -1673,6 +2104,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1701,6 +2136,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -1710,6 +2146,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1738,6 +2178,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1747,6 +2188,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1775,6 +2220,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1784,6 +2230,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1812,6 +2262,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1821,6 +2272,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1849,6 +2304,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1858,6 +2314,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1886,6 +2346,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1895,6 +2356,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1923,6 +2388,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1932,6 +2398,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1960,6 +2430,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1969,6 +2440,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1997,6 +2472,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2006,6 +2482,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2034,6 +2514,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2043,6 +2524,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2071,6 +2556,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2080,6 +2566,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2108,6 +2598,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2117,6 +2608,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2145,6 +2640,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2154,6 +2650,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2182,6 +2682,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2191,6 +2692,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2219,6 +2724,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2228,6 +2734,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2256,6 +2766,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2265,6 +2776,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2273,6 +2788,48 @@ tropopause ? ? ? +108 +POT_ON_TROPOPAUSE +? +1 +tmpl4_0 +POT +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? 56 UGRD_ON_TROPOPAUSE ? @@ -2293,6 +2850,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2302,6 +2860,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2330,6 +2892,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2339,6 +2902,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2367,6 +2934,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2376,6 +2944,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2404,6 +2976,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -2413,6 +2986,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2441,6 +3018,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2450,6 +3028,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2478,6 +3060,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2487,6 +3070,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2515,6 +3102,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2524,6 +3112,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -2552,6 +3144,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2561,6 +3154,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -2589,6 +3186,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2598,6 +3196,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -2626,6 +3228,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2635,6 +3238,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -2663,6 +3270,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2672,6 +3280,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -2700,6 +3312,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2709,6 +3322,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2737,6 +3354,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2746,6 +3364,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2774,6 +3396,7 @@ isobaric_sfc 100000. ? ? +? 0 0.0 0 @@ -2783,6 +3406,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2811,6 +3438,7 @@ isobaric_sfc 100000. ? ? +? 0 0.0 0 @@ -2820,6 +3448,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2848,6 +3480,7 @@ spec_hgt_lvl_above_grnd 0000. ? ? +? 0 0.0 0 @@ -2857,6 +3490,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -2885,6 +3522,7 @@ spec_hgt_lvl_above_grnd 2000. ? ? +? 0 0.0 0 @@ -2894,6 +3532,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 diff --git a/tests/parm/postxconfig-NT-hafs_ar_nosat.txt b/tests/parm/postxconfig-NT-hafs_ar_nosat.txt new file mode 100644 index 0000000000..55e6fd6ea7 --- /dev/null +++ b/tests/parm/postxconfig-NT-hafs_ar_nosat.txt @@ -0,0 +1,4554 @@ +1 +108 +HURPRS +32769 +ncep_nco +v2003 +local_tab_yes1 +fcst +oper +fcst +fcst +hour +nws_ncep +hafs +complex_packing_spatial_diff +2nd_ord_sptdiff +fltng_pnt +lossless +12 +HGT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +HGT +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +13 +TMP_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +TMP +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +15 +DPT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +DPT +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +16 +SPFH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SPFH +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +7.0 +0 +0 +0 +? +? +? +17 +RH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RH +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +18 +UGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +UGRD +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +19 +VGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VGRD +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +284 +DZDT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +DZDT +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +20 +VVEL_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VVEL +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +21 +ABSV_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +ABSV +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +153 +CLMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +CLMR +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +166 +ICMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +ICMR +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +183 +RWMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RWMR +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +184 +SNMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SNMR +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +416 +GRLE_ON_ISOBARIC_SFC +Graupel mixing ration on isobaric surface +1 +tmpl4_0 +GRLE +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +251 +REFD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +REFD +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +23 +MSLET_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +MSLET +NCEP +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +105 +PRES_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +PRMSL +? +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +106 +TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +TMP +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +112 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +7.0 +0 +0 +0 +? +? +? +113 +DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +DPT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +114 +RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +RH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +64 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +UGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +65 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +VGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +24 +PRES_ON_SURFACE +? +1 +tmpl4_0 +PRES +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +25 +HGT_ON_SURFACE +? +1 +tmpl4_0 +HGT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +26 +TMP_ON_SURFACE +? +1 +tmpl4_0 +TMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +169 +SFEXC_ON_SURFACE +? +1 +tmpl4_0 +SFEXC +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +32 +CAPE_ON_SURFACE +? +1 +tmpl4_0 +CAPE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +107 +CIN_ON_SURFACE +? +1 +tmpl4_0 +CIN +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +80 +PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_0 +PWAT +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +162 +HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +HLCY +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +87 +ACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +746 +ACM_GRAUPEL_ON_SURFACE +? +1 +tmpl4_8 +FROZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +775 +BUCKET_GRAUPEL_ON_SURFACE +bucket graupel precipitation on surface +1 +tmpl4_8 +FROZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +782 +ACM_FRAIN_ON_SURFACE +? +1 +tmpl4_8 +FRZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +1003 +BUCKET_FRAIN_ON_SURFACE +? +1 +tmpl4_8 +FRZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +1005 +BUCKET_SNOWFALL_ON_SURFACE +? +1 +tmpl4_8 +TSNOWP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +33 +ACM_ACPCP_ON_SURFACE +? +1 +tmpl4_8 +ACPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +34 +ACM_NCPCP_ON_SURFACE +? +1 +tmpl4_8 +NCPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +417 +CACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +418 +CACM_ACPCP_ON_SURFACE +? +1 +tmpl4_8 +ACPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +419 +CACM_NCPCP_ON_SURFACE +? +1 +tmpl4_8 +NCPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +271 +AVE_PRATE_ON_SURFACE +? +1 +tmpl4_8 +PRATE +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +272 +AVE_CPRAT_ON_SURFACE +? +1 +tmpl4_8 +CPRAT +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +161 +INST_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCDC +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +144 +AVE_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +TCDC +? +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +141 +INST_USWRF_ON_SURFACE +? +1 +tmpl4_0 +USWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +142 +INST_ULWRF_ON_SURFACE +? +1 +tmpl4_0 +ULWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +126 +AVE_DSWRF_ON_SURFACE +? +1 +tmpl4_8 +DSWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +127 +AVE_DLWRF_ON_SURFACE +? +1 +tmpl4_8 +DLWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +128 +AVE_USWRF_ON_SURFACE +? +1 +tmpl4_8 +USWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +129 +AVE_ULWRF_ON_SURFACE +? +1 +tmpl4_8 +ULWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +130 +AVE_USWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_8 +USWRF +NCEP +AVE +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +131 +AVE_ULWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_8 +ULWRF +NCEP +AVE +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +274 +INST_ULWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +ULWRF +NCEP +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +156 +INST_DSWRF_ON_SURFACE +? +1 +tmpl4_0 +DSWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +157 +INST_DLWRF_ON_SURFACE +? +1 +tmpl4_0 +DLWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +44 +SFCR_ON_SURFACE +? +1 +tmpl4_0 +SFCR +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +45 +FRICV_ON_SURFACE +? +1 +tmpl4_0 +FRICV +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +133 +UFLX_ON_SURFACE +? +1 +tmpl4_0 +UFLX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +134 +VFLX_ON_SURFACE +? +1 +tmpl4_0 +VFLX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +154 +INST_SHTFL_ON_SURFACE +? +1 +tmpl4_0 +SHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +155 +INST_LHTFL_ON_SURFACE +? +1 +tmpl4_0 +LHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +48 +NLAT_ON_SURFACE +? +1 +tmpl4_0 +NLAT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +49 +ELON_ON_SURFACE +? +1 +tmpl4_0 +ELON +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +50 +LAND_ON_SURFACE +? +1 +tmpl4_0 +LAND +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +151 +WTMP_ON_SURFACE +? +1 +tmpl4_0 +WTMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +54 +PRES_ON_TROPOPAUSE +? +1 +tmpl4_0 +PRES +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +177 +HGT_ON_TROPOPAUSE +? +1 +tmpl4_0 +HGT +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +55 +TMP_ON_TROPOPAUSE +? +1 +tmpl4_0 +TMP +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +108 +POT_ON_TROPOPAUSE +? +1 +tmpl4_0 +POT +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +56 +UGRD_ON_TROPOPAUSE +? +1 +tmpl4_0 +UGRD +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +57 +VGRD_ON_TROPOPAUSE +? +1 +tmpl4_0 +VGRD +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +58 +VWSH_ON_TROPOPAUSE +? +1 +tmpl4_0 +VWSH +NCEP +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +168 +TMP_ON_CLOUD_TOP +? +1 +tmpl4_0 +TMP +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +252 +REFC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +REFC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +221 +HPBL_ON_SURFACE +? +1 +tmpl4_0 +HPBL +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +200 +TCOLW_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLW +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +201 +TCOLI_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLI +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +202 +TCOLR_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLR +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +203 +TCOLS_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLS +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +204 +TCOLC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +422 +MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +maximum wind speed on 10 meter Above Ground +1 +tmpl4_8 +WIND +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +245 +GUST_ON_SURFACE +? +1 +tmpl4_0 +GUST +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +423 +MAX_MAXUVV_ON_ISOBARIC_SFC_100-1000hpa +hourly maximum Upward Vertical Velocity between 100-1000hpa +1 +tmpl4_8 +MAXUVV +NCEP +MAX +isobaric_sfc +0 +? +1 +10000. +isobaric_sfc +0 +? +1 +100000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +424 +MAX_MAXDVV_ON_ISOBARIC_SFC_100-1000hpa +hourly maximum Downward Vertical Velocity between 100-1000hpa +1 +tmpl4_8 +MAXDVV +NCEP +MAX +isobaric_sfc +0 +? +1 +10000. +isobaric_sfc +0 +? +1 +100000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +790 +GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +? +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +420 +MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +maximum Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +118 +CNWAT_ON_SURFACE +? +1 +tmpl4_0 +CNWAT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +119 +WEASD_ON_SURFACE +? +1 +tmpl4_0 +WEASD +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +120 +SNOWC_ON_SURFACE +? +1 +tmpl4_0 +SNOWC +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +170 +VEG_ON_SURFACE +? +1 +tmpl4_0 +VEG +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +1004 +ACM_SNOWFALL_ON_SURFACE +? +1 +tmpl4_8 +TSNOWP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +121 +ACM_SNOM_ON_SURFACE +? +1 +tmpl4_8 +SNOM +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +122 +ACM_SSRUN_ON_SURFACE +? +1 +tmpl4_8 +SSRUN +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +123 +ACM_BGRUN_ON_SURFACE +? +1 +tmpl4_8 +BGRUN +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +343 +ACM_WATR_ON_SURFACE +? +1 +tmpl4_8 +WATR +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +317 +AVE_CRAIN_ON_SURFACE +? +1 +tmpl4_8 +CRAIN +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +555 +AVE_CSNOW_ON_SURFACE +average Categorical snow on surface +1 +tmpl4_8 +CSNOW +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +556 +AVE_CICEP_ON_SURFACE +average Categorical ice pellets on surface +1 +tmpl4_8 +CICEP +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +557 +AVE_CFRZR_ON_SURFACE +average Categorical freezing rain on surface +1 +tmpl4_8 +CFRZR +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +747 +NCCD_ON_HYBRID_LVL +Number concentration for cloud water drops on hybrid level +1 +tmpl4_0 +NCONCD +? +? +hybrid_lvl +0 +? +127 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. 80. 81. 82. 83. 84. 85. 86. 87. 88. 89. 90. 91. 92. 93. 94. 95. 96. 97. 98. 99. 100. 101. 102. 103. 104. 105. 106. 107. 108. 109. 110. 111. 112. 113. 114. 115. 116. 117. 118. 119. 120. 121. 122. 123. 124. 125. 126. 127. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +752 +NCIP_ON_HYBRID_LVL +Number concentration for ice particles on hybrid level +1 +tmpl4_0 +NCCICE +? +? +hybrid_lvl +0 +? +127 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. 80. 81. 82. 83. 84. 85. 86. 87. 88. 89. 90. 91. 92. 93. 94. 95. 96. 97. 98. 99. 100. 101. 102. 103. 104. 105. 106. 107. 108. 109. 110. 111. 112. 113. 114. 115. 116. 117. 118. 119. 120. 121. 122. 123. 124. 125. 126. 127. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +754 +NCRAIN_ON_HYBRID_LVL +? +1 +tmpl4_0 +SPNCR +? +? +hybrid_lvl +0 +? +127 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. 80. 81. 82. 83. 84. 85. 86. 87. 88. 89. 90. 91. 92. 93. 94. 95. 96. 97. 98. 99. 100. 101. 102. 103. 104. 105. 106. 107. 108. 109. 110. 111. 112. 113. 114. 115. 116. 117. 118. 119. 120. 121. 122. 123. 124. 125. 126. 127. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +1018 +NCCD_ON_ISOBARIC_SFC +Number concentration for cloud water drops on isobaric surfaces +1 +tmpl4_0 +NCONCD +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +1019 +NCIP_ON_ISOBARIC_SFC +Number concentration for ice particles on isobaric surfaces +1 +tmpl4_0 +NCCICE +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +1020 +NCRAIN_ON_ISOBARIC_SFC +Number concentration for rain on isobaric surfaces +1 +tmpl4_0 +SPNCR +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? diff --git a/tests/parm/rap.nml.IN b/tests/parm/rap.nml.IN index 8ed7dcfa75..849e9f78cc 100644 --- a/tests/parm/rap.nml.IN +++ b/tests/parm/rap.nml.IN @@ -90,6 +90,7 @@ agrid_vel_rst = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/parm/regional.nml.IN b/tests/parm/regional.nml.IN index 511cbe1e34..f0911503c7 100644 --- a/tests/parm/regional.nml.IN +++ b/tests/parm/regional.nml.IN @@ -96,6 +96,7 @@ agrid_vel_rst = .true. read_increment = .F. res_latlon_dynamics = "fv3_increment.nc" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] do_schmidt = .true. target_lat = 55.0 target_lon = -112.5 diff --git a/tests/parm/regional_atmaq.nml.IN b/tests/parm/regional_atmaq.nml.IN index 0a5b3e3812..a5a596a55c 100644 --- a/tests/parm/regional_atmaq.nml.IN +++ b/tests/parm/regional_atmaq.nml.IN @@ -93,6 +93,7 @@ regional = .true. regional_bcs_from_gsi = .false. res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] reset_eta = .false. rf_cutoff = 750.0 stretch_fac = 0.999 diff --git a/tests/parm/regional_rrfs_a.nml.IN b/tests/parm/regional_rrfs_a.nml.IN index 1e1255e81b..d7c903a954 100644 --- a/tests/parm/regional_rrfs_a.nml.IN +++ b/tests/parm/regional_rrfs_a.nml.IN @@ -120,6 +120,7 @@ regional = .true. regional_bcs_from_gsi = .false. res_latlon_dynamics = 'fv3_increment.nc' + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] reset_eta = .false. rf_cutoff = 2000.0 sg_cutoff = 10000.0 diff --git a/tests/parm/regional_wofs.nml.IN b/tests/parm/regional_wofs.nml.IN index e79f196863..e5d49e3858 100644 --- a/tests/parm/regional_wofs.nml.IN +++ b/tests/parm/regional_wofs.nml.IN @@ -112,6 +112,7 @@ regional = .true. regional_bcs_from_gsi = .false. res_latlon_dynamics = 'fv3_increment.nc' + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] reset_eta = .false. rf_cutoff = 2000.0 stretch_fac = 0.999 diff --git a/tests/parm/rrfs_conus13km_hrrr.nml.IN b/tests/parm/rrfs_conus13km_hrrr.nml.IN index 883a508911..b582d1d357 100644 --- a/tests/parm/rrfs_conus13km_hrrr.nml.IN +++ b/tests/parm/rrfs_conus13km_hrrr.nml.IN @@ -115,6 +115,7 @@ regional = .true. regional_bcs_from_gsi = .false. res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] reset_eta = .false. rf_cutoff = 20000.0 sg_cutoff = 10000.0 diff --git a/tests/parm/ufs.configure.s2s_esmf.IN b/tests/parm/ufs.configure.s2s_esmf.IN index 3161e4891f..999731d927 100644 --- a/tests/parm/ufs.configure.s2s_esmf.IN +++ b/tests/parm/ufs.configure.s2s_esmf.IN @@ -97,10 +97,20 @@ MED_attributes:: coupling_mode = @[CPLMODE] pio_rearranger = @[pio_rearranger] ocean_albedo_limit = @[ocean_albedo_limit] - history_n_ice_inst = @[MED_history_n] - history_option_ice_inst = nhours - history_n_ocn_inst = @[MED_history_n] - history_option_ocn_inst = nhours + histaux_ice2med_file1_auxname = ice.1h.aux + histaux_ice2med_file1_doavg = .false. + histaux_ice2med_file1_enabled = .true. + histaux_ice2med_file1_flds = all + histaux_ice2med_file1_history_n = @[MED_history_n] + histaux_ice2med_file1_history_option = nhours + histaux_ice2med_file1_ntperfile = 9999 + histaux_ocn2med_file1_auxname = ocn.1h.aux + histaux_ocn2med_file1_doavg = .false. + histaux_ocn2med_file1_enabled = .true. + histaux_ocn2med_file1_flds = all + histaux_ocn2med_file1_history_n = @[MED_history_n] + histaux_ocn2med_file1_history_option = nhours + histaux_ocn2med_file1_ntperfile = 9999 :: ALLCOMP_attributes:: diff --git a/tests/parm/wam_v17.nml.IN b/tests/parm/wam_v17.nml.IN index 8e5c6cb90d..f6ec526bc7 100644 --- a/tests/parm/wam_v17.nml.IN +++ b/tests/parm/wam_v17.nml.IN @@ -93,6 +93,7 @@ agrid_vel_rst = .false. read_increment = @[READ_INCREMENT] res_latlon_dynamics = "fv3_increment.nc" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/rt.conf b/tests/rt.conf index 07fa091e1b..af678f72ca 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -125,11 +125,6 @@ RUN | regional_netcdf_parallel | - acorn RUN | regional_2dwrtdecomp | | | RUN | regional_wofs | - jet s4 | baseline | -COMPILE | ifi | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON | + acorn | fv3 | -RUN | regional_ifi_control | + acorn | baseline | -RUN | regional_ifi_decomp | + acorn | | -RUN | regional_ifi_2threads | + acorn | | - COMPILE | rrfs | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON | | fv3 | RUN | rap_control | | baseline | RUN | regional_spp_sppt_shum_skeb | | baseline | diff --git a/tests/rt.sh b/tests/rt.sh index 8d2ed7a467..fd8976c10c 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -16,7 +16,7 @@ usage() { echo " -a to use on for HPC queue" echo " -b create new baselines only for tests listed in " echo " -c create new baseline results" - echo " -d delete run direcotries that are not used by other tests" + echo " -d delete run directories that are not used by other tests" echo " -e use ecFlow workflow manager" echo " -h display this help" echo " -k keep run directory after rt.sh is completed" @@ -835,16 +835,15 @@ case ${MACHINE_ID} in if [[ "${ECFLOW:-false}" == true ]] ; then module load ecflow/5.11.4 fi - - module use /mnt/lfs4/HFIP/hfv3gfs/role.epic/spack-stack/spack-stack-1.5.0/envs/unified-env-rocky8/install/modulefiles/Core + module use /contrib/spack-stack/spack-stack-1.6.0/envs/unified-env-rocky8/install/modulefiles/Core module load stack-intel/2021.5.0 - module load stack-python/3.10.8 + module load stack-python/3.10.13 QUEUE="batch" COMPILE_QUEUE="batch" PARTITION="xjet" - DISKNM="/mnt/lfs4/HFIP/hfv3gfs/role.epic/RT" - dprefix="${dprefix:-/lfs4/HFIP/${ACCNR}/${USER}}" + DISKNM="/lfs5/HFIP/hfv3gfs/role.epic/RT" + dprefix="${dprefix:-/lfs5/HFIP/${ACCNR}/${USER}}" STMP="${STMP:-${dprefix}/RT_BASELINE}" PTMP="${PTMP:-${dprefix}/RT_RUNDIRS}" @@ -1041,6 +1040,7 @@ if [[ ${skip_check_results} == true ]]; then else REGRESSIONTEST_LOG=${PATHRT}/logs/RegressionTests_${MACHINE_ID}.log fi +rm -f "${REGRESSIONTEST_LOG}" TEST_START_TIME="$(date '+%Y%m%d %T')" export TEST_START_TIME @@ -1308,8 +1308,8 @@ export WLCLK=${WLCLK} EOF if [[ ${MACHINE_ID} = jet ]]; then cat << EOF >> "${RUNDIR_ROOT}/run_test_${TEST_ID}.env" -export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:${PATH} -export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages +export PATH=/contrib/spack-stack/miniconda3/23.11.0/envs/ufs-weather-model/bin:/contrib/spack-stack/miniconda3/23.11.0/bin:${PATH} +export PYTHONPATH=/contrib/spack-stack/miniconda3/23.11.0/envs/ufs-weather-model/lib/python3.8/site-packages:/contrib/spack-stack/miniconda3/23.11.0/lib/python3.8/site-packages EOF fi diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 6f049cf161..3fb1070547 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -124,10 +124,6 @@ submit_and_wait() { local -r job_card=$1 - ROCOTO=${ROCOTO:-false} - ECFLOW=${ECFLOW:-false} - - local test_status='PASS' case ${SCHEDULER} in pbs) qsubout=$( qsub "${job_card}" ) @@ -187,26 +183,38 @@ submit_and_wait() { set +e job_info=$( qstat "${jobid}" ) set -e + if grep -q "${jobid}" <<< "${job_info}"; then + job_running=true + # Getting the status letter from scheduler info + status=$( grep "${jobid}" <<< "${job_info}" ) + status=$( awk '{print $5}' <<< "${status}" ) + else + job_running=false + status='COMPLETED' + set +e + exit_status=$( qstat "${jobid}" -x -f | grep Exit_status | awk '{print $3}') + set -e + if [[ ${exit_status} != 0 ]]; then + status='FAILED' + fi + fi ;; slurm) - job_info=$( squeue -u "${USER}" -j "${jobid}" ) + job_info=$( squeue -u "${USER}" -j "${jobid}" -o '%i %T' ) + if grep -q "${jobid}" <<< "${job_info}"; then + job_running=true + else + job_running=false + job_info=$( sacct -n -j "${jobid}" --format=JobID,state%20,Jobname%64 | grep "^${jobid}" | grep "${JBNME}" ) + fi + # Getting the status letter from scheduler info + status=$( grep "${jobid}" <<< "${job_info}" ) + status=$( awk '{print $2}' <<< "${status}" ) ;; *) ;; esac - - if grep -q "${jobid}" <<< "${job_info}"; then - job_running=true - else - job_running=false - continue - fi - - # Getting the status letter from scheduler info - status=$( grep "${jobid}" <<< "${job_info}" ) - status=$( awk '{print $5}' <<< "${status}" ) - case ${status} in #waiting cases #pbs: Q @@ -217,7 +225,7 @@ submit_and_wait() { #running cases #pbs: R #slurm: (old: R, new: RUNNING) - R|RUNNING) + R|RUNNING|COMPLETING) status_label='Job running' ;; #held cases @@ -229,14 +237,15 @@ submit_and_wait() { #fail/completed cases #slurm: F/FAILED TO/TIMEOUT CA/CANCELLED F|TO|CA|FAILED|TIMEOUT|CANCELLED) - echo "rt_utils.sh: !!!!!!!!!!JOB TERMINATED!!!!!!!!!!" + echo "rt_utils.sh: !!!!!!!!!!JOB TERMINATED!!!!!!!!!! status=${status}" job_running=false #Trip the loop to end with these status flags interrupt_job exit 1 ;; #completed - #pbs only: C-Complete E-Exiting - C|E) + #pbs: C-Complete E-Exiting + #slurm: CD/COMPLETED + C|E|CD|COMPLETED) status_label='Completed' ;; *) @@ -253,140 +262,6 @@ submit_and_wait() { done } -check_results() { - echo "rt_utils.sh: Checking results of the regression test: ${TEST_ID}" - - ROCOTO=${ROCOTO:-false} - ECFLOW=${ECFLOW:-false} - - local test_status='PASS' - - # Give one minute for data to show up on file system - #sleep 60 - - { - echo - echo "baseline dir = ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}" - echo "working dir = ${RUNDIR}" - echo "Checking test ${TEST_ID} results ...." - } > "${RT_LOG}" - echo - echo "baseline dir = ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}" - echo "working dir = ${RUNDIR}" - echo "Checking test ${TEST_ID} results ...." - - if [[ ${CREATE_BASELINE} = false ]]; then - # - # --- regression test comparison - # - for i in ${LIST_FILES} ; do - printf %s " Comparing ${i} ....." >> "${RT_LOG}" - printf %s " Comparing ${i} ....." - - if [[ ! -f ${RUNDIR}/${i} ]] ; then - - echo ".......MISSING file" >> "${RT_LOG}" - echo ".......MISSING file" - test_status='FAIL' - - elif [[ ! -f ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i} ]] ; then - - echo ".......MISSING baseline" >> "${RT_LOG}" - echo ".......MISSING baseline" - test_status='FAIL' - - else - if [[ ${i##*.} == nc* ]] ; then - if [[ " orion hercules hera wcoss2 acorn derecho gaea jet s4 noaacloud " =~ ${MACHINE_ID} ]]; then - printf "USING NCCMP.." >> "${RT_LOG}" - printf "USING NCCMP.." - if [[ ${CMP_DATAONLY} == false ]]; then - nccmp -d -S -q -f -g -B --Attribute=checksum --warn=format "${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i}" "${RUNDIR}/${i}" > "${i}_nccmp.log" 2>&1 && d=$? || d=$? - else - nccmp -d -S -q -f -B --Attribute=checksum --warn=format "${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i}" "${RUNDIR}/${i}" > "${i}_nccmp.log" 2>&1 && d=$? || d=$? - fi - if [[ ${d} -ne 0 && ${d} -ne 1 ]]; then - printf "....ERROR" >> "${RT_LOG}" - printf "....ERROR" - test_status='FAIL' - fi - fi - else - printf "USING CMP.." >> "${RT_LOG}" - printf "USING CMP.." - cmp "${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i}" "${RUNDIR}/${i}" >/dev/null 2>&1 && d=$? || d=$? - if [[ ${d} -eq 2 ]]; then - printf "....ERROR" >> "${RT_LOG}" - printf "....ERROR" - test_status='FAIL' - fi - - fi - - if [[ ${d} -ne 0 ]]; then - echo "....NOT IDENTICAL" >> "${RT_LOG}" - echo "....NOT IDENTICAL" - test_status='FAIL' - else - echo "....OK" >> "${RT_LOG}" - echo "....OK" - fi - - fi - - done - - else - # - # --- create baselines - # - echo;echo "Moving baseline ${TEST_ID} files ...." - echo;echo "Moving baseline ${TEST_ID} files ...." >> "${RT_LOG}" - - for i in ${LIST_FILES} ; do - printf %s " Moving ${i} ....." - printf %s " Moving ${i} ....." >> "${RT_LOG}" - if [[ -f ${RUNDIR}/${i} ]] ; then - mkdir -p "${NEW_BASELINE}/${CNTL_DIR}_${RT_COMPILER}/$(dirname "${i}")" - cp "${RUNDIR}/${i}" "${NEW_BASELINE}/${CNTL_DIR}_${RT_COMPILER}/${i}" - echo "....OK" >> "${RT_LOG}" - echo "....OK" - else - echo "....NOT OK. Missing ${RUNDIR}/${i}" >> "${RT_LOG}" - echo "....NOT OK. Missing ${RUNDIR}/${i}" - test_status='FAIL' - fi - done - - fi - - { - echo - grep "The total amount of wall time" "${RUNDIR}/out" - grep "The maximum resident set size" "${RUNDIR}/out" - echo - } >> "${RT_LOG}" - - TRIES='' - if [[ ${ECFLOW} == true ]]; then - if [[ ${ECF_TRYNO} -gt 1 ]]; then - TRIES=" Tries: ${ECF_TRYNO}" - fi - fi - echo "Test ${TEST_ID} ${test_status}${TRIES}" >> "${RT_LOG}" - echo >> "${RT_LOG}" - echo "Test ${TEST_ID} ${test_status}${TRIES}" - echo - - if [[ ${test_status} = 'FAIL' ]]; then - echo "${TEST_ID} failed in check_result" >> "${PATHRT}/fail_test_${TEST_ID}" - return 1 - else - return 0 - fi -} - - kill_job() { echo "rt_utils.sh: Killing job: ${jobid} on ${SCHEDULER}..." [[ -z $1 ]] && exit 1 @@ -580,14 +455,16 @@ ecflow_create_compile_task() { cat << EOF > "${ECFLOW_RUN}/${ECFLOW_SUITE}/compile_${COMPILE_ID}.ecf" %include -${PATHRT}/run_compile.sh "${PATHRT}" "${RUNDIR_ROOT}" "${MAKE_OPT}" "${COMPILE_ID}" > "${LOG_DIR}/compile_${COMPILE_ID}.log" 2>&1 & +( +cd "${LOG_DIR}" +ln -sf "compile_${COMPILE_ID}.log.\${ECF_TRYNO}" "compile_${COMPILE_ID}.log" +) +${PATHRT}/run_compile.sh "${PATHRT}" "${RUNDIR_ROOT}" "${MAKE_OPT}" "${COMPILE_ID}" > "${LOG_DIR}/compile_${COMPILE_ID}.log.\${ECF_TRYNO}" 2>&1 & %include EOF { echo " task compile_${COMPILE_ID}" echo " label build_options '${MAKE_OPT}'" - echo " label job_id ''" - echo " label job_status ''" echo " inlimit max_builds" } >> "${ECFLOW_RUN}/${ECFLOW_SUITE}.def" } @@ -596,13 +473,15 @@ ecflow_create_run_task() { echo "rt_utils.sh: ${TEST_ID}: Creating ECFLOW run task" cat << EOF > "${ECFLOW_RUN}/${ECFLOW_SUITE}/${TEST_ID}${RT_SUFFIX}.ecf" %include -${PATHRT}/run_test.sh "${PATHRT}" "${RUNDIR_ROOT}" "${TEST_NAME}" "${TEST_ID}" "${COMPILE_ID}" > "${LOG_DIR}/run_${TEST_ID}${RT_SUFFIX}.log" 2>&1 & +( +cd "${LOG_DIR}" +ln -sf "run_${TEST_ID}${RT_SUFFIX}.log.\${ECF_TRYNO}" "${LOG_DIR}/run_${TEST_ID}${RT_SUFFIX}.log" +) +${PATHRT}/run_test.sh "${PATHRT}" "${RUNDIR_ROOT}" "${TEST_NAME}" "${TEST_ID}" "${COMPILE_ID}" > "${LOG_DIR}/run_${TEST_ID}${RT_SUFFIX}.log.\${ECF_TRYNO}" 2>&1 & %include EOF { echo " task ${TEST_ID}${RT_SUFFIX}" - echo " label job_id ''" - echo " label job_status ''" echo " inlimit max_jobs" } >> "${ECFLOW_RUN}/${ECFLOW_SUITE}.def" if [[ ${DEP_RUN} != '' ]]; then diff --git a/tests/run_compile.sh b/tests/run_compile.sh index 1685f89653..6eeb72b13e 100755 --- a/tests/run_compile.sh +++ b/tests/run_compile.sh @@ -17,7 +17,16 @@ cleanup() { write_fail_test() { echo "${JBNME} failed in run_compile" >> "${PATHRT}/fail_${JBNME}" - exit 1 + if [[ ${ROCOTO:-false} == true ]] || [[ ${ECFLOW:-false} == true ]]; then + # if this script has been submitted by a workflow return non-zero exit status + # so that workflow can resubmit it + exit 1 + else + # if this script has been executed interactively, return zero exit status + # so that rt.sh can continue running, and hope that rt.sh's generate_log + # will catch failed tests + exit 0 + fi } remove_fail_test() { diff --git a/tests/run_test.sh b/tests/run_test.sh index ace4fd0cf1..88e10210d6 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -17,12 +17,16 @@ cleanup() { write_fail_test() { echo "${TEST_ID} failed in run_test" >> "${PATHRT}/fail_test_${TEST_ID}" - exit 1 -} - -remove_fail_test() { - echo "Removing test failure flag file for ${TEST_ID}" - rm -f "${PATHRT}/fail_test_${TEST_ID}" + if [[ ${ROCOTO:-false} == true ]] || [[ ${ECFLOW:-false} == true ]]; then + # if this script has been submitted by a workflow return non-zero exit status + # so that workflow can resubmit it + exit 1 + else + # if this script has been executed interactively, return zero exit status + # so that rt.sh can continue running, and hope that rt.sh's generate_log + # will catch failed tests + exit 0 + fi } if [[ $# != 5 ]]; then @@ -53,7 +57,7 @@ source default_vars.sh [[ -e ${RUNDIR_ROOT}/run_test_${TEST_ID}.env ]] && source "${RUNDIR_ROOT}/run_test_${TEST_ID}.env" source "tests/${TEST_NAME}" -remove_fail_test +rm -f "${PATHRT}/fail_test_${TEST_ID}" # Save original CNTL_DIR name as INPUT_DIR for regression # tests that try to copy input data from CNTL_DIR @@ -396,11 +400,123 @@ else fi skip_check_results=${skip_check_results:-false} -results_okay=YES -if [[ ${skip_check_results} = false ]]; then - if ( ! check_results ) ; then - results_okay=NO +if [[ ${skip_check_results} == false ]]; then + + test_status='PASS' + + { + echo + echo "baseline dir = ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}" + echo "working dir = ${RUNDIR}" + echo "Checking test ${TEST_ID} results ...." + } > "${RT_LOG}" + echo + echo "baseline dir = ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}" + echo "working dir = ${RUNDIR}" + echo "Checking test ${TEST_ID} results ...." + + if [[ ${CREATE_BASELINE} = false ]]; then + # + # --- regression test comparison + # + for i in ${LIST_FILES} ; do + printf %s " Comparing ${i} ....." >> "${RT_LOG}" + printf %s " Comparing ${i} ....." + + if [[ ! -f ${RUNDIR}/${i} ]] ; then + + echo ".......MISSING file" >> "${RT_LOG}" + echo ".......MISSING file" + test_status='FAIL' + + elif [[ ! -f ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i} ]] ; then + + echo ".......MISSING baseline" >> "${RT_LOG}" + echo ".......MISSING baseline" + test_status='FAIL' + + else + if [[ ${i##*.} == nc* ]] ; then + if [[ " orion hercules hera wcoss2 acorn derecho gaea jet s4 noaacloud " =~ ${MACHINE_ID} ]]; then + printf "USING NCCMP.." >> "${RT_LOG}" + printf "USING NCCMP.." + if [[ ${CMP_DATAONLY} == false ]]; then + nccmp -d -S -q -f -g -B --Attribute=checksum --warn=format "${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i}" "${RUNDIR}/${i}" > "${i}_nccmp.log" 2>&1 && d=$? || d=$? + else + nccmp -d -S -q -f -B --Attribute=checksum --warn=format "${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i}" "${RUNDIR}/${i}" > "${i}_nccmp.log" 2>&1 && d=$? || d=$? + fi + if [[ ${d} -ne 0 && ${d} -ne 1 ]]; then + printf "....ERROR" >> "${RT_LOG}" + printf "....ERROR" + test_status='FAIL' + fi + fi + else + printf "USING CMP.." >> "${RT_LOG}" + printf "USING CMP.." + cmp "${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i}" "${RUNDIR}/${i}" >/dev/null 2>&1 && d=$? || d=$? + if [[ ${d} -eq 2 ]]; then + printf "....ERROR" >> "${RT_LOG}" + printf "....ERROR" + test_status='FAIL' + fi + + fi + + if [[ ${d} -ne 0 ]]; then + echo "....NOT IDENTICAL" >> "${RT_LOG}" + echo "....NOT IDENTICAL" + test_status='FAIL' + else + echo "....OK" >> "${RT_LOG}" + echo "....OK" + fi + + fi + + done + + else + # + # --- create baselines + # + echo;echo "Moving baseline ${TEST_ID} files ...." + echo;echo "Moving baseline ${TEST_ID} files ...." >> "${RT_LOG}" + + for i in ${LIST_FILES} ; do + printf %s " Moving ${i} ....." + printf %s " Moving ${i} ....." >> "${RT_LOG}" + if [[ -f ${RUNDIR}/${i} ]] ; then + mkdir -p "${NEW_BASELINE}/${CNTL_DIR}_${RT_COMPILER}/$(dirname "${i}")" + cp "${RUNDIR}/${i}" "${NEW_BASELINE}/${CNTL_DIR}_${RT_COMPILER}/${i}" + echo "....OK" >> "${RT_LOG}" + echo "....OK" + else + echo "....NOT OK. Missing ${RUNDIR}/${i}" >> "${RT_LOG}" + echo "....NOT OK. Missing ${RUNDIR}/${i}" + test_status='FAIL' + fi + done + fi + + { + echo + grep "The total amount of wall time" "${RUNDIR}/out" + grep "The maximum resident set size" "${RUNDIR}/out" + echo + echo "Test ${TEST_ID} ${test_status}" + echo + } >> "${RT_LOG}" + + echo "Test ${TEST_ID} ${test_status}" + echo + + if [[ ${test_status} = 'FAIL' ]]; then + echo "${TEST_ID} failed in check_result" >> "${PATHRT}/fail_test_${TEST_ID}" + write_fail_test + fi + else { echo @@ -408,7 +524,7 @@ else grep "The maximum resident set size" "${RUNDIR}/out" echo echo "Test ${TEST_ID} RUN_SUCCESS" - echo;echo;echo + echo;echo;echo } >> "${RT_LOG}" fi @@ -416,10 +532,6 @@ if [[ ${SCHEDULER} != 'none' ]]; then cat "${RUNDIR}/job_timestamp.txt" >> "${LOG_DIR}/${JBNME}_timestamp.txt" fi -if [[ ${results_okay} == YES ]]; then - remove_fail_test -fi - ################################################################################ # End test ################################################################################ diff --git a/tests/test_changes.list b/tests/test_changes.list index e498af5875..a2ab4baa0f 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1 +1,29 @@ -cpld_debug_pdlib_p8 gnu +cpld_control_p8_mixedmode intel +cpld_control_gfsv17 intel +cpld_control_gfsv17_iau intel +cpld_restart_gfsv17 intel +cpld_mpi_gfsv17 intel +cpld_control_sfs intel +cpld_control_p8 intel +cpld_control_p8.v2.sfc intel +cpld_restart_p8 intel +cpld_control_qr_p8 intel +cpld_restart_qr_p8 intel +cpld_2threads_p8 intel +cpld_decomp_p8 intel +cpld_mpi_p8 intel +cpld_control_ciceC_p8 intel +cpld_bmark_p8 intel +cpld_restart_bmark_p8 intel +cpld_s2sa_p8 intel +cpld_control_noaero_p8 intel +cpld_control_nowave_noaero_p8 intel +cpld_control_noaero_p8_agrid intel +cpld_control_c48 intel +cpld_warmstart_c48 intel +cpld_restart_c48 intel +cpld_control_p8_faster intel +cpld_control_pdlib_p8 intel +cpld_restart_pdlib_p8 intel +cpld_mpi_pdlib_p8 intel +hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 intel diff --git a/tests/tests/control_c48.v2.sfc_timeout b/tests/tests/control_c48.v2.sfc_timeout new file mode 100644 index 0000000000..ec78b47892 --- /dev/null +++ b/tests/tests/control_c48.v2.sfc_timeout @@ -0,0 +1,4 @@ +source tests/control_c48.v2.sfc + +# Intentionally make this test fail due to wall clock timeout. Used by error-test.conf +export WLCLK=2 diff --git a/tests/tests/cpld_control_sfs b/tests/tests/cpld_control_sfs index 362e5a112d..1d2f12753a 100644 --- a/tests/tests/cpld_control_sfs +++ b/tests/tests/cpld_control_sfs @@ -14,7 +14,8 @@ export LIST_FILES="sfcf021.nc \ GFSFLX.GrbF21 \ GFSFLX.GrbF24 \ GFSPRS.GrbF21 \ - GFSPRS.GrbF24" + GFSPRS.GrbF24 \ + RESTART/20210323.060000.MOM.res.nc" export_fv3 export_cpl @@ -45,6 +46,13 @@ OCN_tasks=$OCN_tasks_cpl_unstr ICE_tasks=$ICE_tasks_cpl_unstr WAV_tasks=$WAV_tasks_cpl_unstr +# use downscaled warmstarts for ocean and ice +export OCNICE_WARMSTART=.true. +export MOM6_INIT_FROM_Z=False +export MOM6_INIT_UV=file +export MOM6_WARMSTART_FILE=mom6.warmstart.nc +export CICE_ICE_IC=cice.warmstart.nc + export atm_omp_num_threads=$THRD_cpl_unstr export med_omp_num_threads=$atm_omp_num_threads diff --git a/tests/tests/cpld_debug_pdlib_p8 b/tests/tests/cpld_debug_pdlib_p8 index e0a2383ce5..9f577a1b92 100644 --- a/tests/tests/cpld_debug_pdlib_p8 +++ b/tests/tests/cpld_debug_pdlib_p8 @@ -74,6 +74,7 @@ ICE_tasks=$ICE_tasks_cpl_unstr WAV_tasks=$WAV_tasks_cpl_unstr # bump resources for debug test WAV_tasks="$(($WAV_tasks_cpl_unstr + 18))" +OCN_tasks="$((OCN_tasks_cpl_unstr + 16))" export atm_omp_num_threads=$THRD_cpl_unstr export med_omp_num_threads=$atm_omp_num_threads diff --git a/tests/tests/datm_cdeps_3072x1536_cfsr b/tests/tests/datm_cdeps_3072x1536_cfsr index 9c61d01096..bb4454077c 100644 --- a/tests/tests/datm_cdeps_3072x1536_cfsr +++ b/tests/tests/datm_cdeps_3072x1536_cfsr @@ -12,7 +12,7 @@ export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ export_datm_cdeps export DATM_SRC=CFSR3072x1536 -export FILENAME_BASE=cfsr. +export FILEBASE_DATM=cfsr export WLCLK=15 export IATM=3072 export JATM=1536 @@ -20,7 +20,7 @@ export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM export ATMRES=${IATM}x${JATM} export MESH_ATM=gfs_mesh.nc -export atm_datamode=GFS +export atm_datamode=GEFS export RESTART_N=12 export stream_files="INPUT/cfsr.2011100100_3072x1536.nc INPUT/cfsr.2011100106_3072x1536.nc INPUT/cfsr.2011100112_3072x1536.nc INPUT/cfsr.2011100118_3072x1536.nc INPUT/cfsr.2011100200_3072x1536.nc INPUT/cfsr.2011100206_3072x1536.nc" export eps_imesh=2.5e-1 diff --git a/tests/tests/datm_cdeps_bulk_cfsr b/tests/tests/datm_cdeps_bulk_cfsr index 37f967809f..03548a6088 100644 --- a/tests/tests/datm_cdeps_bulk_cfsr +++ b/tests/tests/datm_cdeps_bulk_cfsr @@ -12,7 +12,7 @@ export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ export_datm_cdeps export DATM_SRC=CFSR -export FILENAME_BASE=cfsr. +export FILEBASE_DATM=cfsr export IATM=1760 export JATM=880 export RESTART_N=12 diff --git a/tests/tests/datm_cdeps_bulk_gefs b/tests/tests/datm_cdeps_bulk_gefs index 902df12859..798bbc5824 100644 --- a/tests/tests/datm_cdeps_bulk_gefs +++ b/tests/tests/datm_cdeps_bulk_gefs @@ -19,9 +19,9 @@ export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM export ATMRES=${IATM}x${JATM} export DATM_SRC=GEFS_NEW -export FILENAME_BASE=gefs. -export MESH_ATM=${FILENAME_BASE//.}_mesh.nc -export stream_files="INPUT/${FILENAME_BASE}201110.nc" +export FILEBASE_DATM=gefs +export MESH_ATM=${FILEBASE_DATM}_mesh.nc +export stream_files="INPUT/${FILEBASE_DATM}.201110.nc" export STREAM_OFFSET=-21600 export RESTART_N=12 diff --git a/tests/tests/datm_cdeps_ciceC_cfsr b/tests/tests/datm_cdeps_ciceC_cfsr index a7cc6b9cee..70ee13250a 100644 --- a/tests/tests/datm_cdeps_ciceC_cfsr +++ b/tests/tests/datm_cdeps_ciceC_cfsr @@ -12,7 +12,7 @@ export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ export_datm_cdeps export DATM_SRC=CFSR -export FILENAME_BASE=cfsr. +export FILEBASE_DATM=cfsr export IATM=1760 export JATM=880 export RESTART_N=12 diff --git a/tests/tests/datm_cdeps_control_cfsr b/tests/tests/datm_cdeps_control_cfsr index dc8ae8fd2d..e3768e5258 100644 --- a/tests/tests/datm_cdeps_control_cfsr +++ b/tests/tests/datm_cdeps_control_cfsr @@ -12,7 +12,7 @@ export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ export_datm_cdeps export DATM_SRC=CFSR -export FILENAME_BASE=cfsr. +export FILEBASE_DATM=cfsr export IATM=1760 export JATM=880 export RESTART_N=12 diff --git a/tests/tests/datm_cdeps_control_cfsr_faster b/tests/tests/datm_cdeps_control_cfsr_faster index 0852da48e4..4003f161dc 100644 --- a/tests/tests/datm_cdeps_control_cfsr_faster +++ b/tests/tests/datm_cdeps_control_cfsr_faster @@ -12,7 +12,7 @@ export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ export_datm_cdeps export DATM_SRC=CFSR -export FILENAME_BASE=cfsr. +export FILEBASE_DATM=cfsr export IATM=1760 export JATM=880 export RESTART_N=12 diff --git a/tests/tests/datm_cdeps_control_gefs b/tests/tests/datm_cdeps_control_gefs index 324c6f2f4d..8669e9ff01 100644 --- a/tests/tests/datm_cdeps_control_gefs +++ b/tests/tests/datm_cdeps_control_gefs @@ -20,9 +20,9 @@ export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM export ATMRES=${IATM}x${JATM} export DATM_SRC=GEFS_NEW -export FILENAME_BASE=gefs. -export MESH_ATM=${FILENAME_BASE//.}_mesh.nc -export stream_files="INPUT/${FILENAME_BASE}201110.nc" +export FILEBASE_DATM=gefs +export MESH_ATM=${FILEBASE_DATM}_mesh.nc +export stream_files="INPUT/${FILEBASE_DATM}.201110.nc" export STREAM_OFFSET=-21600 export RESTART_N=12 export eps_imesh=2.5e-1 diff --git a/tests/tests/datm_cdeps_debug_cfsr b/tests/tests/datm_cdeps_debug_cfsr index 618552ed96..c0de0ddc7c 100644 --- a/tests/tests/datm_cdeps_debug_cfsr +++ b/tests/tests/datm_cdeps_debug_cfsr @@ -12,7 +12,7 @@ export LIST_FILES="RESTART/20111001.060000.MOM.res.nc \ export_datm_cdeps export DATM_SRC=CFSR -export FILENAME_BASE=cfsr. +export FILEBASE_DATM=cfsr export IATM=1760 export JATM=880 export DAYS=0.25 diff --git a/tests/tests/datm_cdeps_gfs b/tests/tests/datm_cdeps_gfs index 2147c3d41c..9dcd4ed89b 100644 --- a/tests/tests/datm_cdeps_gfs +++ b/tests/tests/datm_cdeps_gfs @@ -12,7 +12,7 @@ export LIST_FILES="RESTART/20210323.060000.MOM.res.nc \ export_datm_cdeps export DATM_SRC=GFS -export FILENAME_BASE=gfs. +export FILEBASE_DATM=gfs export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -23,8 +23,8 @@ export JATM=1536 export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM export ATMRES=${IATM}x${JATM} -export MESH_ATM=${FILENAME_BASE//.}_mesh.nc -export atm_datamode=GFS +export MESH_ATM=${FILEBASE_DATM}_mesh.nc +export atm_datamode=GEFS export CICE_KTHERM=2 export CICE_TFREEZE_OPTION=mushy export RESTART_N=12 diff --git a/tests/tests/datm_cdeps_iau_gefs b/tests/tests/datm_cdeps_iau_gefs index d28c4bd35c..9ca5c65d75 100644 --- a/tests/tests/datm_cdeps_iau_gefs +++ b/tests/tests/datm_cdeps_iau_gefs @@ -22,9 +22,9 @@ export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM export ATMRES=${IATM}x${JATM} export DATM_SRC=GEFS_NEW -export FILENAME_BASE=gefs. -export MESH_ATM=${FILENAME_BASE//.}_mesh.nc -export stream_files="INPUT/${FILENAME_BASE}201110.nc" +export FILEBASE_DATM=gefs +export MESH_ATM=${FILEBASE_DATM}_mesh.nc +export stream_files="INPUT/${FILEBASE_DATM}.201110.nc" export STREAM_OFFSET=-21600 export RESTART_N=12 export eps_imesh=2.5e-1 diff --git a/tests/tests/datm_cdeps_multiple_files_cfsr b/tests/tests/datm_cdeps_multiple_files_cfsr index 86b8eb6032..a92d5cea3d 100644 --- a/tests/tests/datm_cdeps_multiple_files_cfsr +++ b/tests/tests/datm_cdeps_multiple_files_cfsr @@ -10,7 +10,7 @@ export LIST_FILES="RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc" export_datm_cdeps export DATM_SRC=CFSR -export FILENAME_BASE=cfsr. +export FILEBASE_DATM=cfsr export IATM=1760 export JATM=880 export RESTART_N=12 diff --git a/tests/tests/datm_cdeps_mx025_cfsr b/tests/tests/datm_cdeps_mx025_cfsr index b41cef9d56..02a6866d34 100644 --- a/tests/tests/datm_cdeps_mx025_cfsr +++ b/tests/tests/datm_cdeps_mx025_cfsr @@ -15,7 +15,7 @@ export LIST_FILES="RESTART/20111001.120000.MOM.res.nc \ export_datm_cdeps export DATM_SRC=CFSR -export FILENAME_BASE=cfsr. +export FILEBASE_DATM=cfsr export IATM=1760 export JATM=880 export DAYS=0.5 diff --git a/tests/tests/datm_cdeps_mx025_gefs b/tests/tests/datm_cdeps_mx025_gefs index 0d3e43875a..ee33c3cb23 100644 --- a/tests/tests/datm_cdeps_mx025_gefs +++ b/tests/tests/datm_cdeps_mx025_gefs @@ -27,9 +27,9 @@ export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM export ATMRES=${IATM}x${JATM} export DATM_SRC=GEFS_NEW -export FILENAME_BASE=gefs. -export MESH_ATM=${FILENAME_BASE//.}_mesh.nc -export stream_files="INPUT/${FILENAME_BASE}201110.nc" +export FILEBASE_DATM=gefs +export MESH_ATM=${FILEBASE_DATM}_mesh.nc +export stream_files="INPUT/${FILEBASE_DATM}.201110.nc" export STREAM_OFFSET=-21600 ATM_compute_tasks=${ATM_compute_tasks_cdeps_025} diff --git a/tests/tests/datm_cdeps_restart_cfsr b/tests/tests/datm_cdeps_restart_cfsr index eec83536de..963fb0828f 100644 --- a/tests/tests/datm_cdeps_restart_cfsr +++ b/tests/tests/datm_cdeps_restart_cfsr @@ -12,7 +12,7 @@ export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ export_datm_cdeps export DATM_SRC=CFSR -export FILENAME_BASE=cfsr. +export FILEBASE_DATM=cfsr export IATM=1760 export JATM=880 export FHMAX=24 diff --git a/tests/tests/datm_cdeps_stochy_gefs b/tests/tests/datm_cdeps_stochy_gefs index 7f2d0db842..9fe6caf89d 100644 --- a/tests/tests/datm_cdeps_stochy_gefs +++ b/tests/tests/datm_cdeps_stochy_gefs @@ -20,9 +20,9 @@ export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM export ATMRES=${IATM}x${JATM} export DATM_SRC=GEFS_NEW -export FILENAME_BASE=gefs. -export MESH_ATM=${FILENAME_BASE//.}_mesh.nc -export stream_files="INPUT/${FILENAME_BASE}201110.nc" +export FILEBASE_DATM=gefs +export MESH_ATM=${FILEBASE_DATM}_mesh.nc +export stream_files="INPUT/${FILEBASE_DATM}.201110.nc" export STREAM_OFFSET=-21600 export RESTART_N=12 export eps_imesh=2.5e-1 diff --git a/tests/tests/gnv1_nested b/tests/tests/gnv1_nested index 28047bdac4..f01ec88bdb 100644 --- a/tests/tests/gnv1_nested +++ b/tests/tests/gnv1_nested @@ -312,6 +312,11 @@ export LANDICE=.false. # ---------------------------------------- # Select input files and resources for the regression test system. +# UPP output field lists. +export POST_ITAG=post_itag_hafs_ar +export POSTXCONFIG=postxconfig-NT-hafs_ar_nosat.txt +export POSTXCONFIG_FH00=$POSTXCONFIG + # Select model_configure template: export MODEL_CONFIGURE=model_configure_gnv1.IN diff --git a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 index 60ce05b605..a0bd1aba05 100644 --- a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 +++ b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 @@ -12,7 +12,8 @@ export LIST_FILES="atmf003.nc \ sfcf003.nc \ atm.nest02.f003.nc \ sfc.nest02.f003.nc \ - ocn_2020_08_25_15.nc \ + RESTART/20200825.150000.MOM.res.nc \ + RESTART/20200825.150000.MOM.res_1.nc \ 20200825.150000.out_grd.ww3 \ 20200825.150000.out_pnt.ww3" diff --git a/tests/tests/regional_ifi_2threads b/tests/tests/regional_ifi_2threads deleted file mode 100644 index 8e1db314cd..0000000000 --- a/tests/tests/regional_ifi_2threads +++ /dev/null @@ -1,45 +0,0 @@ -############################################################################### -# -# FV3 regional threading test -# -############################################################################### - -export TEST_DESCR="Compare FV3 regional threading results with previous trunk version" - -export CNTL_DIR=regional_ifi_control - -export LIST_FILES="dynf000.nc \ - dynf006.nc \ - phyf000.nc \ - phyf006.nc \ - PRSLEV.GrbF00 \ - PRSLEV.GrbF06 \ - NATLEV.GrbF00 \ - NATLEV.GrbF06" - -export_fv3_v16 - -export FV3_RUN=regional_run.IN - -export OZ_PHYS_OLD=.false. -export OZ_PHYS_NEW=.true. -export H2O_PHYS=.true. -export HYBEDMF=.false. -export WRITE_DOPOST=.true. -export POSTAPP='lam' - -export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_lam3km -export INPUT_NML=regional.nml.IN -export MODEL_CONFIGURE=model_configure_regional.IN -export DIAG_TABLE=diag_table_lam -export FIELD_TABLE=field_table_regional - -export WLCLK=15 -export FHMAX=6 -export INPES=10 -export JNPES=11 -export atm_omp_num_threads=2 -export OUTPUT_FH="3 -1" -WRITE_GROUP=1 -WRTTASK_PER_GROUP=10 -NTILES=1 diff --git a/tests/tests/regional_ifi_control b/tests/tests/regional_ifi_control deleted file mode 100644 index 089d372a78..0000000000 --- a/tests/tests/regional_ifi_control +++ /dev/null @@ -1,45 +0,0 @@ -############################################################################### -# -# FV3 regional control with IFI (hi-res 3km, small domain) test -# -############################################################################### - -export TEST_DESCR="Compare FV3 regional control results with IFI against previous trunk version" - -export CNTL_DIR=regional_ifi_control - -export LIST_FILES="dynf000.nc \ - dynf006.nc \ - phyf000.nc \ - phyf006.nc \ - PRSLEV.GrbF00 \ - PRSLEV.GrbF06 \ - NATLEV.GrbF00 \ - NATLEV.GrbF06" - -export_fv3_v16 - -export FV3_RUN=regional_run.IN - -export OZ_PHYS_OLD=.false. -export OZ_PHYS_NEW=.true. -export H2O_PHYS=.true. -export HYBEDMF=.false. -export RESTART_INTERVAL="3 -1" -export WRITE_DOPOST=.true. -export POSTAPP='lam' - -export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_lam3km -export INPUT_NML=regional.nml.IN -export MODEL_CONFIGURE=model_configure_regional.IN -export DIAG_TABLE=diag_table_lam -export FIELD_TABLE=field_table_regional - -export WLCLK=15 -export FHMAX=6 -export INPES=10 -export JNPES=11 -export OUTPUT_FH="3 -1" -WRITE_GROUP=1 -WRTTASK_PER_GROUP=10 -NTILES=1 diff --git a/tests/tests/regional_ifi_decomp b/tests/tests/regional_ifi_decomp deleted file mode 100644 index 815587548a..0000000000 --- a/tests/tests/regional_ifi_decomp +++ /dev/null @@ -1,45 +0,0 @@ -############################################################################### -# -# FV3 regional + IFI with different MPI decomposition (hi-res 3km, small domain) test -# -############################################################################### - -export TEST_DESCR="Compare FV3 regional with IFI; different decomposition results with previous trunk version" - -export CNTL_DIR=regional_ifi_control - -export LIST_FILES="dynf000.nc \ - dynf006.nc \ - phyf000.nc \ - phyf006.nc \ - PRSLEV.GrbF00 \ - PRSLEV.GrbF06 \ - NATLEV.GrbF00 \ - NATLEV.GrbF06" - -export_fv3_v16 - -export FV3_RUN=regional_run.IN - -export OZ_PHYS_OLD=.false. -export OZ_PHYS_NEW=.true. -export H2O_PHYS=.true. -export HYBEDMF=.false. -export RESTART_INTERVAL="0" -export WRITE_DOPOST=.true. -export POSTAPP='lam' - -export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_lam3km -export INPUT_NML=regional.nml.IN -export MODEL_CONFIGURE=model_configure_regional.IN -export DIAG_TABLE=diag_table_lam -export FIELD_TABLE=field_table_regional - -export WLCLK=15 -export FHMAX=6 -export INPES=11 -export JNPES=10 -export OUTPUT_FH="3 -1" -WRITE_GROUP=1 -WRTTASK_PER_GROUP=10 -NTILES=1